通过bat脚本将deluge torrentname传递给powershell

时间:2016-09-13 11:58:56

标签: powershell batch-file torrent

我已经安装了洪水,并希望使用执行插件通过powershell发送推送消息

commitNowAllowingStateLoss()

我已经创建了上述但由于某种原因它不起作用我看到cmd窗口闪烁并关闭,但没有消息通过。

我已经尝试了

set torrentname=%2
powershell.exe -ExecutionPolicy Unrestricted -File C:\Pushover-DelugeNotify.ps1 %torrentname%

没有问题。

我在做错了吗?

1 个答案:

答案 0 :(得分:0)

如果您的批次中没有其他参数,则应使用"设置torrentname =%1"

set torrentname=%1
powershell.exe -ExecutionPolicy Unrestricted -File C:\Pushover-DelugeNotify.ps1 %torrentname%