I am looking to do some automating on some imports. I am looking for a way to call multiple scripts to run from either one batch file or vbscript. what I am trying to do is the
Instead of mixing batch and VBScript, I recommend you just put all those tasks in a single VBScript. Here's an example of how to rename a file in VBScript.
Set FSO = CreateObject("Scripting.FileSystemObject")
FSO.MoveFile "C:\MyFile.txt", "C:\YourFile.txt"
' Can continue to use FSO for other operations...
Please note that moving is essentially the same thing as renaming.
If you clarify what else you want, then more help will be forthcoming.