Copilot Prompt Gallery is getting a refresh

Microsoft is giving the Copilot Prompt Gallery a refresh, and releasing it as a seperate app users can pin to their app-bar. The Copilot Prompt Gallery app promises to enhance user experience and productivity. This refresh will introduce a new home page and an improved prompt browsing experience, making it easier for users to navigate and utilize the app effectively. Key Features and Enhancements New Home Page: The redesigned home page will serve as a central hub for users, providing quick access to the most relevant prompts and features. This intuitive layout aims to streamline navigation and improve overall user engagement. Enhanced Prompt Browsing: The updated browsing experience will allow users to find and interact with prompts more efficiently. With better categorization and search functionality, users can quickly locate the prompts they need to boost their productivity and collaboration. Organizational Prompts: One of the most exciting additions is the ability to create, publ...

How to locate users without the EXT in line uri and add it to them

Sometimes added users do not get their EXT set in their LineURI as they should, and it can be a frustrating to locate these users and to edit the lineURI to the proper format.

Fortunately, we have powershell for those kind of jobs. The following example will locate any csuser with a lineURI but without the extension set. Then add the extension to the lineURI and save the configuration.
$extSet = Get-CsUser -filter {lineuri -notlike "*ext*" -and lineuri -ne $null}
foreach ($user in $extSet){
$myURI = $user.lineuri
$myURI = $myURI + ";ext=" + $myURI.substring($myURI.length - "4") 
set-csUser -Identity $user.displayname -LineUri $myURI -verbose}

The example above will add the extension of 4. Edit this as fit for your environment.
I will add this example to the PsCommands sections as well