All, I'm quite new to vbscript. I do have 4 scripts, that all do work
fine. What i would like to do is put the 4 scripts into one big
script, but how do i say if the first script has been executed, that
it must go to script number 2?

Thanks

Ralph

Re: joining serveral scripts by Steve

Steve
Tue Feb 10 07:14:55 CST 2004

Ralph Klos wrote:
> All, I'm quite new to vbscript. I do have 4 scripts, that all do work
> fine. What i would like to do is put the 4 scripts into one big
> script, but how do i say if the first script has been executed, that
> it must go to script number 2?

Using Windows Script Files (.wsf)
http://msdn.microsoft.com/library/en-us/script56/html/wsadvantagesofws.asp

Download Windows Script Documentation
http://www.microsoft.com/downloads/details.aspx?FamilyId=01592C48-207D-4BE1-8A76-1C4099D7BBB9

--
Steve

Excess on occasion is exhilarating. It prevents moderation from acquiring the
deadening effect of a habit. -W. Somerset Maugham



Re: joining serveral scripts by jcochran

jcochran
Tue Feb 10 09:36:19 CST 2004

On Tue, 10 Feb 2004 13:56:59 +0100, Ralph Klos <rklos@xs4all.be>
wrote:

>All, I'm quite new to vbscript. I do have 4 scripts, that all do work
>fine. What i would like to do is put the 4 scripts into one big
>script, but how do i say if the first script has been executed, that
>it must go to script number 2?

If you're creating one large script, all you do is add script 2 below
script 1. When the code in script 1 is finished the code in script 2
is next in line.

Jeff