I’m trying to call a photoshop droplet from a .bat file but with no luck. This droplet just opens the image in photoshop, adds a border, and closes it.
Running Windows 7 and Photoshop 6
This is what I already have
for %%a in (*.jpg)
do (C:UsersGregTDesktopKeylineSaveandClose.exe “%%~a”
)
Any help would be much appreciated
Thankyou
2
Answers
So I found the answer
for %%a in ("C:UsersGregTDesktopBatch Test*.jpg") do ( start "" /w "C:UsersGregTDesktopBatch Testkeylinesaveandclose.exe" "%%a")
from powershell you have more options:
Start-Process C:PathToDropletdropletname.exe -ArgumentList "C:PathToPDFoptimizeme.pdf" -Wait -NoNewWindow -PassThru