I want for each 5 minutes to call PowerShell script. The script:
$ie = New-Object -com InternetExplorer.Application
$ie.navigate("https://www.google.com")
however, script is executed, I can see blue console of PowerShell program, but it wont open IE to present me a website.
Settings in Action:
How to force script to open InternetExplorer, or Chrome?
