Frage

Am Calling Notepad.vbs File In IE Browser... It Works

The Notepad.vbs Contains

Dim obj
Set obj = WScript.CreateObject( "WScript.Shell" )
obj.Exec("notepad.exe")
Set obj = Nothing

How To Executing This Notepad.vbs In FireFox and Chrome Browser....?

Keine korrekte Lösung

Andere Tipps

CreateObject is ActiveX technology. It's supperted only in Internet Explorer.

Whatever browser we can run the vbs script file using ASP (Server Side Script)

(I.E.,):

<%
 Dim obj
 Set obj = WScript.CreateObject( "WScript.Shell" )
 obj.Exec("notepad.exe")
 Set obj = Nothing
%>
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top