我想运行一个简单的URL调用。
它是一种捷径。
zoommtg://zoom.us/start?confno=MYZOOMMEETINGID我现在想使用Windows Task Scheduler在瑜伽课上每周启动大约30次
我已经看到解决方案是创建一个任务,启动程序powershell.exe,然后添加我放入的参数区域
-Command "Invoke-WebRequest zoommtg://zoom.us/start?confno=MYZOOMMEETINGID”当我运行这个的时候,我得到...
Command : The term '-Command' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At line:1 char:1
-Command "Invoke-WebRequest zoommtg://zoom.us/start?confno=5720401698 ...
CategoryInfo : ObjectNotFound: (-Command:String) [], CommandNotFoundException FullyQualifiedErrorId : CommandNotFoundException发布于 2021-04-30 19:37:35
Powershell是怎么回事?
在Task Scheduler中,创建一个任务以启动您的首选浏览器,参数为完整的URL,如下所示:
"C:\Users\Laptop\AppData\Local\Mozilla Firefox\firefox.exe“https://us02web.zoom.us/j/YourMeetingID?pwd=VeryLongPassword
为每个事件设置触发器。
完成
https://stackoverflow.com/questions/62746133
复制相似问题