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

windows powershell

Press WinKey+X
Then click on Windows PowerShell
Comment

PREVIOUS NEXT
Code Example
Shell :: laravel install bootstrap 5 
Shell :: Google Chrome freeze uploading a file ubuntu 22.04 
Shell :: ssh save password 
Shell :: pip 21.0.1 install windows 
Shell :: delete files 0 bytes linux 
Shell :: clean journal 
Shell :: git push heroku master everything up-to-date 
Shell :: check if service is running server 
Shell :: scp ssh key 
Shell :: centos copy folder 
Shell :: change file permissions terminal 
Shell :: start Gui on your Ubuntu 20.04 system from cli 
Shell :: git ls files sort by date 
Shell :: docker run container in background 
Shell :: how to add directory path to path variable ubuntu 
Shell :: change owner of directory mac terminal 
Shell :: enable docker api 
Shell :: git diff files of different branches 
Shell :: enable ssh ubuntu 
Shell :: QSslSocket: cannot resolve CRYPTO_set_id_callback QSslSocket: cannot resolve CRYPTO_set_locking_callback QSslSocket: cannot resolve sk_free QSslSocket 
Shell :: remote: Bitbucket Cloud recently stopped supporting account passwords for Git authentication 
Shell :: PDF Acrobat ubunut 
Shell :: debian 9.4 telnet install 
Shell :: bash delete file 
Shell :: laravel sail install php mongodb extension 
Shell :: delete a file from repo history 
Shell :: git push functions code 
Shell :: git pull sith ssh key 
Shell :: portainer install 
Shell :: windows terminal guid 
ADD CONTENT
Topic
Content
Source link
Name
6+1 =