Windows 10/Deployment Batch: Difference between revisions
No edit summary |
No edit summary |
||
Line 15: | Line 15: | ||
#Restart Explorer to change it immediately | #Restart Explorer to change it immediately | ||
Stop-Process -name explorer | Stop-Process -name explorer | ||
</pre> | |||
* Uninstall OneDrive | |||
<pre> | |||
taskkill /f /im OneDrive.exe | |||
%SystemRoot%\System32\OneDriveSetup.exe /uninstall | |||
%SystemRoot%\SysWOW64\OneDriveSetup.exe /uninstall | |||
</pre> | </pre> |
Revision as of 22:05, 16 November 2018
- disable/enable powershell restrictions
set-executionpolicy unrestricted set-executionpolicy restricted
- Disable Cortana
$path = "HKLM:\SOFTWARE\Policies\Microsoft\Windows\Windows Search" IF(!(Test-Path -Path $path)) { New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows" -Name "Windows Search" } Set-ItemProperty -Path $path -Name "AllowCortana" -Value 0 #Restart Explorer to change it immediately Stop-Process -name explorer
- Uninstall OneDrive
taskkill /f /im OneDrive.exe %SystemRoot%\System32\OneDriveSetup.exe /uninstall %SystemRoot%\SysWOW64\OneDriveSetup.exe /uninstall