Jump to content

executing multiple files from vbscript


Recommended Posts


Here a little demo script for you

1:\ open Notepad waits for it to close

2:\ When Notepad is closed a messagebox appears

to ask if you want to open Mspaint

Save As DemoRunApp.vbs

 
'-> Object
Dim Act :Set Act = CreateObject("Wscript.Shell")
'-> Open The First Item
Act.Run("Notepad"), 1, True
'-> Yes No Messagebox
If MsgBox( _
"Notepad has been closed. Would you like" & vbCrLf & _
"To open Mspaint next?",4132,"Demo Yes No") = 6 Then
'->Yes Was Pressed
Act.Run("Mspaint"),1,True
Else
'->No Was Pressed
Act.Popup "User cancel opening MsPaint, This dialog" & vbCrLf & _
"will self close it self in 5 seconds.",5,"End Script",4128
End If

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...