Loading |
VBScript |
JavaScript |
Powershell |
Search Options: List Folders Based on Creation DateContent of List Folders Based on Creation Date.vbsMD5 Hash: 328CD25AFAF8ECE644FD96005CA116B7 |
||
' Description: Lists all the folders on a computer that were created after 3/1/2002.
Const LOCAL_TIME = TRUE Set dtmTargetDate = CreateObject("WbemScripting.SWbemDateTime") Set dtmConvertedDate = CreateObject("WbemScripting.SWbemDateTime") dtmTargetDate.SetVarDate "3/1/2004", LOCAL_TIME strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}\\" & strComputer & "\root\cimv2") Set colFolders = objWMIService.ExecQuery _ ("Select * from Win32_Directory Where " _ & "CreationDate > '" & dtmTargetDate & "'") For each objFolder in colFolders dtmConvertedDate.Value = objFolder.CreationDate Wscript.Echo objFolder.Name & VbTab & _ dtmConvertedDate.GetVarDate(LOCAL_TIME) Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |