You can create a Mapped Network Drive. Assuming you are on Windows XP, the process is:
In a Windows Explorer window,
- Click
Tools
- Click
Map Network Drive
- Select a drive letter and a folder (e.g.
X: and \\dev\applets)
- Click
Finish
You can now just type
x:
cd applets
in your command prompt and run your batch file.
ALTERNATIVELY
You can also use the NET USE command to map the network drive. e.g.
NET USE X: \\dev\applets
x:
You can test ERRORLEVEL to see if the command completed successfully. Thanks to this brilliant bit of code, I can suggest this solution:
@echo off
set alpha=zyxwvutsrqponmlkjihg
SET completed=false
FOR /L %%i in (1,1,23) DO CALL :MAPDRIVE
:MAPDRIVE
set drive=%alpha:~0,1%
set alpha=%alpha:~1,23%
IF NOT %completed%==true (
ECHO Attempting to mount drive as %drive%
NET USE %drive%: \\dev\applets
)
IF %ERRORLEVEL% EQU 0 SET completed=true
GOTO END
:END