Skip to content

Instantly share code, notes, and snippets.

@pgrm
Last active July 20, 2023 12:14
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pgrm/00a32ea14ab56efadf7050ec5c8dca9b to your computer and use it in GitHub Desktop.
Save pgrm/00a32ea14ab56efadf7050ec5c8dca9b to your computer and use it in GitHub Desktop.
A set of useful powershell extensions
# Execution policy - https://technet.microsoft.com/en-us/library/ee176961.aspx
# Get PS Get (http://psget.net/)
(new-object Net.WebClient).DownloadString("http://psget.net/GetPsGet.ps1") | iex
import-module PsGet
# Usful modules
# http://psget.net/directory/Jump.Location/
Install-Module Jump.Location
# http://psget.net/directory/pscx/
Install-Module pscx
# http://psget.net/directory/PsHosts/
Install-Module PsHosts
# http://psget.net/directory/PSSudo/
Install-Module PSSudo
# http://psget.net/directory/PsUrl/
Install-Module PsUrl
# http://psget.net/directory/TabExpansionPlusPlus/
Install-Module TabExpansionPlusPlus
# http://psget.net/directory/WiFi-Password/
Install-Module WiFi-Password
# Configure git (git needs to be installed before)
git config --global core.autocrlf input
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment