I have 10 .vbs file and incorporated them into a single .vbs file namely Main.vbs.Now if I double click on the main.vbs,my script got started to run. But I am looking for anyway can I run the .vbs file from the web browser? So that no one need to go to the directory where the Main.vbs kept and double clicked on it.EDITMy Main.VBS contents:\[code\]Dim oShell : Set oShell = WScript.CreateObject ("WScript.Shell")Dim FSO : Set FSO = CreateObject("Scripting.FileSystemObject")oShell.CurrentDirectory = FSO.GetFile(Wscript.ScriptFullName).ParentFolderoShell.run "A.VBS", 1, TrueoShell.run "B.VBS", 1, TrueoShell.run "C.VBS", 1, TrueoShell.run "D.VBS", 1, True\[/code\]Thanks,