Windows 10 Default Profile: Unterschied zwischen den Versionen

Aus QBWiki
Zur Navigation springenZur Suche springen
Zeile 4: Zeile 4:
  
 
1. (Start Menü Modifizieren) Einloggen, in irgend einen Account, den man als Default sozusagen machen möchte.  
 
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...
+
: 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)
+
: Wenn man soweit ist, sein Startmenü Profil exportieren: (Powershell)
 
:: <syntaxhighlight lang="powershell">Export-StartLayout –path C:\LayoutModification.xml</syntaxhighlight>
 
:: <syntaxhighlight lang="powershell">Export-StartLayout –path C:\LayoutModification.xml</syntaxhighlight>
:: Dann das Profile beim default user Importieren,
+
: Dann das Profile beim default user Importieren,
:: Es gibt 2 Möglichkeiten, entweder mit Powershell (1. Kommando) oder einfach reinkopieren (2. Kommando):
+
: Es gibt 2 Möglichkeiten, entweder mit Powershell (1. Kommando) oder einfach reinkopieren (2. Kommando):
 
:: <syntaxhighlight lang="powershell" line="1">
 
:: <syntaxhighlight lang="powershell" line="1">
 
Import-StartLayout -LayoutPath LayoutModification.xml -MountPath $env:SystemDrive\
 
Import-StartLayout -LayoutPath LayoutModification.xml -MountPath $env:SystemDrive\

Version vom 20. März 2019, 14:08 Uhr


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

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

3. (Windows Bloatware entfernen für Default Profile) Einfach in die Powershell (Packete kann mann sich erahnen):

Get-AppxPackage *CandyCrushSaga* | Remove-AppxPackage
Get-AppxPackage *3DBuilder* | Remove-AppxPackage
Get-AppxPackage *Appconnector* | Remove-AppxPackage
Get-AppxPackage *BingFinance* | Remove-AppxPackage
Get-AppxPackage *BingNews* | Remove-AppxPackage
Get-AppxPackage *BingSports* | Remove-AppxPackage
Get-AppxPackage *BingTranslator* | Remove-AppxPackage
Get-AppxPackage *BingWeather* | Remove-AppxPackage
Get-AppxPackage *BingFoodAndDrink* | Remove-AppxPackage
Get-AppxPackage *BingTravel* | Remove-AppxPackage
Get-AppxPackage *YourPhone* | Remove-AppxPackage
Get-AppxPackage *ScreenSketch* | Remove-AppxPackage
Get-AppxPackage *king.com* | Remove-AppxPackage
Get-AppxPackage *BingHealthAndFitness* | Remove-AppxPackage
Get-AppxPackage *WindowsReadingList* | Remove-AppxPackage
Get-AppxPackage *Microsoft3DViewer* | Remove-AppxPackage
Get-AppxPackage *MicrosoftOfficeHub* | Remove-AppxPackage
Get-AppxPackage *MicrosoftSolitaireCollection* | Remove-AppxPackage
Get-AppxPackage *MicrosoftPowerBIForWindows* | Remove-AppxPackage
Get-AppxPackage *MinecraftUWP* | Remove-AppxPackage
Get-AppxPackage *MicrosoftStickyNotes* | Remove-AppxPackage
Get-AppxPackage *NetworkSpeedTest* | Remove-AppxPackage
Get-AppxPackage *Office.OneNote* | Remove-AppxPackage
Get-AppxPackage *OneConnect* | Remove-AppxPackage
Get-AppxPackage *Print3D* | Remove-AppxPackage
Get-AppxPackage *SkypeApp* | Remove-AppxPackage
Get-AppxPackage *WindowsAlarms* | Remove-AppxPackage
Get-AppxPackage *WindowsCamera* | Remove-AppxPackage
Get-AppxPackage *windowscommunicationsapps* | Remove-AppxPackage
Get-AppxPackage *WindowsMaps* | Remove-AppxPackage
Get-AppxPackage *WindowsPhone* | Remove-AppxPackage
Get-AppxPackage *WindowsSoundRecorder* | Remove-AppxPackage
Get-AppxPackage *XboxApp* | Remove-AppxPackage
Get-AppxPackage *XboxGameOverlay* | Remove-AppxPackage
Get-AppxPackage *XboxGamingOverlay* | Remove-AppxPackage
Get-AppxPackage *XboxSpeechToTextOverlay* | Remove-AppxPackage
Get-AppxPackage *Xbox* | Remove-AppxPackage
Get-AppxPackage *ZuneMusic* | Remove-AppxPackage
Get-AppxPackage *ZuneVideo* | Remove-AppxPackage
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