如何安排任务以调用URL


Answers:


22

使用Powershell中的Invoke-WebRequest cmdlet。

在您的任务中:

  • 行动: Start a program
  • 程序/脚本: powershell.exe
  • 参数: -Command "Invoke-WebRequest http://myapp/BackgroundTask/Run"

1
如何使用集成身份验证?
杰克

注意:这仅在PowerShell 3及更高版本中有效(要检查您的版本,请输入get-hostpowershell)。在较低版本中,您需要调用一个单独的powershell脚本,例如stackoverflow.com/questions/17486205/…–
DdW
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.