I have the below code to process the move of suppression files but its moving from the desktop and not the folder in which the batch file is located.
JobNo = InputBox("Input Job Number")
strfolder = InputBox("Input the job name: ex. Monthly Statements, or Brochures")
Set objShell = WScript.CreateObject("WScript.Shell")
objShell.Run """C:\TEST\" & JobNo & " " & strfolder & "\Processing\Suppressions.bat"""
I just thought that I could also add an echo to the batch file, but I was trying to avoid this if possible. The echo would be CD to the directory where the bat was located.
Thoughts?