Windows 10 Default Profile

Aus QBWiki
Zur Navigation springenZur Suche springen


  1. (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
  1. (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

# Remove Default Bloatware
reg add "HKLM\DEFAULT\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "ContentDeliveryAllowed" /t REG_DWORD /d "0" /f
reg add "HKLM\DEFAULT\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "OemPreInstalledAppsEnabled" /t REG_DWORD /d "0" /f
reg add "HKLM\DEFAULT\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "PreInstalledAppsEnabled" /t REG_DWORD /d "0" /f
reg add "HKLM\DEFAULT\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "PreInstalledAppsEverEnabled" /t REG_DWORD /d "0" /f
reg add "HKLM\DEFAULT\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SilentInstalledAppsEnabled" /t REG_DWORD /d "0" /f
reg add "HKLM\DEFAULT\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContentEnabled" /t REG_DWORD /d "0" /f
reg delete "HKLM\DEFAULT\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager\SuggestedApps" /f

reg unload HKLM\DEFAULT
  1. (Windows Bloatware entfernen für Default Profile) Einfach in die Powershell (Packete kann mann sich erahnen):
Get-appxprovisionedpackage online | where-object {$_.packagename like "*CandyCrushSaga*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*3DBuilder*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*Appconnector*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*BingFinance*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*BingNews*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*BingSports*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*BingTranslator*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*BingWeather*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*BingFoodAndDrink*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*BingTravel*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*YourPhone*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*ScreenSketch*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*king.com*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*BingHealthAndFitness*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*WindowsReadingList*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*Microsoft3DViewer*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*MicrosoftOfficeHub*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*MicrosoftSolitaireCollection*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*MicrosoftPowerBIForWindows*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*MinecraftUWP*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*MicrosoftStickyNotes*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*NetworkSpeedTest*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*Office.OneNote*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*OneConnect*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*Print3D*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*SkypeApp*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*WindowsAlarms*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*WindowsCamera*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*windowscommunicationsapps*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*WindowsMaps*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*WindowsPhone*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*WindowsSoundRecorder*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*XboxApp*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*XboxGameOverlay*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*XboxGamingOverlay*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*XboxSpeechToTextOverlay*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*Xbox*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*ZuneMusic*"} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like "*ZuneVideo*"} | remove-appxprovisionedpackage online