skip to Main Content

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


  1. Chosen as BEST ANSWER

    So I found the answer

    for %%a in ("C:UsersGregTDesktopBatch Test*.jpg") do ( start "" /w "C:UsersGregTDesktopBatch Testkeylinesaveandclose.exe" "%%a")


  2. from powershell you have more options:
    Start-Process C:PathToDropletdropletname.exe -ArgumentList "C:PathToPDFoptimizeme.pdf" -Wait -NoNewWindow -PassThru

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search