本帖最后由 newswan 于 2021-7-23 14:24 编辑
1 批处理 调用 powershell 脚本
两个文件,同名,放在一个目录里,像这样:- my-script.bat
- my-script.ps1
复制代码 ps1 是 PowerShell 脚本文件
bat 内容如下- @ECHO OFF
- PowerShell -ExecutionPolicy Bypass -File "%~dpn0.ps1" %1
复制代码 powershell RunAs- PowerShell -NoProfile -ExecutionPolicy Bypass -Command "& {Start-Process PowerShell -ArgumentList '-NoProfile -ExecutionPolicy Bypass -File ""%~dpn0.ps1""' -Verb RunAs}";
复制代码
|