Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Delete All the .BAK Files in a Folder That Are More Than 7 Days OldContent of Delete All the .BAK Files in a Folder That Are More Than 7 Days Old.vbsMD5 Hash: E1BD5606CEC797CB1CEB047E240A3EE3 |
||
dtmDate = Date - 7
strDay = Day(dtmDate) If Len(strDay) < 2 Then strDay = "0" & strDay End If strMonth = Month(dtmDate) If Len(strMonth) < 2 Then strMonth = "0" & strMonth End If strYear = Year(dtmDate) strTargetDate = strYear & strMonth & strDay strComputer = "." Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2") Set FileList = objWMIService.ExecQuery _ ("ASSOCIATORS OF {Win32_Directory.Name='C:\Scripts'} Where " _ & "ResultClass = CIM_DataFile") For Each objFile In FileList strDate = Left(objFile.CreationDate, 8) If strDate < strTargetDate Then If objFile.Extension = "bak" Then objFile.Delete End If End If Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |