Public/Start-AMTDevice.ps1
function Start-AMTDevice { param( [Parameter(Mandatory)]$GUID ) if($null -eq $Global:AMTSession){ throw "No active AMT session. Create a session first with Connect-AMTManagement" } $headers=@{} $headers.Add("Authorization", "Bearer $($Global:AMTSession.Token)") $Body = @{ "action"=2 "useSOL"=$false } | ConvertTo-Json if($null -ne $GUID -and $GUID -ne ""){ return (Invoke-RestMethod -Uri ("https://" + $Global:AMTSession.Address + "/mps/api/v1/amt/power/action/$GUID") -Method POST ` -UseBasicParsing -ContentType 'application/json' -Headers $headers -body $body).body } } |