JSI Tip 8116. How do I turn on logging to troubleshoot the Windows Server 2003 VDS (Virtual Disk Service)?

Jerold Schulman

June 3, 2004

1 Min Read
ITPro Today logo in a gray background | ITPro Today

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



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.

You May Also Like