脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - PowerShell - PowerShell ISE自动化简单示例

PowerShell ISE自动化简单示例

2020-07-01 10:38脚本之家 PowerShell

这篇文章主要介绍了PowerShell ISE自动化简单示例,本文给出了2个PowerShell ISE自动化例子,需要的朋友可以参考下

PowerShell ISE自动化不依赖与任何第三方的框架和工具,因为PowerShell ISE本身就是可编程的。非常高大上地被称作为PowerShell抽象语法树,其实在之前的一篇文章中有简单分享过。关键点在于$PSISE变量。

今天再来看两行更加单的例子:

我想输出PowerShell ISE 中当前编辑框中的所有脚本:

 

复制代码 代码如下:

$psise.CurrentFile.Editor.Text


我想将PowerShell ISE中当前编辑框中的所有脚本中的某个字符串,替换成我期望的字符串,但是不使用PowerShell ISE中本身界面的查找和替换。

 

 

复制代码 代码如下:

$psise.CurrentFile.Editor.Text = $psise .CurrentFile.Editor.Text -replace '官本位' , '民本位'

延伸 · 阅读

精彩推荐