我还应该声明我在windows容器中运行它。
我正在尝试在文件中获取aws.cmd的输出,但是当在任务中运行时它不发送任何输出 - 我无法找出原因。
如果我创建以下脚本:
'get-date | out-file c:\logs\date.txt; C:\users\containeradministrator\appdata\Roaming\Python\Python37\Scripts\aws.cmd --version | out-file -append c:\logs\date.txt; getdate | out-file -append c:\logs\date.txt' > getdate.ps1
然后创建一个任务:
schtasks --% /create /tn "test-date" /sc minute /mo 1 /ru SYSTEM /tr "powershell -file c:/getdate.ps1"
任务运行脚本并将其写入文件:
PS C:\> cat C:\logs\date.txt
Wednesday, May 23, 2018 2:38:00 PM
Wednesday, May 23, 2018 2:38:02 PM
然而,当直接从控制台运行时,它会将输出写入文件:
PS C:\> C:\users\containeradministrator\appdata\Roaming\Python\Python37\Scripts\aws.cmd --version > C:\logs\consoletest.txt
PS C:\> cat C:\logs\consoletest.txt
aws-cli/1.15.24 Python/3.7.0b4 Windows/10 botocore/1.10.24
这里发生的事情让我心烦意乱。我将aws命令夹在两个get-date命令之间,这两个命令都运行,因此aws命令必须正确执行,因为它运行BOTH get-date命令。
编辑:好吧现在我真的很困惑,如果我用废话替换aws命令它仍然运行两个get-date命令,我在日志文件中看到它们的输出。例如,在脚本中用“blah.exe --fartfartfart”替换aws命令并执行任务,它仍然将get-date输出写入文件,没有错误。为什么?!脚本至少应该在错误的命令下失败!我不明白发生了什么EDIT2(重定向所有输出):
try {
C:\Users\ContainerAdministrator\AppData\Roaming\Python\Python37\Scripts\aws.cmd --version *>> c:\logs\date.txt
}
catch {
$_.Exception | out-file c:\logs\date.txt
}
get-date | out-file -apend c:\logs\date.txt
重定向所有输出我看到了这个错误:
C:\Users\ContainerAdministrator\AppData\Roaming\Python\Python37\Scripts\aws.cmd
: Traceback (most recent call last):
At C:\getdate.ps1:1 char:6
+ try {C:\Users\ContainerAdministrator\AppData\Roaming\Python\Python37\ ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (Traceback (most recent call last)
::String) [], RemoteException
+ FullyQualifiedErrorId : NativeCommandError
File "C:\Users\ContainerAdministrator\AppData\Roaming\Python\Python37\Scripts
\aws.cmd", line 50, in <module>
import awscli.clidriver
ModuleNotFoundError: No module named 'awscli'
答案 0 :(得分:1)
pip install awscli --upgrade --user
我安装了--user开关,将其安装到程序文件中,并且可以作为系统用户从任务中访问