Logon script ?

  • Thread starter Thread starter LWG
  • Start date Start date
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,..
 
@echo.
@echo.
@echo.

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

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

Thx again...

Larry
 
Back
Top