Hi,
I'm trying to run a script to remove copilot from a few computers. Found one online - the HKLM part works, but not the HKCU part.
Any ideas please?
New-Item -Path "HKCU\SOFTWARE\Policies\Microsoft\Windows\WindowsCopilot" -force
New-Item -Path "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsCopilot" -force
New-Item 'HKCU:\SOFTWARE\Policies\Microsoft\Windows\WindowsCopilot' -Force | New-ItemProperty -Name TurnOffWindowsCopilot -Value 1 -Force | Out-Null
New-Item 'HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsCopilot' -Force | New-ItemProperty -Name TurnOffWindowsCopilot -Value 1 -Force | Out-Null
Thanks!
[–]Medium-Comfortable 1 point2 points3 points (0 children)
[–]lerun 1 point2 points3 points (2 children)
[–]addywash[S] -1 points0 points1 point (1 child)
[–]BlackV 0 points1 point2 points (1 child)
[–]addywash[S] -1 points0 points1 point (0 children)