powershell 为PowerShell ISE创建默认代码模板
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 为PowerShell ISE创建默认代码模板相关的知识,希望对你有一定的参考价值。
function Edit-ISETemplate{
$ISETemplatePath = "$([Environment]::GetFolderPath('MyDocuments'))\WindowsPowerShell\ISETemplate.ps1"
if (!Test-Path){
New-Item $ISETemplatePath -ItemType File
}
psedit "$ISETemplatePath"
}
Register-ObjectEvent $psise.CurrentPowerShellTab.Files CollectionChanged -Action {
# files collection
$ISETemplate = "$([Environment]::GetFolderPath('MyDocuments'))\WindowsPowerShell\ISETemplate.ps1"
if (Test-Path $ISETemplate){
try{
$sender |
where {$_.IsUntitled -and $_.Editor.Text.Length -eq 0 } |
foreach {
$_.Editor.Text = Get-Content $ISETemplate -Raw
}
}
catch {
write-error $_
}
}
} -SourceIdentifier CodeTemplate
以上是关于powershell 为PowerShell ISE创建默认代码模板的主要内容,如果未能解决你的问题,请参考以下文章
PowerShe 使用证书签名 ll脚本
如何在 PowerShell 中输出内容
你如何使用 PowerShell? [关闭]
无法在 Visual Studio Code 中调试 PowerShell 脚本
ansible管理windows集群
PowerShell启用多跳远程控制