Windows 10 Default Profile
Aus QBWiki
Version vom 20. März 2019, 13:09 Uhr von Alka (Diskussion | Beiträge)
- (Start Menü Modifizieren) Einloggen, in irgend einen Account, den man als Default sozusagen machen möchte.
- Startmenü so einrichten wie man es haben möchte, Programme deinstallieren usw / oder aus Tiles entfernen...
- Wenn man soweit ist, sein Startmenü Profil exportieren: (Powershell)
Export-StartLayout –path C:\LayoutModification.xml
- Dann das Profile beim default user Importieren,
- Es gibt 2 Möglichkeiten, entweder mit Powershell (1. Kommando) oder einfach reinkopieren (2. Kommando):
1 Import-StartLayout -LayoutPath LayoutModification.xml -MountPath $env:SystemDrive\ 2 copy /y LayoutModification.xml “C:\Users\Default\AppData\Local\Microsoft\Windows\Shell”
- (Diverse Einstellungen) hier ein Paar Kommandos, nach wünschen anpassen, beschreibung über dem Command:
reg load HKLM\DEFAULT c:\users\default\ntuser.dat # Advertising ID reg add "HKLM\DEFAULT\Software\Microsoft\Windows\CurrentVersion\AdvertisingInfo" /v Enabled /t REG_DWORD /d 0 /f #Delivery optimization, disabled reg add "HKLM\DEFAULT\Software\Microsoft\Windows\CurrentVersion\DeliveryOptimization" /v SystemSettingsDownloadMode /t REG_DWORD /d 3 /f # Show titles in the taskbar reg add "HKLM\DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v TaskbarGlomLevel /t REG_DWORD /d 1 /f # Hide system tray icons reg add "HKLM\DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer" /v EnableAutoTray /t REG_DWORD /d 1 /f # Show known file extensions reg add "HKLM\DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v HideFileExt /t REG_DWORD /d 0 /f # Show hidden files reg add "HKLM\DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v Hidden /t REG_DWORD /d 1 /f # Change default explorer view to my computer reg add "HKLM\DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v LaunchTo /t REG_DWORD /d 1 /f # Disable most used apps from appearing in the start menu reg add "HKLM\DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v Start_TrackProgs /t REG_DWORD /d 0 /f # Remove search bar and only show icon reg add "HKLM\DEFAULT\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /v SearchboxTaskbarMode /t REG_DWORD /d 1 /f # Show Taskbar on one screen reg add "HKLM\DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v MMTaskbarEnabled /t REG_DWORD /d 0 /f # Disable Security and Maintenance Notifications reg add "HKLM\DEFAULT\SOFTWARE\Microsoft\Windows\CurrentVersion\Notifications\Settings\Windows.SystemToast.SecurityAndMaintenance" /v Enabled /t REG_DWORD /d 0 /f # Hide Windows Ink Workspace Button reg add "HKLM\DEFAULT\SOFTWARE\Microsoft\Windows\CurrentVersion\PenWorkspace" /v PenWorkspaceButtonDesiredVisibility /t REG_DWORD /d 0 /f # Disable Game DVR reg add "HKLM\DEFAULT\System\GameConfigStore" /v GameDVR_Enabled /t REG_DWORD /d 0 /f reg add "HKLM\DEFAULT\SOFTWARE\Microsoft\Windows\CurrentVersion\GameDVR" /v AppCaptureEnabled /t REG_DWORD /d 0 /f # Show ribbon in File Explorer reg add "HKLM\DEFAULT\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Ribbon" /v MinimizedStateTabletModeOff /t REG_DWORD /d 0 /f # Hide Taskview button on Taskbar reg add "HKLM\DEFAULT\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v ShowTaskViewButton /t REG_DWORD /d 0 /f # Hide People button from Taskbar reg add "HKLM\DEFAULT\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\People" /v PeopleBand /t REG_DWORD /d 0 /f # Hide Edge button in IE reg add "HKLM\DEFAULT\SOFTWARE\Microsoft\Internet Explorer\Main" /v HideNewEdgeButton /t REG_DWORD /d 1 /f # Remove OneDrive Setup from the RUN key reg delete "HKLM\DEFAULT\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v OneDriveSetup /F reg unload HKLM\DEFAULT