Windows Server 2003 Partitioning
January 8, 2007 5:40 PM
Subscribe
How do I check the creation date of a partition in windows server 2003?
I was using the built-in Windows Partitioner to create a logical partition on our Windows Server 2003 Environment. It is important for me to find out the date that it was created.
posted by Ezrie to computers & internet (5 comments total)
1 user marked this as a favorite
strComputer = "."
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
Set colVolumes = objWMIService.ExecQuery("Select * from Win32_Volume")
For Each objVolume in colVolumes
msgbox objVolume.DriveLetter & ": " & objVolume.InstallDate
Next
Failing that I don't know, good question though.
posted by saraswati at 6:40 PM on January 8, 2007