windows-event-forwarding
windows-event-forwarding copied to clipboard
Download of Autorunsc64.exe Incorrectly Uses HTTPS
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://
.
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 is correct. #55 adds the HTTP failover, addressing this issue.