Hello MagicTurtle1
Welcome to the Microsoft community, my name is Recep I'll be happy to help you today.
- Instead of targeting users, you might try creating a device configuration profile. In the "Assignments" section, you can target specific devices or groups of devices.
- Create a PowerShell script to apply the specific settings you need. You can then deploy this script using Intune.
Example PowerShell script:
$registryPath = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection"
$name = "AllowTelemetry"
$value = 0
if (-not (Test-Path $registryPath)) {
New-Item -Path $registryPath -Force
}
Set-ItemProperty -Path $registryPath -Name $name -Value $value
- This script sets the "AllowTelemetry" registry key to 0, which is an example of a setting that CoPilot might be using.
- Deploy the PowerShell script using an Intune PowerShell script deployment.
- Consider using Intune Administrative Templates. This feature allows you to configure Group Policy settings using Intune.
- Go to "Endpoint security" in the Microsoft Endpoint Manager admin center.
- Select "Configuration profiles."
- Choose "Create profile" and select "Administrative Templates."
- Configure the necessary settings and deploy the profile.
- Check if there are any custom Configuration Service Providers (CSPs) available for configuring local user settings.
Example:
OMA-URI: ./Device/Vendor/MSFT/Policy/Config/WindowsAI/TurnOffWindowsCopilot
Data Type: Integer
Value: 1
If I have answered your question, please mark your post as Solved If you like my response, please give it a Like Appreciate your Kudos! Proud to contribute! 🙂 |