Oct 30, 2014 #1 jasonhuibers Programmer Joined Sep 12, 2005 Messages 290 Location CA Using asp how can I execute this command: c:\Windows\SysWOW64\wscript.exe "C:\Test.vbs
Oct 30, 2014 #2 ChrisHirst IS-IT--Management Joined Nov 23, 2001 Messages 8,049 Location GB ASP runs on a server so you can't! Chris. Indifference will be the downfall of mankind, but who cares? Time flies like an arrow, however, fruit flies like a banana. Webmaster Forum Upvote 0 Downvote
ASP runs on a server so you can't! Chris. Indifference will be the downfall of mankind, but who cares? Time flies like an arrow, however, fruit flies like a banana. Webmaster Forum
Oct 31, 2014 Thread starter #3 jasonhuibers Programmer Joined Sep 12, 2005 Messages 290 Location CA Ticket Resolved - ran this code from ASP: <% Dim objShell Dim vbsFile vbsFile = Server.MapPath("Example.vbs") Set objShell = Server.CreateObject("Wscript.Shell") objShell.Run vbsFile Set objShell = Nothing %> Upvote 0 Downvote
Ticket Resolved - ran this code from ASP: <% Dim objShell Dim vbsFile vbsFile = Server.MapPath("Example.vbs") Set objShell = Server.CreateObject("Wscript.Shell") objShell.Run vbsFile Set objShell = Nothing %>