- PowerShell功能特点
- PowerShell历史
- PowerShell和命令提示符的区别
- PowerShell与Bash Shell的区别
- PowerShell以管理员身份运行
- Windows PowerShell ISE
- PowerShell核心
- 创建并运行PowerShell脚本
- PowerShell注释
- PowerShell Cmdlet
- PowerShell基本cmdlet命令
- PowerShell Get-childItem命令
- PowerShell Get-Item命令
- PowerShell Get-Location命令
- PowerShell set-item命令
- PowerShell set-location命令
- PowerShell new-item命令
- PowerShell copy-item命令
- PowerShell move-item命令
- PowerShell remove-item命令
- PowerShell rename-item命令
- PowerShell add-content命令
- PowerShell clear-content
- PowerShell get-content命令
- PowerShell get-date命令
- PowerShell set-content命令
- PowerShell out-file命令
- PowerShell write-host命令
- PowerShell get-command命令
- PowerShell invoke-command命令
- PowerShell get-help命令
- PowerShell start-process命令
- PowerShell test-path命令
- PowerShell foreach-object命令
- PowerShell sort-object命令
- PowerShell where-object命令
- PowerShell变量
- PowerShell自动变量
- PowerShell首选项变量
- PowerShell数组
- PowerShell哈希表
- PowerShell运算符
- PowerShell算术运算符
- PowerShell赋值运算符
- PowerShell比较运算符
- PowerShell逻辑运算符
- PowerShell重定向运算符
- PowerShell拆分和合并运算符
- PowerShell if语句
- PowerShell if-else语句
- PowerShell else-if语句
- PowerShell Switch语句
- PowerShell Do-While循环
- PowerShell for循环
- PowerShell ForEach循环
- PowerShell While循环
- PowerShell Continue和Break
- PowerShell字符串
- PowerShell函数
- PowerShell Try Catch Finally
Windows PowerShell ISE
Microsoft Windows PowerShell ISE是基于图形用户界面的应用程序,并且是Windows PowerShell的默认编辑器。 ISE代表集成脚本环境。它是一个界面,我们可以在这个界面中运行命令以及编写,测试和调试PowerShell脚本,而无需在命令行界面中编写所有命令。
集成脚本环境(ISE)提供选项卡补全,多行编辑,语法着色,上下文相关帮助,选择性执行以及对从右到左语言的支持。
Windows PowerShell ISE是WMF(Windows管理框架)的一部分,它允许管理员管理Windows和Windows服务器的多个版本。它允许我们在控制台窗格中执行命令。 但是,它也支持用于同时查看脚本源代码和其他可插入ISE的工具的窗格。
我们甚至可以同时打开多个脚本窗口。当调试使用其他模块或脚本中定义的功能的脚本时,此功能特别有用。
集成脚本环境(ISE)最初随Windows PowerShell版本2.0引入,在PowerShell版本3.0重新设计。
主要特征
以下是Windows PowerShell ISE的主要功能:
- 多行编辑: 在命令窗格中,要在当前行下插入空白行,请按SHIFT + ENTER。
- 选择性执行: 要执行脚本的一部分,请选择要运行的文本,然后单击“运行”脚本,或者按F5键。
- 上下文相关的帮助: 键入
Invoke-Item
,然后按F1。将在文章中打开一个帮助文件,以获取Invoke-Item
命令let。
启动Windows PowerShell ISE
所有最新版本的Windows中均已预安装PowerShell ISE。按照以下步骤启动PowerShell控制台:
单击开始,搜索Windows PowerShell ISE,然后单击它。如下图所示:
单击后,将打开PowerShell ISE窗口。如下图所示:
PowerShell的ISE窗口包含以下三个窗格:
- 脚本窗格: 此窗格允许用户创建和运行脚本。 用户可以在脚本窗格中轻松打开,编辑和运行现有脚本。
- 输出窗格: 此窗格显示脚本的输出以及运行的命令。还可以清除并复制“输出”窗格中的内容。
- 命令窗格: 此窗格允许用户编写命令。在命令窗格中轻松执行单行或多行命令。
下一篇:PowerShell核心
扫描二维码
程序员编程王