1

After issuing following command Invoke-WebRequest ekonomika.idnes.cz in PowerShell, its execution stops and I receive this message Vector smash protection is enabled. One of the cpu cores runs on 100% enter image description here

A search on google did not reveal much more information - rather the opposite. Any ideas?

honzajscz
  • 2,850
  • 1
  • 27
  • 29

1 Answers1

3

You are probably getting an IE prompt that looks like this: enter image description here

To bypass this use the -UseBasicParsing switch:

Invoke-WebRequest ekonomika.idnes.cz -UseBasicParsing
Martin Brandl
  • 56,134
  • 13
  • 133
  • 172