从批处理文件运行 PowerShell 脚本
PowerShell 脚本是一个使用 .ps1
扩展名的文本文件,其中包含一组命令。PowerShell 按顺序执行这些命令。
批处理文件是使用 .bat
扩展名的文本文件。它还包含一组按顺序执行的命令。
这些命令可以通过打开 .bat
文件来执行。本教程将教你从批处理文件运行 PowerShell 脚本。
我们创建了一个 PowerShell 脚本 myscript.ps1
,其中包含以下命令。
Write-Host "Your script is executed successfully."
我们还创建了一个批处理文件 test.bat
来运行上述 PowerShell 脚本。我们将使用批处理文件 test.bat
运行 PowerShell 脚本 myscript.ps1
。
使用 -File
参数从批处理文件运行 PowerShell 脚本
你可以使用 -File
参数调用 PowerShell 脚本。这是从命令提示符运行 PowerShell 脚本的简单命令。
test.bat
文件中使用以下命令来运行 PowerShell 脚本。 @echo off
命令禁用回显或阻止显示批处理文件内容。
pause
命令会停止批处理文件的执行,直到你按下除 Ctrl、Shift 或 NumberLock 之外的任何键。
@echo off
powershell -File C:\New\myscript.ps1
pause
输出:
Your script is executed successfully.
Press any key to continue . . .
使用 RemoteSigned
作为 -ExecutionPolicy
从批处理文件运行 PowerShell 脚本
你可以将 RemoteSigned
设置为 -ExecutionPolicy
以从批处理文件运行 PowerShell 脚本。 -ExecutionPolicy
参数指定 PowerShell 执行策略。
@echo off
powershell -ExecutionPolicy RemoteSigned -File C:\New\myscript.ps1
pause
输出:
Your script is executed successfully.
Press any key to continue . . .
使用 Bypass
开关从批处理文件运行 PowerShell 脚本
你还可以使用 Bypass
作为执行策略从批处理文件运行 PowerShell 脚本。
@echo off
powershell -ExecutionPolicy Bypass -File C:\New\myscript.ps1
pause
输出:
Your script is executed successfully.
Press any key to continue . . .
或者,你也可以运行以下命令。
@echo off
PowerShell -NoProfile -ExecutionPolicy Bypass -Command "& 'C:\New\myscript.ps1'"
pause
输出:
Your script is executed successfully.
Press any key to continue . . .
通过以管理员身份打开 PowerShell 从批处理文件运行 PowerShell 脚本
以下命令以管理员身份打开 PowerShell 以运行 PowerShell 脚本。当你打开批处理文件并选择是
时,输出将显示在 Windows PowerShell 上。
@echo off
PowerShell -NoProfile -ExecutionPolicy Bypass -Command "& {Start-Process PowerShell -ArgumentList '-NoProfile -ExecutionPolicy Bypass -File ""C:\New\myscript.ps1""' -Verb RunAs}"
ps1'"
pause
输出:
Your script is executed successfully.
相关文章
从 PowerShell 中的组中删除用户
发布时间:2024/02/29 浏览次数:92 分类:编程语言
-
本文将讨论我们如何从活动目录组中删除用户,并讨论使用 PowerShell 的命令附带的参数。
PowerShell 中对数字进行四舍五入
发布时间:2024/02/29 浏览次数:171 分类:编程语言
-
本文将讨论如何使用 .NET 框架 Math 类的多个函数在 PowerShell 中对数字进行舍入。
PowerShell 中的逻辑运算符
发布时间:2024/02/29 浏览次数:106 分类:编程语言
-
本文将讨论 PowerShell 中使用的几个逻辑运算符。本文还讨论了不同的现实世界示例,以及我们如何将其应用于使用 PowerShell 编写脚本。
PowerShell 中的返回值
发布时间:2024/02/29 浏览次数:96 分类:编程语言
-
本文介绍了 return value 关键字的用途、return 关键字的工作原理以及如何在 Windows PowerShell 中正确使用它们。
PowerShell 中的递增和递减
发布时间:2024/02/29 浏览次数:60 分类:编程语言
-
本文将讨论我们应该了解的有关增量和减量以及何时在 PowerShell 中使用预增量和后增量(或减量)的所有信息。