bat调用powershell
时间: 2023-09-28 10:11:18 浏览: 254
bat执行powershell命令获取电脑安装软件
要在bat脚本中调用PowerShell,可以使用以下命令:
```
powershell.exe -command "PowerShell command goes here"
```
例如,要在bat脚本中运行PowerShell的Get-Date命令,可以使用以下命令:
```
powershell.exe -command "Get-Date"
```
也可以在PowerShell脚本中编写命令,并将其作为参数传递给powershell.exe,例如:
```
powershell.exe -file "C:\Scripts\MyScript.ps1"
```
这将运行名为MyScript.ps1的PowerShell脚本。注意,该脚本必须位于指定的文件路径中。
阅读全文