php - Is it possible to pipe PowerShell output to a URL? -
anyone know if it's possible pipe output of powershell command url request?
i able pipe output web server can parse out meaningful data , store or email on.
the output small, i'm not worried finer details post limitations , character escaping, etc.
it depends on want pipe , type of http request want do.
invoke-webrequest supports following http requests : delete, get, head, merge, options, patch, post, put, , trace.
one caveat parameter of invoke-webrequest support pipeline input -body .
you can check online of invoke-webrequest more details :
Comments
Post a Comment