So technically, to send a WinHTTP request, you have..:
$h_openRequest = _WinHttpOpenRequest($hw_connect, "GET", "/" , "HTTP/1.1", "")
_WinHttpSendRequest($h_openRequest)
_WinHttpReceiveResponse($h_openRequest)
$data = ''
Do
$data &= _WinHttpReadData($h_openRequest)
Until @error
Typically, some responses may take a few seconds to load, and thus slows your script. Is there a way to send the request but not wait for the load? In other words, instead leave it to load on its own and move on with the script? Thanks!
GUI