Damit Onedrive gar nicht erst mit installiert wird, kann man mittels DISM, NTFSSecurity das Programm und den Autostart entfernen.
- Powershell als Administrator starten
- Das Windows Image per DISM mounten
Mount-WindowsImage -path D:\dism\mount1\ -ImagePath D:\dism\images\w10e\sources\install.wim -Index 1 - Die Setup Datei übernehmen
takeown /F D:\dism\mount1\Windows\SysWOW64\OneDriveSetup.exe /A - Dem Builtin-Administrator den Vollzugriff gewähren
- Deutsch:
Add-NTFSAccess -Path "$D:\dism\mount1\Windows\SysWOW64\onedrivesetup.exe" -Account "Vordefiniert\Administratoren" -AccessRights FullControl - Englisch:
Add-NTFSAccess -Path "D:\dism\mount1\Windows\SysWOW64\onedrivesetup.exe" -Account "BUILTIN\Administrators" -AccessRights FullControl
- Deutsch:
- Setupdatei entfernen
Remove-Item d:\dism\mount1\Windows\SysWOW64\onedrivesetup.exe - Registry laden
reg load HKEY_LOCAL_MACHINE\WIM D:\dism\mount1\Users\Default\ntuser.dat - Registry-Eintrag zum starten des Setups entfernen
reg delete "HKEY_LOCAL_MACHINE\WIM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v OneDriveSetup /f - Cloud Einträge löschen
-
reg add HKEY_LOCAL_MACHINE\WIM\SOFTWARE\Policies\Microsoft\Windows\CloudContent
-
reg add HKEY_LOCAL_MACHINE\WIM\SOFTWARE\Policies\Microsoft\Windows\CloudContent /v DisableWindowsConsumerFeatures /t REG_DWORD /d 1 /f
-
-
Registry schliessen
reg unload HKEY_LOCAL_MACHINE\WIM -
Image unmounten
Dismount-WindowsImage -Path D:\dism\mount1\ -save