Skip to content

Instantly share code, notes, and snippets.

@daemonhorn
Last active September 23, 2024 00:50
Show Gist options
  • Save daemonhorn/0fa3e2e651d7b096d090e5f00b06653e to your computer and use it in GitHub Desktop.
Save daemonhorn/0fa3e2e651d7b096d090e5f00b06653e to your computer and use it in GitHub Desktop.
PowerCLI on Debian

References

Install Powershell on Debian

###################################
# Prerequisites

# Update the list of packages
sudo apt-get update

# Install pre-requisite packages.
sudo apt-get install -y wget

# Download the PowerShell package file
wget https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/powershell_7.4.5-1.deb_amd64.deb

###################################
# Install the PowerShell package
sudo dpkg -i powershell_7.4.5-1.deb_amd64.deb

# Resolve missing dependencies and finish the install (if necessary)
sudo apt-get install -f

# Delete the downloaded package file
rm powershell_7.4.5-1.deb_amd64.deb

# Start PowerShell
pwsh

Install from Powershell (requires internet connectivity)

install-module -name VMware.PowerCLI

Download then transfer to offline machine

Find-Module VMware.PowerCLI |Save-Module -Path VMWare.PowerCLI.psm
  • Copy file VMWare.PowerCLI.psm to offline machine
cp VMWare.PowerCLI.psm $env:PSModulePath

Connect to vcenter

Connect-VIServer -server vcenter
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment