如何使用计划任务执行 powershell(x86)?
How to execute powershell(x86) with schedule task?
我正在使用 outlook 自动发送邮件。我的脚本使用 .application:
制作 var outlook
$Global:outlook = New-Object -comobject outlook.application
我的问题是关于任务计划,Outlook 是 x86 并且只能在 ISE(x86) 中工作,所以我需要让任务计划调用 powershell(x86)。我该怎么办?
任务计划示例:
PowerShell -File "C:\Users\Victor\Script.ps1"
感谢您的帮助,抱歉我的英语不好。
只需调用 x86 版本的 Powershell 使用
%SystemRoot%\syswow64\WindowsPowerShell\v1.0\powershell.exe
我正在使用 outlook 自动发送邮件。我的脚本使用 .application:
制作 var outlook$Global:outlook = New-Object -comobject outlook.application
我的问题是关于任务计划,Outlook 是 x86 并且只能在 ISE(x86) 中工作,所以我需要让任务计划调用 powershell(x86)。我该怎么办?
任务计划示例:
PowerShell -File "C:\Users\Victor\Script.ps1"
感谢您的帮助,抱歉我的英语不好。
只需调用 x86 版本的 Powershell 使用
%SystemRoot%\syswow64\WindowsPowerShell\v1.0\powershell.exe