IT/review

윈도우10 자동 설치 끄기

SHLEE™ 2018. 10. 31. 09:25

1. 시작 메뉴 제안 끄기





2. 스토어 자동 업데이트 끄기




3. 레지스트리 추가


win10_autoinstall_disable.zip


[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\CloudContent]

"DisableWindowsConsumerFeatures"=dword:00000001

"DisableThirdPartySuggestions"=dword:00000001



4. 원드라이브 삭제


onedrive-uninstaller-master.zip


@echo off

cls


set x86="%SYSTEMROOT%\System32\OneDriveSetup.exe"

set x64="%SYSTEMROOT%\SysWOW64\OneDriveSetup.exe"


echo Closing the OneDrive process.

echo.

taskkill /f /im OneDrive.exe > NUL 2>&1

ping 127.0.0.1 -n 5 > NUL 2>&1


echo Uninstalling OneDrive...

echo.

if exist %x64% (

%x64% /uninstall

) else (

%x86% /uninstall

)

ping 127.0.0.1 -n 5 > NUL 2>&1


echo Removing OneDrive leftovers...

echo.

rd "%USERPROFILE%\OneDrive" /Q /S > NUL 2>&1

rd "C:\OneDriveTemp" /Q /S > NUL 2>&1

rd "%LOCALAPPDATA%\Microsoft\OneDrive" /Q /S > NUL 2>&1

rd "%PROGRAMDATA%\Microsoft OneDrive" /Q /S > NUL 2>&1 


echo Removing OneDrive from the Windows Explorer Side Panel...

echo.

REG DELETE "HKEY_CLASSES_ROOT\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /f > NUL 2>&1

REG DELETE "HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /f > NUL 2>&1


pause