I have a vbs file having this code.
Option Explicit
Dim objIEA
Set objIEA = CreateObject("InternetExplorer.Application")
objIEA.Navigate "https://localhost/abc/RSSDigest/RSSDigest.php?frequency=weekly"
objIEA.visible = false
While objIEA.Busy
Wend
objIEA.Quit
Set objIEA = Nothing
in my php file. I have a redirect code written. Which redirects to the same file. Will the redirect happen if the vbs file is getting executed via cscript.exe