Вопрос

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....?

Нет правильного решения

Другие советы

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
%>
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top