Last active
July 20, 2023 12:14
-
-
Save pgrm/00a32ea14ab56efadf7050ec5c8dca9b to your computer and use it in GitHub Desktop.
A set of useful powershell extensions
This file contains 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
# 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