Last active
August 29, 2015 13:56
-
-
Save Honeybunch/9316513 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
PowerShell -NoProfile -ExecutionPolicy RemoteSigned -Command "& '%~dp0\AllowPS.ps1'" | |
pause |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Set-ExecutionPolicy RemoteSigned |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Set Registry to use small taskbar icons | |
Set-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced -Name TaskbarSmallIcons -Value 1 | |
#Set Registry to use color 11 (dark green) for Win8 Start Screen Color | |
Set-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Accent -Name ColorSet_Version3 -Value 11 | |
#Set Registry to not hide file extentions | |
Set-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced -Name HideFileExt -Value 0 | |
#Set Registry to not hide folders | |
Set-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced -Name HideFileExt -Value 1 | |
#Execute the nearby theme file | |
.\theme.deskthemepack | |
#Restart Explorer | |
Stop-Process -ProcessName explorer -Force |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment