merge disable-onedrive.reg into remove-onedrive.ps1

pull/55/head
Alex Hirsch 9 years ago
parent be67ac397c
commit 10af199a3b

Binary file not shown.

@ -1,5 +1,5 @@
# Description:
# This script removes OneDrive files from your system.
# This script will remove and disable OneDrive integration.
echo "Kill OneDrive process"
kill "OneDrive.exe"
@ -16,4 +16,16 @@ echo "Removing OneDrive leftovers"
rm -r -Force "$env:localappdata\Microsoft\OneDrive"
rm -r -Force "$env:programdata\Microsoft OneDrive"
rm -r -Force "$env:userprofile\OneDrive"
rm -r -Force "C:\OneDriveTemp"
rm -r -Force "C:\OneDriveTemp"
echo "Disable OneDrive via Group Policies"
$reg = @"
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Policies\Microsoft\Windows\OneDrive]
"DisableFileSyncNGSC"=dword:00000001
"@
$regfile = "$env:windir\Temp\registry.reg"
$reg | Out-File $regfile
regedit /s $regfile
rm $regfile
Loading…
Cancel
Save