scheduling

T

Tester

Hi there,

How would I go about scheduling a opening command prompt window, then
I will run a command and the command window not to close but stay
there? Thank you very much, T
 
J

Jose

Hi there,

How would I go about scheduling a opening command prompt window, then
I will run a command and the command window not to close but stay
there? Thank you very much, T

If you provide more details, somebody here could really help you more
- maybe write your command or batch file (if that is what you want)
for you, or already has something to share.

Do you want to run a certain DOS command style file at a certain time?

You want to run a command to do what, when, "stay" where, etc...
 
T

Tester

If you provide more details, somebody here could really help you more
- maybe write your command or batch file (if that is what you want)
for you, or already has something to share.

Do you want to run a certain DOS command style file at a certain time?

You want to run a command to do what, when, "stay" where, etc...

Hi,
How abour multiple commands one after another, what is the syntax?
Thank you, T
 
G

Guest

(command1
command2
command3)

or

command1&command2&command3

If you provide more details, somebody here could really help you more
- maybe write your command or batch file (if that is what you want)
for you, or already has something to share.

Do you want to run a certain DOS command style file at a certain time?

You want to run a command to do what, when, "stay" where, etc...

Hi,
How abour multiple commands one after another, what is the syntax?
Thank you, T
 
T

Tester

(command1
command2
command3)

or

command1&command2&command3







Hi,
How abour multiple commands one after another, what is the syntax?
Thank you, T

Hi there,
I just want to place vcbmounter command in a script to run
automatically every day after hours to back up VMs.
Like cd c:\Program Files\Vmware\Vmware Consolidate Backup Framework
vcbmounter -h vcenter.abc.com -u user -p passwd -a ipaddr:1.1.1.1 -r C:
\Vmbackup -t full -m nbd
Thank you, T
 
G

Guest

cmd /k cd c:\Program Files\Vmware\Vmware Consolidate Backup
Framework&vcbmounter -h vcenter.abc.com -u user -p passwd -a
ipaddr:1.1.1.1 -r C:\Vmbackup -t full -m nbd

That's two seperate commands seperated by an &. Cmd /k keeps the window
open.

Normally one puts the commands in a text file named something.bat or
something.cmd and schedules the batch file.

(command1
command2
command3)

or

command1&command2&command3







Hi,
How abour multiple commands one after another, what is the syntax?
Thank you, T

Hi there,
I just want to place vcbmounter command in a script to run
automatically every day after hours to back up VMs.
Like cd c:\Program Files\Vmware\Vmware Consolidate Backup Framework
vcbmounter -h vcenter.abc.com -u user -p passwd -a ipaddr:1.1.1.1 -r C:
\Vmbackup -t full -m nbd
Thank you, T
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top