Hi,
I have the following script in a batch file:

rem Extracts source code from sourcesafe

rem set sourcesafe database
set ssdir=\\path to server
set path=%path%;c:\program files\Microsoft Visual Studio\common\vss\win32;c:\program files\microsoft visual studio\vb98

rem destroy old extract folder and extract sourcesafe code into there
cd c:\
attrib -r c:\extract /s
del c:\extract /s /q
mkdir c:\extract
cd c:\extract
ss get $/ -R -I-N



what I would like to know is: Is it possible to run these commands from VB without the need for the batch file?

Thanks in advance,

Shaun