This PR gets Master up to date with the common scripts approach. These are not done but this seems far enough along to proceed. We'll now move forward with refining these common scripts along with the dev scenario scripts that reference them.
16 lines
968 B
PowerShell
16 lines
968 B
PowerShell
#--- Configuring Windows properties ---
|
|
#--- Windows Features ---
|
|
# Show hidden files, Show protected OS files, Show file extensions
|
|
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions
|
|
|
|
#--- File Explorer Settings ---
|
|
# will expand explorer to the actual folder you're in
|
|
Set-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced -Name NavPaneExpandToCurrentFolder -Value 1
|
|
#adds things back in your left pane like recycle bin
|
|
Set-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced -Name NavPaneShowAllFolders -Value 1
|
|
#opens PC to This PC, not quick access
|
|
Set-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced -Name LaunchTo -Value 1
|
|
#taskbar where window is open for multi-monitor
|
|
Set-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced -Name MMTaskbarMode -Value 2
|
|
|