Open an External App ?

K

Karl

Hi All,

In a batch file how would you go about opening an External
program such as notepad ?

And is there anyway to open a directory on a network as;

cd \\server\directory

doesnt work.

Thanks for your help
 
R

Ray at

Karl said:
Hi All,

In a batch file how would you go about opening an External
program such as notepad ?

start notepad

(see start /? for information)

And is there anyway to open a directory on a network as;

cd \\server\directory

Opening it in what? You can't cd to a UNC path, if that's what you mean.
You can do
start explorer \\server

Ray at work
 
R

Ray at

How would you open a bmp in the command prompt? You can TYPE it.

type \\server\directory\pic.bmp

That'll just return a bunch of nonsense though.

You can do:
start mspaint \\server\directory\pic.bmp

Ray at work
 

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