Installation

Unity-Powershell is available on the Powershell Gallery. It can be easily installed from there with some powershell commands.

  • Install the module from the gallery
Install-Module Unity-Powershell -Scope CurrentUser
  • Import the module in your powershell session
Import-Module Unity-Powershell
  • Verify that the module is available by listing all the exported commands
Get-Command -Module Unity-Powershell

Manual installation

Alternatively you can download the module from GitHub.

  • Download the repository
  • Unblock the zip
  • Extract the Unity-Powershell folder to a module path (e.g. $env:USERPROFILE\Documents\WindowsPowerShell\Modules)
  • Import the module in your powershell session
Import-Module Unity-Powershell
  • Verify that the module is available by listing all the exported commands
Get-Command -Module Unity-Powershell