Skip to content

Instantly share code, notes, and snippets.

@benjaminkott
Last active May 1, 2018 20:59
Show Gist options
  • Save benjaminkott/8f403ba3a1afd5f061908abd323aae89 to your computer and use it in GitHub Desktop.
Save benjaminkott/8f403ba3a1afd5f061908abd323aae89 to your computer and use it in GitHub Desktop.
Windows Install Checklist

Install Windows

Disable UAC for actions that need elevations

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System

ConsentPromptBehaviorAdmin = 0

Disable PowerShell Beeps

Open PowerShell and execute the following commands.

Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
if (!(Test-Path -Path "$Profile")) {New-Item -ItemType File -Path "$Profile" -Force}
Add-Content -Value "Set-PSReadlineOption -BellStyle None" -Path "$Profile"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment