Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Modify File ExtensionsContent of Modify File Extensions.vbsMD5 Hash: 9FEBA60CC106551BB96DB2CE3B2324F1 |
||
' Description: Changes the file extension for all the .log files in the C:\Scripts folder to .txt.
strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set FileList = objWMIService.ExecQuery _ ("ASSOCIATORS OF {Win32_Directory.Name='c:\Scripts'} Where " _ & "ResultClass = CIM_DataFile") For Each objFile In FileList If objFile.Extension = "log" Then strNewName = objFile.Drive & objFile.Path & _ objFile.FileName & "." & "txt" errResult = objFile.Rename(strNewName) End If Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |