windows-event-forwarding icon indicating copy to clipboard operation
windows-event-forwarding copied to clipboard

Download of Autorunsc64.exe Incorrectly Uses HTTPS

Open null-default opened this issue 4 years ago • 3 comments

The following line of AutorunsToWinEventLog/Install.ps1 fails, due to live.sysinternals.com being hosted over HTTP and not HTTPS:

Invoke-WebRequest -Uri "https://live.sysinternals.com/autorunsc64.exe" -OutFile "$autorunsPath"

Fix should be as simple as changing the URI to http:// instead of https://.

null-default avatar Jan 26 '21 21:01 null-default

live.sysinternals.com should be hosted on both HTTP and HTTPS, but they seem to be having a fair amount of HTTPS downtime lately. The correct fix here is to add a failover to HTTP.

clong avatar Jan 26 '21 21:01 clong

@clong is correct. #55 adds the HTTP failover, addressing this issue.

null-default avatar Jan 27 '21 19:01 null-default