Powershell Profile

This is my Powershell profile.

Getting Started


# run as administrator

Set-ExecutionPolicy RemoteSigned

Modules


# run Get-InstalledModule for a list of installed modules

Get-InstalledModule

# ######## sample output ########
#
# Version              Name                                Repository           Description
# -------              ----                                ----------           -----------
# 1.0.1.2              newtonsoft.json                     PSGallery            Serialize/Deserialize Json
# 2.0.223              oh-my-posh                          PSGallery            Theming capabilities
# 1.1.7.2              PackageManagement                   PSGallery            PackageManagement
# 0.7.1                posh-docker                         PSGallery            Powershell tab completion
# 0.7.3                posh-git                            PSGallery            Provides prompt with Git status
# 1.6.6                PowerShellGet                       PSGallery            PowerShell module with commands
#

# run Set-PSRepository to trust PSGallery

Set-PSRepository -Name PSGallery -InstallationPolicy Trusted

# run Install-Module to install the modules

Install-Module posh-git

# run to update modules

Update-Module PowerShellGet

Contribute

octocat