Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.
June 3, 2004
The VDS service in Windows Server 2003 is used by developers to provide an end-to-end solution to manage storage hardware and disks, and to create volumes on the disks.
For additional information about VDS, see Virtual Disk Service Technical Reference.
To troubleshoot problems with VDS, you can turn on logging, to create a %Systemroot%System32$VDS$.log file.
To turn on logging, run the following VDSLog.bat file, which contains:
@echo offsetlocal( @echo REGEDIT4 @echo @echo [HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesvdsDebugLog] @echo "Level"=dword:0000001f @echo @echo) >"%TEMP%DebugLogLevel.reg"net stop VDSregedit /s "%TEMP%DebugLogLevel.reg"net start VDSdel /q "%TEMP%DebugLogLevel.reg"endlocal
You May Also Like