У нас вы можете посмотреть бесплатно Power Automate and Microsoft Forms: Send uploaded files as email attachments или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
Update: I recently published a playlist that covers this topic (and related ones) more comprehensively. See • Microsoft Forms, Uploaded Files and Power ... In this video, I'll modify a copy of another flow (see • MS Forms File Upload to SharePoint ) to send files submitted in a Forms file upload question as email attachments (rather than saving them to SharePoint). Important notes: If the File Upload question in your form is not required, the "Parse JSON" action will fail. See • MS Forms - Handling non-required file uplo... for information on how to adjust the flow if the file upload question on your form is not required. For the Schema in the Parse JSON action, you'll use this: { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "link": { "type": "string" }, "id": { "type": "string" }, "type": {}, "size": { "type": "integer" }, "referenceId": { "type": "string" }, "driveId": { "type": "string" }, "status": { "type": "integer" }, "uploadSessionUrl": {} }, "required": [ "name", "link", "id", "type", "size", "referenceId", "driveId", "status", "uploadSessionUrl" ] } } And when building the attachments variable, you'll use this: { "Name": file-name-from-get-file-metadata-action, "ContentBytes": file-content-from-get-file-content-action }