Do you mean you want to run IE on another machine on the same LAN? I'm not sure if you can do this via ASP....I believe this is more geared towards Windows programming.
At the very least, you'll need to somehow be able to control IEXPLORE.EXE on the other workstation.
You should be able to do this through WMI (Windows Management and Instrumentation) as long as you have the access rights to that workstation. As long as the workstation supports WMI and scripting, you should be able to do it.
On Error Resume Next
Set Locator = CreateObject("WbemScripting.SWbemLocator"
user = server & "\" & accnt
pwd = "yourpassword"
Set Service = Locator.ConnectServer(Server, "root\cimv2", user, pwd)
Service.Security_.impersonationlevel = 3
Set Process = Service.Get("Win32_Process"
strCmd = "IExplore.exe"
intStatus = Process.Create("cmd /C " & strCmd, null, null, intProcessId)
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.