pixokid Posted October 8, 2017 Share Posted October 8, 2017 Windows 10 da ONEDRİVE yi tamamen kaldırmak istiyorum yardımcı olursanız sevinirim Quote Link to comment Share on other sites More sharing options...
Editor MOTUN Posted October 8, 2017 Editor Share Posted October 8, 2017 Please register to see this content. 1 Quote Link to comment Share on other sites More sharing options...
forjest Posted October 8, 2017 Share Posted October 8, 2017 Windows10 kullanmıyorum ama iş görecektir. Please register to see this content. Spoiler 1 Quote Link to comment Share on other sites More sharing options...
pixokid Posted October 8, 2017 Author Share Posted October 8, 2017 İlgi ve alakanıza sonsuz teşekkürler 1 Quote Link to comment Share on other sites More sharing options...
shalyangose Posted October 8, 2017 Share Posted October 8, 2017 Import-Module -DisableNameChecking $PSScriptRoot\..\lib\force-mkdir.psm1 Import-Module -DisableNameChecking $PSScriptRoot\..\lib\take-own.psm1 echo "73 OneDrive process and explorer" taskkill.exe /F /IM "OneDrive.exe" taskkill.exe /F /IM "explorer.exe" echo "Remove OneDrive" if (Test-Path "$env:systemroot\System32\OneDriveSetup.exe") { & "$env:systemroot\System32\OneDriveSetup.exe" /uninstall } if (Test-Path "$env:systemroot\SysWOW64\OneDriveSetup.exe") { & "$env:systemroot\SysWOW64\OneDriveSetup.exe" /uninstall } echo "Disable OneDrive via Group Policies" force-mkdir "HKLM:\SOFTWARE\Wow6432Node\Policies\Microsoft\Windows\OneDrive" sp "HKLM:\SOFTWARE\Wow6432Node\Policies\Microsoft\Windows\OneDrive" "DisableFileSyncNGSC" 1 echo "Removing OneDrive leftovers trash" rm -Recurse -Force -ErrorAction SilentlyContinue "$env:localappdata\Microsoft\OneDrive" rm -Recurse -Force -ErrorAction SilentlyContinue "$env:programdata\Microsoft OneDrive" rm -Recurse -Force -ErrorAction SilentlyContinue "C:\OneDriveTemp" echo "Remove Onedrive from explorer sidebar" New-PSDrive -PSProvider "Registry" -Root "HKEY_CLASSES_ROOT" -Name "HKCR" mkdir -Force "HKCR:\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" sp "HKCR:\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" "System.IsPinnedToNameSpaceTree" 0 mkdir -Force "HKCR:\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" sp "HKCR:\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" "System.IsPinnedToNameSpaceTree" 0 Remove-PSDrive "HKCR" echo "Removing run option for new users" reg load "hku\Default" "C:\Users\Default\NTUSER.DAT" reg delete "HKEY_USERS\Default\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v "OneDriveSetup" /f reg unload "hku\Default" echo "Removing startmenu junk entry" rm -Force -ErrorAction SilentlyContinue "$env:userprofile\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\OneDrive.lnk" echo "Restarting explorer..." start "explorer.exe" echo "Wait for EX reload.." sleep 15 echo "Removing additional OneDrive leftovers" foreach ($item in (ls "$env:WinDir\WinSxS\*onedrive*")) { Takeown-Folder $item.FullName rm -Recurse -Force $item.FullName } Powershell ile kaldırabilirsin. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.