From 6838873ddbd062a7665e8cdee78cc8594a83dc9e Mon Sep 17 00:00:00 2001 From: Jamie Garroch Date: Thu, 24 Oct 2024 11:40:49 -0500 Subject: [PATCH] Update connect-organizational-asset-libraries-to-copilot.md Added the all-essential $ character to the true|false parameter values after my IT admin spent ages wondering why the code snippets didn't work! --- .../connect-organizational-asset-libraries-to-copilot.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SharePoint/SharePointOnline/connect-organizational-asset-libraries-to-copilot.md b/SharePoint/SharePointOnline/connect-organizational-asset-libraries-to-copilot.md index 10b92b7e82..449fff62a2 100644 --- a/SharePoint/SharePointOnline/connect-organizational-asset-libraries-to-copilot.md +++ b/SharePoint/SharePointOnline/connect-organizational-asset-libraries-to-copilot.md @@ -46,7 +46,7 @@ Connect to SharePoint as a [SharePoint Administrator or higher](./sharepoint-adm Run the following command to designate a document library as an organization image library and enable Copilot search functionality. ```PowerShell -Add-SPOOrgAssetsLibrary -LibraryUrl [-ThumbnailUrl ] [-OrgAssetType ImageDocumentLibrary] [-CdnType ] [-CopilotSearchable ] +Add-SPOOrgAssetsLibrary -LibraryUrl [-ThumbnailUrl ] [-OrgAssetType ImageDocumentLibrary] [-CdnType ] [-CopilotSearchable <$True or $False>] ``` - *LibraryURL* is the absolute URL of the library to be designated as a central location for organizational assets. @@ -60,7 +60,7 @@ If you don't specify the *CdnType*, it enables a private CDN by default. Run the following command to existing organization image library and enable Copilot search functionality: ```PowerShell -Set-SPOOrgAssetsLibrary -LibraryUrl [-ThumbnailUrl ] [-OrgAssetType ImageDocumentLibrary] [-CopilotSearchable ] +Set-SPOOrgAssetsLibrary -LibraryUrl [-ThumbnailUrl ] [-OrgAssetType ImageDocumentLibrary] [-CopilotSearchable <$True or $False>] ``` - *LibraryURL* is the absolute URL of the library to be designated as a central location for organizational assets.