Invoke-WebRequest errore about:security_powershell.exe (IE Security)
Utilizzando il comando PowerShell Invoke-WebRequest
può capitare di incorrere in questo errore about:security_powershell.exe (IE Security)dovuto alla configurazione di Internet Explorer Enhanced Security.
Per risolverlo si può usare il parametro -UseBasicParsing
che eseguito da una shell DOS diventa
PowerShell
Invoke-WebRequest https://www.sgart.it
Per risolverlo si può usare il parametro -UseBasicParsing
PowerShell
Invoke-WebRequest https://www.sgart.it -UseBasicParsing
PowerShell
powershell -command Invoke-WebRequest https://www.sgart.it -UseBasicParsing