From feabda25d16eaeec87290474aa87eae75c84f95b Mon Sep 17 00:00:00 2001 From: Richard Newton Date: Sat, 18 Aug 2018 23:34:08 -0700 Subject: [PATCH] Created individual file called Uninstall OneDrive This is the code to uninstall OneDrive from the Function UninstallOneDrive. --- Individual Scripts/Uninstall OneDrive | 35 +++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 Individual Scripts/Uninstall OneDrive diff --git a/Individual Scripts/Uninstall OneDrive b/Individual Scripts/Uninstall OneDrive new file mode 100644 index 0000000..e9e20c6 --- /dev/null +++ b/Individual Scripts/Uninstall OneDrive @@ -0,0 +1,35 @@ +Write-Output "Uninstalling OneDrive. Please wait." + + New-PSDrive HKCR -PSProvider Registry -Root HKEY_CLASSES_ROOT + $onedrive = "$env:SYSTEMROOT\SysWOW64\OneDriveSetup.exe" + $ExplorerReg1 = "HKCR:\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" + $ExplorerReg2 = "HKCR:\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" + Stop-Process -Name "OneDrive*" + Start-Sleep 2 + If (!(Test-Path $onedrive)) { + $onedrive = "$env:SYSTEMROOT\System32\OneDriveSetup.exe" + } + Start-Process $onedrive "/uninstall" -NoNewWindow -Wait + Start-Sleep 2 + Write-Output "Stopping explorer" + Start-Sleep 1 + .\taskkill.exe /F /IM explorer.exe + Start-Sleep 3 + Write-Output "Removing leftover files" + Remove-Item "$env:USERPROFILE\OneDrive" -Force -Recurse + Remove-Item "$env:LOCALAPPDATA\Microsoft\OneDrive" -Force -Recurse + Remove-Item "$env:PROGRAMDATA\Microsoft OneDrive" -Force -Recurse + If (Test-Path "$env:SYSTEMDRIVE\OneDriveTemp") { + Remove-Item "$env:SYSTEMDRIVE\OneDriveTemp" -Force -Recurse + } + Write-Output "Removing OneDrive from windows explorer" + If (!(Test-Path $ExplorerReg1)) { + New-Item $ExplorerReg1 + } + Set-ItemProperty $ExplorerReg1 System.IsPinnedToNameSpaceTree -Value 0 + If (!(Test-Path $ExplorerReg2)) { + New-Item $ExplorerReg2 + } + Set-ItemProperty $ExplorerReg2 System.IsPinnedToNameSpaceTree -Value 0 + Write-Output "Restarting Explorer that was shut down before." + Start explorer.exe -NoNewWindow