以下两点是从我的结束完成的
我的要求如下
需要一个整合的脚本,我可以在一个脚本中配置上述两个,然后我将更新我的任务调度程序以运行整合的脚本,以便每天下午6点发送邮件。
我正在寻找powershell作为我的最终整合脚本,它将首先运行幻像js并运行send_mail.ps1。
我使用了以下命令来运行
C:\phantomjs-2.1.1-windows\phantomjs-2.1.1-windows\bin> .\phantomjs.exe I:\my_code\capture_screenshot1.js --> (Capture screenshot and put under C:\Images)
C:\phantomjs-2.1.1-windows\phantomjs-2.1.1-windows\bin> .\phantomjs.exe I:\my_code\capture_screenshot2.js --> (Capture screenshot and put under C:\Images)
C:\phantomjs-2.1.1-windows\phantomjs-2.1.1-windows\bin> cd I:\my_code\
I:\my_code> .\send_mail.ps1 --> (Send Mail from taking the images from C:\Images)
我只需要单个统一脚本来运行上面的3个命令。
你应该能够从powershell启动phantomjs exe。
它会是这样的
CD c:\path\to\phantomjs
.\phantomjs.exe I:\my_code\capture_screenshot1.js
.\phantomjs.exe I:\my_code\capture_screenshot2.js
**contents of sendmail.ps1**