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创建默认代码模板的主要内容,如果未能解决你的问题,请参考以下文章
NuGet Install-Package报错解决Package Manager Console error - PowerShell version 2.0 is not supported. Pl
Docker随笔:Hyper-V PowerShell Module is not available报错解决方法
windows powershell 怎么使用啊,是干啥用的
Powershell 转义字符
Powershell 之收集服务器配置
使用Powershell禁用3个星期未登录的域用户