invoke-command -scriptblock {powershell -File "D:\batch\Fix-4Log4J.ps1"} -computer $Server -AsJob -JobName "Scan4Log4J" -Verbose -EA SilentlyContinue
当我在本地运行此脚本时,使用enter-pssession,脚本运行正常,但没有CSV
& D:\batch\Fix-4Log4J.ps1
但每次我尝试直接调用或使用SAPS调用时,它都无法创建文件
EXE的语法:
.\log4j2-scan.exe --force-fix d:\apps c:\users --report-csv --throttle 45
现在去运行它,没有其他选择。
1条答案
按热度按时间eaf3rand1#
...哦,我的天啊,我想通了...:)
invoke-command -scriptblock {powershell -File "D:\batch\Fix-4Log4J.ps1"} -computer $Server -AsJob -JobName "Scan4Log4J" -Verbose -EA SilentlyContinue**get-job -name Scan4Log4J| receive-job -wait**
这是接收工作,显示爆炸日志去了哪里!哈!
呼!!!