Installation (PowerShell Core)

From vwiki
Revision as of 13:04, 12 October 2018 by Sstrutt (talk | contribs) (Added Windows install)
Jump to navigation Jump to search

Allows you to run PowerShell Core from a Linux or macOS host or even AWS Lambda .NET Core 2.1 runtime (as well on a Windows machine). Note that it is a significantly cut down environment from what you'd expect when running within a Windows OS. Part of the power of Windows PowerShell is that it makes anything that's exposed through the full .NET Framework is available to PowerShell, but much of this is specific to Windows. PowerShell Core is dependant on .NET Core, which is stripped down so that it can run on more platforms. This does cause some gotchas, for example cryptography is not available in .NET Core, therefore you can't create secure strings (which you'd normally use for handling passwords).

Procedure

Linux

These instructions are for Ubuntu 16.04 LTS, but can be adapted for other versions as indicated, for other distributions see https://docs.microsoft.com/en-us/powershell/scripting/setup/installing-powershell-core-on-linux?view=powershell-6 for further info. The procedure below has been tested on both Ubuntu 14.04 and 16.04.

  1. Register Microsoft repository GPG key
  2. Add the Microsoft repository to aptitude sources (change the MS URL to fix your OS version)
  3. Update list of available packages
    • apt update
  4. Install PowerShell Core
    • apt install powershell
  5. Launch PowerShell
    • pwsh

Windows

Can be installed side by side with Windows PowerShell.

  1. Download latest win-x64.msi package from https://github.com/PowerShell/PowerShell/releases
  2. Install downloaded package