1

我正在尝试通过 PowerShell 作为后台进程运行防病毒扫描。

我的代码:

$arg1 = "/c"
$arg2 = "/ScanAllDrives"
$logFile = "/LOGFILE='C:\Users\user\AppData\Local\Symantec\Symantec Endpoint Protection\Logs\test.log'"

Start-Job -ScriptBlock {"C:\Program Files (x86)\Symantec\Symantec Endpoint Protection\12.1.7004.6500.105\Bin\DoScan.exe"} -ArgumentList "$arg1 $arg2 $logFile

作业运行一秒钟然后停止。Get-Job显示它已经完成,但它没有给出运行时和缺少日志文件。

当我从 PowerShell 控制台运行它时,它工作正常,如下所示:

& "C:\Program Files (x86)\Symantec\Symantec Endpoint Protection\12.1.7004.6500.105\Bin\DoScan.exe" /c /ScanAllDrives

知道为什么这不会在后台运行吗?我尝试将 args 直接添加到脚本块中,但它似乎根本不喜欢这样。由于后台作业不产生任何输出,我很难理解为什么它会完成。

4

1 回答 1

1

根据您的评论,在调查 PowerShell 作业的结果时,请使用Receive-Job带有作业 ID 的 cmdlet 来查看结果输出。这可能会帮助您进一步排除故障。

我认为以下修改后的代码可以工作,但我没有在本地安装 SEP,因此无法执行完整的测试(但它确实可以使用替代 .exe):

$arg1 = '/c'
$arg2 = '/ScanAllDrives'
$logFile = '/LOGFILE="C:\Users\user\AppData\Local\Symantec\Symantec Endpoint Protection\Logs\test.log"'

Start-Job -ScriptBlock {& "C:\Program Files (x86)\Symantec\Symantec Endpoint Protection\12.1.7004.6500.105\Bin\DoScan.exe" $Args[0] $Args[1] $Args[2]} -ArgumentList $arg1, $arg2, $logFile

解释:

  • 可执行文件的路径需要用引号括起来,因为它包含空格。
  • 传递给的变量-ArgumentList需要在脚本块中通过一个名为$Args.
  • 您传递给的变量-ArgumentList需要用逗号分隔。
于 2017-04-18T08:24:58.990 回答