October 15, 200520 yr Don't know if this is the correct section.Can someone help me create a batch file that will do the following.Create a batch file one to rename .dll to .old, the other one to rename .old to .dllThank you in advance. Edited October 15, 200520 yr by Aveedesk
October 15, 200520 yr have u ever played around with autoit3? if not then google it and give it a try.there is a nice detailed help guide with it
October 15, 200520 yr once you get to learn it, you'll love it. so easy to do stuff. just have it 1.move file.dll to file.dll.bak2.move file.old to file.dll3.move file.dll.bak to file.old
October 15, 200520 yr Author once you get to learn it, you'll love it. so easy to do stuff. just have it 1.move file.dll to file.dll.bak2.move file.old to file.dll3.move file.dll.bak to file.oldI'm sorry, are talking about the autoit3 software?Thanks.
October 15, 200520 yr Author yes i amlook in the help file for au3 and search for the move commandThank you................
October 15, 200520 yr don't need autoit to do this.. althought autoit is a very useful tool.in your batchfile just do:rename test.old test.dll1rename test.dll test.oldrename test.dll1 test.dlland replace the name of the files with the ones you got.
October 15, 200520 yr Author don't need autoit to do this.. althought autoit is a very useful tool.in your batchfile just do:rename test.old test.dll1rename test.dll test.oldrename test.dll1 test.dlland replace the name of the files with the ones you got.Bi0haZarD: Thank you. Much appreciated.
October 17, 200520 yr For simple file renaming tasks, I personally prefer batch files, just like Bi0haZarD Edited October 17, 200520 yr by totoymola
October 17, 200520 yr You can also use a vbs script to rename filesConst OverwriteExisting = TRUESet FSO = CreateObject("Scripting.FileSystemObject")FSO.MoveFile ("C:\test.old") , ("D:\test.new" ), OverwriteExisting
Create an account or sign in to comment