💾 Archived View for unixcat.coffee › techne › powershell.gmi captured on 2022-01-08 at 13:45:49. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2021-12-03)

🚧 View Differences

-=-=-=-=-=-=-

PowerShell

Microsoft documentation

Execution Policies

Package management

WinGet CLI

winget-cli

WinGet CLI Settings

Scoop

Run PowerShell as admin

Set-ExecutionPolicy RemoteSigned -scope CurrentUser
iwr -useb get.scoop.sh  iex

Install essential tools:

scoop install git sudo

scoop bucket add extras
scoop bucket add nerd-fonts

PS Modules

Set-PSRepository -Name "PSGallery" -InstallationPolicy Trusted
Install-Module -Name Get-ChildItemColor -AllowClobber
Install-Module -Name PowerShellGet -Force
Install-Module -Name posh-git -AllowPrerelease -Force
Install-Module -Name PSWindowsUpdate

~~~

Back to Techne index

Back to unixcat.coffee