powershell传入参数的方法 最后更新时间:2024年03月15日 powerShell传入变量有两种方法,一种是直接传入参数,通过`$args`数组来接收。另一种是通过`-命令 参数`的格式来传入。第二中传入方法,需要在ps1脚本中通过`param()`函数来接收。 示例: ```shell param($j) if( $args[0]){ Start-Process "D:\Microsoft VS Code\Code.exe" $args[0]; if($j -eq 1){ Set-Location $args[0]; } } else{ Start-Process "D:\Microsoft VS Code\Code.exe"; } ```
Comments | NOTHING