Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Move FilesContent of Move Files.vbsMD5 Hash: 407715E722F17C21C99ADAF210DC20F2 |
||
' Description: Moves all the Windows Media (.wma) files to the folder C:\Media Archive.
strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colFiles = objWMIService. _ ExecQuery("Select * from CIM_DataFile where Extension = 'wma'") For Each objFile in colFiles strCopy = "C:\Media Archive\" & objFile.FileName _ & "." & objFile.Extension objFile.Copy(strCopy) objFile.Delete Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |