Logon script ?

L

LWG

when I use the net use command in a logon script I get the following output.

the command completed successfully
the command completed successfully
the command completed successfully

how can I put 3 or 4 spaces between these to seperate the output?

thx,..
 
R

Ray at

@echo.
@echo.
@echo.

Or if you want to be fancy:
for /l %%q in (1,1,3) do @echo.

Ray at work
 
L

LWG

appreciate it ray. I will keep it simple for now. However, I will archive
you second solution for later on...

Thx again...

Larry
 

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