批处理文件下载和 运行 更新,然后回邮件确认
Batch file to download and run an update, and then email back confirmation
我已将计划任务设置为 运行 .bat 文件中的后续内容。它运行良好,但现在我希望它给我发送一封包含安装日志文件的电子邮件。这是我拥有的:
bitsadmin.exe /transfer "Update NXT Beta" /download 1https://dl.dropboxusercontent.com/s/somestuff/setup.exe c:\setup.exe
START C:\setup.exe /autoupdate
setup.exe 然后将日志文件导出到其根目录。如果可以的话,我想抓住它并通过电子邮件发送给自己。感谢任何帮助。
使用Blat.
此示例将使用启用 trusted/relay 的本地邮件服务器连接向 my@email.com
(来自同一地址)发送电子邮件:
Blat C:\LogFile.txt -to my@email.com -i my@email.com -subject "Install Completed on %ComputerName%" -server localhost
我已将计划任务设置为 运行 .bat 文件中的后续内容。它运行良好,但现在我希望它给我发送一封包含安装日志文件的电子邮件。这是我拥有的:
bitsadmin.exe /transfer "Update NXT Beta" /download 1https://dl.dropboxusercontent.com/s/somestuff/setup.exe c:\setup.exe
START C:\setup.exe /autoupdate
setup.exe 然后将日志文件导出到其根目录。如果可以的话,我想抓住它并通过电子邮件发送给自己。感谢任何帮助。
使用Blat.
此示例将使用启用 trusted/relay 的本地邮件服务器连接向 my@email.com
(来自同一地址)发送电子邮件:
Blat C:\LogFile.txt -to my@email.com -i my@email.com -subject "Install Completed on %ComputerName%" -server localhost