ASP Shell Execute/Run .EXE WScript.CreateObject("WScript.Shell")
ASP Shell Execute/Run .EXE WScript.CreateObject("WScript.Shell") คำสั่ง WScript Shell เป็นการสั่งให้ Web Server รันโปรแกรม .exe หรือ Bat files เพื่อทำการประมวลผลอย่างใดอย่างหนึ่ง เช่นรันโปรแกรมโปรแกรมที่อยู่ฝั่ง Web Server หรือแม้กระทั้ง Shutdown หรือ Restart เครื่องก็ย่อมทำได้เช่นเดียวกันครับ
Syntax
Set WshShell = Server.CreateObject("WScript.Shell")
WshShell.Run("Application.exe")
ตัวอย่าง
AspShellExe.asp
<html>
<head>
<title>ThaiCreate.Com ASP & WScript.Shell</title>
</head>
<body>
<%
Dim oShell
Set oShell = Server.CreateObject("WScript.Shell")
oShell.Run "C:\MyApp\LoadAutoRun.exe"
Set oShell = Nothing
%>
</body>
</html>