10 lines
177 B
PowerShell
10 lines
177 B
PowerShell
param(
|
|
[Parameter(Mandatory = $true)]
|
|
[string]$Command
|
|
)
|
|
|
|
$ErrorActionPreference = "Stop"
|
|
. "$PSScriptRoot\ProxmoxAgent.ps1"
|
|
|
|
Invoke-ProxmoxSshCommand -Command $Command
|