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.
 
 
 
 
 
 

68 lines
2.0 KiB

'//on error resume next
set objArgs = wscript.Arguments
if objArgs.count < 1 then
wscript.echo "Usage format volume"
wscript.quit(1)
end if
fNotDone = True
strVolume = Replace(objArgs(0), "\", "\\")
'// Get the volume
strQuery = "select * from Win32_Volume where Name = '" & strVolume & "'"
set VolumeSet = GetObject("winmgmts:").ExecQuery(strQuery)
for each obj in VolumeSet
set Volume = obj
exit for
next
wscript.echo "Volume: " & Volume.Name
' illustration of how to handle input parameters - not tested
Set objMethod = Volume.Methods_.Item("Format")
Set objInParams = objMethod.InParameters.SpawnInstance_
objInParams.ClusterSize = 4096
objInParams.EnableCompression = False
objInParams.FileSystem = "NTFS"
objInParams.Label = ""
objInParams.QuickFormat = False
Set objSink = WScript.CreateObject("WbemScripting.SWbemSink","SINK_")
Volume.ExecMethodAsync_ objSink, "Format", objInParams
WScript.Echo "method executing..."
while (fNotDone)
wscript.Sleep(1000)
wend
Sub SINK_OnObjectReady(objObject, objAsyncContext)
'WScript.Echo objObject.Name
Result = objObject.ReturnValue
wscript.echo "ObjectReady: Format returned: " & Result & " : " & MapErrorCode("Win32_Volume", "Format", Result)
End Sub
Sub SINK_OnCompleted(intHresult, objError, objContext)
WScript.Echo "OnCompleted: hresult: 0x" & Hex(intHresult)
fNotDone = False
End Sub
Sub SINK_OnProgress(intTotal, intCurrent, strMessage, objContext)
WScript.Echo "OnProgress: " & intCurrent & "/" & intTotal
End Sub
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
MapErrorCode = ""
else
MapErrorCode = values(intCode)
end if
End Function