-

Windows 10: Onedrive aus dem Image entfernen

Damit Onedrive gar nicht erst mit installiert wird, kann man mittels DISM, NTFSSecurity das Programm und den Autostart entfernen.

  1. Powershell als Administrator starten
  2. Das Windows Image per DISM mounten
    Mount-WindowsImage -path D:\dism\mount1\ -ImagePath D:\dism\images\w10e\sources\install.wim -Index 1
  3. Die Setup Datei übernehmen
    takeown /F D:\dism\mount1\Windows\SysWOW64\OneDriveSetup.exe /A
  4. Dem Builtin-Administrator den Vollzugriff gewähren
    1. Deutsch:
      Add-NTFSAccess -Path "$D:\dism\mount1\Windows\SysWOW64\onedrivesetup.exe" -Account "Vordefiniert\Administratoren" -AccessRights FullControl
    2. Englisch:
      Add-NTFSAccess -Path "D:\dism\mount1\Windows\SysWOW64\onedrivesetup.exe" -Account "BUILTIN\Administrators" -AccessRights FullControl
  5. Setupdatei entfernen
    Remove-Item d:\dism\mount1\Windows\SysWOW64\onedrivesetup.exe
  6. Registry laden
    reg load HKEY_LOCAL_MACHINE\WIM D:\dism\mount1\Users\Default\ntuser.dat
  7. Registry-Eintrag zum starten des Setups entfernen
    reg delete "HKEY_LOCAL_MACHINE\WIM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v OneDriveSetup /f
  8. Cloud Einträge löschen
    1. reg add HKEY_LOCAL_MACHINE\WIM\SOFTWARE\Policies\Microsoft\Windows\CloudContent

    2. reg add HKEY_LOCAL_MACHINE\WIM\SOFTWARE\Policies\Microsoft\Windows\CloudContent /v DisableWindowsConsumerFeatures /t REG_DWORD /d 1 /f

  9. Registry schliessen
    reg unload HKEY_LOCAL_MACHINE\WIM

  10. Image unmounten
    Dismount-WindowsImage -Path D:\dism\mount1\ -save

<< Zur vorigen Seite