Registry entries to customize Windows
This is a repository of registry entries to customize Windows.
Some rules for including entries to keep things organized:
The name is clear, but it also makes for easy sort.
This PC - User Folders - Add - 3D-Objects.reg
This PC
is a category. User Folders
is one item under this category, other items could be added later.Add
indicates that this entry will enable this feature. 3D-Objects
is the feature to be enabled.To quickly import entries that you’ve specified. Run the PowerShell script named _ImportMyCustomizations.ps1
Entries to import must be listed in a file named _MyCustomizations.txt
To easily create this file, in the command line use:
dir *.reg /b > _MyCustomizations.txt
Or, in PowerShell
Get-ChildItem *.reg | Select-Object -ExpandProperty Name > _MyCustomizations.txt
Then, remove all the additional entries you don’t need.