Install PowerShell on Linux: Unterschied zwischen den Versionen

Aus Wiki-WebPerfect
Wechseln zu: Navigation, Suche
(Die Seite wurde neu angelegt: „== Install PowerShell on Kali-Linux == <source lang="bash"> # Download the Microsoft repository GPG keys wget https://packages.microsoft.com/config/debian/10/p…“)
(kein Unterschied)

Version vom 16. Juli 2020, 12:24 Uhr

Install PowerShell on Kali-Linux

# Download the Microsoft repository GPG keys
wget https://packages.microsoft.com/config/debian/10/packages-microsoft-prod.deb
 
# Register the Microsoft repository GPG keys
sudo dpkg -i packages-microsoft-prod.deb
 
# Update the list of products
sudo apt-get update
 
# Install PowerShell
sudo apt-get install -y powershell
 
# Start PowerShell
pwsh