devxlogo

Run a DOS Command From an HTML Page

Run a DOS Command From an HTML Page

This is achieved by using the Windows Script Host. First, create an instance of the object WScript.Shell. Then, use its Run method to execute the DOS command. For example, say your HTML page has a button that will run the DIR command when clicked. The onclick jscript function would look something like this:

 -------------------------function btnDIR_onclick(){ var WshShell = new ActiveXObjec("WScript.Shell");     WshShell.Run("%comspec% /c DIR");     WshShell.Quit;}----------------------------

The %comspec% string in the argument for Run() specifies the path and file name of the command interpreter, Cmd.exe.

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist