Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
'//on error resume next strNamespace = "winmgmts://./root/cimv2"
set objArgs = wscript.Arguments
if objArgs.count < 1 then wscript.echo "Usage schedAutoChk volume1 [volume2 ...]" wscript.quit(1) end if
Dim astrVolumes()
Redim astrVolumes(objArgs.count-1)
For i = 0 to objArgs.count-1 astrVolumes(i) = objArgs(i) Next
set Volume = GetObject(strNamespace & ":Win32_Volume")
Result = Volume.ScheduleAutoChk(astrVolumes) strMessage = MapErrorCode("Win32_Volume", "ScheduleAutoChk", Result) wscript.echo "Volume.ScheduleAutoChk returned: " & Result & " : " & strMessage
Function MapErrorCode(ByRef strClass, ByRef strMethod, ByRef intCode) set objClass = GetObject("winmgmts:").Get(strClass, &h20000) set objMethod = objClass.methods_(strMethod) values = objMethod.qualifiers_("values") if ubound(values) < intCode then wscript.echo " FAILURE - no error message found for " & intCode & " : " & strClass & "." & strMethod f.writeline ("FAILURE - no error message found for " & intCode & " : " & strClass & "." & strMethod) MapErrorCode = "" else MapErrorCode = values(intCode) end if End Function
|