我试图从一个.bat文件中调用一个photoshop快捷批处理程序,但是没有成功。这个droplet只是在photoshop中打开图像,添加边框,然后关闭它。
运行Windows 7和Photoshop 6
这就是我已经拥有的
对于(*.jpg)中的%%a,执行(C:\Users\GregT\Desktop\KeylineSaveandClose.exe "%%~a“)
任何帮助都将不胜感激
谢谢你
发布于 2015-08-24 09:00:45
所以我找到了答案
对于("C:\Users\GregT\Desktop\Batch Test*.jpg")中的%%a,执行( start "“/w "C:\Users\GregT\Desktop\Batch Test\keylinesaveandclose.exe”"%%a")
发布于 2021-04-05 14:41:14
powershell中有更多选项: Start-Process C:\Path\To\Droplet\dropletname.exe -ArgumentList "C:\Path\To\PDF\optimizeme.pdf“-Wait -NoNewWindow -PassThru
https://stackoverflow.com/questions/32172818
复制相似问题