码迷,mamicode.com
首页 > 系统相关 > 详细

PowerShell如何清除当前ISE窗口的自定义变量

时间:2019-03-23 00:35:28      阅读:345      评论:0      收藏:0      [点我收藏+]

标签:object   drive   scope   email   scom   path   自定义变量   null   编辑器   

获取所有变量

"@({0})" -f
#@()代表一个空的数组
((Get-Variable  | select -ExpandProperty name | foreach {
"‘$_‘"
}) -join ",`n")

清理自定义变量

Function Clear-ISEVariable
{
    $sysVar=@(
    ‘$‘,
    ‘?‘,
    ‘^‘,
    ‘args‘,
    ‘ConfirmPreference‘,
    ‘ConsoleFileName‘,
    ‘DebugPreference‘,
    ‘Error‘,
    ‘ErrorActionPreference‘,
    ‘ErrorView‘,
    ‘ExecutionContext‘,
    ‘false‘,
    ‘FormatEnumerationLimit‘,
    ‘HOME‘,
    ‘Host‘,
    ‘InformationPreference‘,
    ‘input‘,
    ‘LASTEXITCODE‘,
    ‘MaximumAliasCount‘,
    ‘MaximumDriveCount‘,
    ‘MaximumErrorCount‘,
    ‘MaximumFunctionCount‘,
    ‘MaximumHistoryCount‘,
    ‘MaximumVariableCount‘,
    ‘MyInvocation‘,
    ‘NestedPromptLevel‘,
    ‘null‘,
    ‘OutputEncoding‘,
    ‘PID‘,
    ‘profile‘,
    ‘ProgressPreference‘,
    ‘PSBoundParameters‘,
    ‘PSCommandPath‘,
    ‘PSCulture‘,
    ‘PSDefaultParameterValues‘,
    ‘PSEmailServer‘,
    ‘PSHOME‘,
    ‘psISE‘,
    ‘PSScriptRoot‘,
    ‘PSSessionApplicationName‘,
    ‘PSSessionConfigurationName‘,
    ‘PSSessionOption‘,
    ‘PSUICulture‘,
    ‘psUnsupportedConsoleApplications‘,
    ‘PSVersionTable‘,
    ‘PWD‘,
    ‘ShellId‘,
    ‘StackTrace‘,
    ‘true‘,
    ‘VerbosePreference‘,
    ‘WarningPreference‘,
    ‘WhatIfPreference‘)

    Get-Variable -Scope 1 | Where-Object {
        $sysVar -notcontains $_.Name
    }  | Remove-Variable -Scope 1 -Force

}
Clear-ISEVariable

备注

Clear-ISEVariable函数同样适用于控制台,因为ISE中的自动化变量基本上是兼容控制台的。
每一台机器上的Profile文件可能不尽相同,最安全的方式是先得到自己机器上的自动化变量白名单,更新一下脚本中的集合,然后再运行。

原文

PowerShell删除ISE编辑器中的自定义变量 - PowerShell 中文博客  http://www.pstips.net/clear-isevariable.html

您也可以关注下方的微信公众号获取更多资讯
技术图片

PowerShell如何清除当前ISE窗口的自定义变量

标签:object   drive   scope   email   scom   path   自定义变量   null   编辑器   

原文地址:https://blog.51cto.com/543925535/2367549

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!