8 lines
295 B
PowerShell
8 lines
295 B
PowerShell
$postParams = [PSCustomObject]@{
|
|
AutomationName = "Infra-VMware";
|
|
Action = 'Provisioning';
|
|
Units = 5;
|
|
Platform = 'PowerShell-VMware-SnapshotNew';
|
|
}
|
|
|
|
Invoke-RestMethod -Uri http://itdnettools.nd.gov/services/automation-tracking.py -Method POST -Body ($postParams | ConvertTo-Json) |