这是我的代码:
- $script={
- Write-Host "Num Args:" $args.Length;
- Write-Host $args[0]
- }
- Invoke-Command -ScriptBlock $script
当我跑
- powershell.exe .\test.ps1 one two three
我有
- Num Args: 0
我以为我会得到
- Num Args: 3
- One
我错过了什么?
谢谢