Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 733 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 733 Bytes

Windows Powershell Profile

Installation

Enable scripts

  • Powershell (as Administrator)
    • Set-ExecutionPolicy RemoteSigned
  • "Windows Powershell" (as Administrator) #see Notes below for more details
    • Set-ExecutionPolicy RemoteSigned

Install files

  • Powershell (as normal user)
    • Invoke-WebRequest -outfile "${env:USERPROFILE}\setup.ps1" -Uri https://raw.githubusercontent.com/andylytical/powershell/main/setup.ps1
    • & "${env:USERPROFILE}\setup.ps1"
    • rm "${env:USERPROFILE}\setup.ps1"

Powershell Tips / Tricks

Notes