Open null-default opened 3 years ago
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.
In admin command prompt I'm getting error: "mc : error: 0x2 trying to open file
The following line of
AutorunsToWinEventLog/Install.ps1
fails, due tolive.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 ofhttps://
.