Hello
Thank you for posting in Microsoft Community forum.
While Intune is often recommended for managing these settings in Windows 11, there are alternative methods you can try for Server 2025.
Alternative Methods to Configure Pinned Apps on Server 2025
1.Using Group Policy with JSON:
Although the traditional XML method is no longer applicable, you can still use Group Policy to deploy the JSON configuration file. Ensure that the JSON file is correctly formatted and referenced in the Group Policy.
Steps:
- Customize the Start layout on a reference machine.
- Export the Start layout to a JSON file using Export-StartLayout -Path "C:\Export\StartMenuLayout.json".
- Place the JSON file in a shared location accessible by all target machines.
- In Group Policy Management, navigate to Computer Configuration -> Administrative Templates -> Start Menu and Taskbar -> Start Layout.
- Enable the policy and specify the path to the JSON file.
2.Using PowerShell Scripts:
You can create a PowerShell script to apply the Start layout configuration during user logon.
Example Script:
$jsonPath = "C:\Path\To\StartMenuLayout.json"
$jsonContent = Get-Content -Path $jsonPath -Raw
$startLayout = ConvertFrom-Json -InputObject $jsonContent
Apply the Start layout configuration
(Implementation depends on specific requirements and environment)
3.Provisioning Packages:
Create a provisioning package using the Windows Configuration Designer tool.
Steps:
- Open Windows Configuration Designer and create a new project.
- Add the Start layout JSON file to the project.
- Export the project as a provisioning package.
- Apply the provisioning package to the target machines.
4.Local Group Policy Editor:
If managing a small number of servers, you can manually configure the Start layout using the Local Group Policy Editor on each server.
Steps:
- Open the Local Group Policy Editor (gpedit.msc).
- Navigate to User Configuration -> Administrative Templates -> Start Menu and Taskbar -> Start Layout.
- Enable the policy and specify the path to the JSON file.
These methods should help you configure a common set of pinned apps for all users on your Server 2025 terminal servers without relying on Intune.
Best Regards,
Wesley Li