Skip to content

Commit f28da9e

Browse files
Merge pull request #28899 from MicrosoftDocs/main
[AutoPublish] main to live - 07/09 10:32 PDT | 07/09 23:02 IST
2 parents 480cbb0 + 4d42c9f commit f28da9e

2 files changed

Lines changed: 19 additions & 4 deletions

File tree

copilot/employee-self-service/servicenow.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,10 +183,25 @@ This task is required to define the custom script as a resource for the REST API
183183
|---------|---------|
184184
|Name |GetAllUserCriteria |
185185
|Relative path |/user_criteria |
186-
|Script |Copy and paste the following script AS IS:<br> (function execute (/*RESTAPIRequest*/ request,<br>/*RESTAPIResponse*/ response)<br>{<br>var queryParams = request.queryParams;<br>var user = new String(queryParams.user);<br>return (new<br>sn_uc.UserCriteriaLoader()).getAllUserCriteria(user);<br>}<br>)(request, response); |
186+
|Script |Copy and paste the script (noted after this table) exactly as is. |
187187
|Requires authentication |Checked |
188188
|Requires ACL authorization |Checked<br>Ensure that the ACL created in Task 2 is set correctly and remove any other default values. |
189189

190+
#### Script to copy
191+
192+
```javascript
193+
(function execute (/*RESTAPIRequest*/ request,
194+
/*RESTAPIResponse*/ response )
195+
{
196+
var queryParams = request.queryParams;
197+
var user = new String(queryParams.user);
198+
return (new
199+
sn_uc.UserCriteriaLoader()).getAllUserCriteria(user);
200+
}
201+
) (request, response);
202+
```
203+
204+
190205
4. Select **Submit** to save changes.
191206

192207
This wraps up all the configuration required on the ServiceNow side, now the next set of tasks are on Microsoft 365 side.

copilot/microsoft-365-copilot-file-upload-control.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,17 @@ appliesto:
2525

2626
File upload is enabled by default in both Microsoft 365 Copilot and Microsoft 365 Copilot Chat. It lets users upload files like Word docs, Excel files, and PDFs to prompt Copilot and Copilot Chat to reason over them as part of its response. File upload limits apply in Copilot Chat.
2727

28-
To manage the file upload feature so it aligns with organizational policies, user preferences, and security considerations, an admin control is available. This control allows admins to determine whether users can upload local files or attach cloud files when using Copilot or Copilot Chat.
28+
To manage the file upload feature so it aligns with organizational policies, user preferences, and security considerations, an admin control is available. This control allows admins to determine whether users can upload local files or attach cloud files when using Copilot or Copilot Chat.
2929

3030
> [!NOTE]
31-
> The file upload control will be available in July 2025.
31+
> The file upload control will be available in mid-July 2025. Once implemented, it may take up to 24 hours for the changes to be reflected for end users.
3232
3333
## IT admin file upload control
3434

3535
The file upload control is available only in [Cloud Policy service for Microsoft 365](/microsoft-365-apps/admin-center/overview-cloud-policy). If you enable this policy setting, you can choose one of the following options for file uploads in Copilot and Copilot Chat:
3636
- **Allow file uploads in both Microsoft 365 Copilot and Microsoft 365 Copilot Chat**—allows users to upload files in both experiences. This is the default setting.
3737
- **Prevent file uploads in both Microsoft 365 Copilot and Microsoft 365 Copilot Chat**—disables file upload in both experiences.
38-
- **Disable file uploads in Microsoft 365 Copilot Web mode and Microsoft 365 Copilot Chat while allowing them in Microsoft 365 Copilot Work mode**—enables file upload in Microsoft 365 Copilot Chat *Work mode only* and disables file upload in Microsoft 365 Copilot Web mode and Microsoft 365 Copilot Chat.
38+
- **Disable file uploads in Microsoft 365 Copilot Web mode and Microsoft 365 Copilot Chat while allowing file uploads in Microsoft 365 Copilot Work mode**—enables file upload in Microsoft 365 Copilot Chat *Work mode only* and disables file upload in Microsoft 365 Copilot Web mode and Microsoft 365 Copilot Chat.
3939

4040
:::image type="content" source="media/copilot-file-upload-800.png" alt-text="Screenshot that shows Microsoft 365 Copilot file upload control." lightbox="media/copilot-file-upload-raw.png":::
4141

0 commit comments

Comments
 (0)