算数和变量 # 变量和算数 $a = 1+2*3 # 环境变量 $Env:PATH += ";C:\some-folder" # 下载东西 Invoke-WebRequest $myDownloadUrl -OutFile c:\file.ext iwr $myDownloadUrl -OutFile c:\file.ext # 输出到文件 python bla.py | Out-File "file-loc"