怎么编写bat来调用PowerShell
时间: 2023-05-17 21:04:51 浏览: 3244
将powershell负载编码为bat文件
你可以使用以下命令来编写bat文件来调用PowerShell:
@echo off
PowerShell.exe -ExecutionPolicy Bypass -File "C:\path\to\your\PowerShell\script.ps1"
其中,-ExecutionPolicy Bypass参数允许PowerShell执行脚本,而不需要进行任何安全检查。你需要将“C:\path\to\your\PowerShell\script.ps1”替换为你实际的PowerShell脚本路径。
阅读全文