Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

install powershell using cmd windows 10

# Install powershell using cmd command line
iex "& { $(irm https://aka.ms/install-powershell.ps1) } -UseMSI"
Comment

install powershell on windows

winget install PowerShell
Comment

how to install powershell

for Ubuntu

# Update the list of packages
sudo apt-get update
# Install pre-requisite packages.
sudo apt-get install -y wget apt-transport-https software-properties-common
# Download the Microsoft repository GPG keys
wget -q https://packages.microsoft.com/config/ubuntu/16.04/packages-microsoft-prod.deb
# Register the Microsoft repository GPG keys
sudo dpkg -i packages-microsoft-prod.deb
# Update the list of packages after we added packages.microsoft.com
sudo apt-get update
# Install PowerShell
sudo apt-get install -y powershell
# Start PowerShell
pwsh


for macOS
brew install --cask powershell

Comment

PREVIOUS NEXT
Code Example
Shell :: kill all ports mac 
Shell :: certbot renew single domain 
Shell :: ionic plugin list command 
Shell :: a script that runs a C file through the preprocessor and save the result into another file 
Shell :: cancel a merge git 
Shell :: bash print array 
Shell :: remove all .orig files mac terminal 
Shell :: how to get ram detail in linux 
Shell :: gitignore .idea 
Shell :: check which repo i am on git 
Shell :: git clone branch 
Shell :: sudo apt install net tools 
Shell :: check folder size in linux terminal 
Shell :: conda install cufflinks 
Shell :: clone repo with personal access token 
Shell :: list directories recursively powershell 
Shell :: sudo apt-get -y install postgresql 
Shell :: how to install open media vault on raspberry pi 
Shell :: ubuntu cron job log 
Shell :: ubuntu install groovy 
Shell :: loopback install 
Shell :: transfer files to cluster 
Shell :: how to uninstall npm packages 
Shell :: count number of files linux 
Shell :: pip install apache beam 
Shell :: install xfce 
Shell :: error ppa.launchpad.net/certbot/certbot/ubuntu focal Release 
Shell :: install bower npm 
Shell :: ho to go into a docker container 
Shell :: gumlet/php-image-resize 1.9.2 requires ext-gd * 
ADD CONTENT
Topic
Content
Source link
Name
3+1 =