Difference between revisions of "HowTo Install Microsoft PowerShell"

From NST Wiki
Jump to navigationJump to search
(PowerShell Installation Instructions)
(PowerShell Installation Instructions)
Line 8: Line 8:
 
   
 
   
 
  <span style="color: green;"># Register the Microsoft RedHat repository</span>
 
  <span style="color: green;"># Register the Microsoft RedHat repository</span>
  <pre>curl https://packages.microsoft.com/config/rhel/7/prod.repo | sudo tee /etc/yum.repos.d/microsoft.repo;</pre>
+
  curl https://packages.microsoft.com/config/rhel/7/prod.repo | sudo tee /etc/yum.repos.d/microsoft.repo;
 
   
 
   
 
  <span style="color: green;"># Update the list of products</span>
 
  <span style="color: green;"># Update the list of products</span>
  <pre>sudo dnf update;</pre>
+
  sudo dnf update;
 
   
 
   
 
  <span style="color: green;"># Install a system component</span>
 
  <span style="color: green;"># Install a system component</span>
  <pre>sudo dnf install compat-openssl10;</pre>
+
  sudo dnf install compat-openssl10;
 
   
 
   
 
  <span style="color: green;"># Install PowerShell</span>
 
  <span style="color: green;"># Install PowerShell</span>
  <pre>sudo dnf install -y powershell;</pre>
+
  sudo dnf install -y powershell;
 
   
 
   
 
  <span style="color: green;"># Start PowerShell</span>
 
  <span style="color: green;"># Start PowerShell</span>
  <pre>pwsh;</pre>
+
  pwsh;

Revision as of 08:32, 5 July 2018

Overview

PowerShell Installation Instructions

# Register the Microsoft signature key
sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc;

# Register the Microsoft RedHat repository
curl https://packages.microsoft.com/config/rhel/7/prod.repo | sudo tee /etc/yum.repos.d/microsoft.repo;

# Update the list of products
sudo dnf update;

# Install a system component
sudo dnf install compat-openssl10;

# Install PowerShell
sudo dnf install -y powershell;

# Start PowerShell
pwsh;