如何在PowerShell中创建Custompreference变量?

时间:2018-02-23 05:46:11

标签: powershell powershell-v3.0

Powershell有很多偏好变量,如ErrorPreference,VerbosePreference和DebugPreference。

是否可以创建custompreference变量?

案例如下

$(function () {                     
    $('[data-toggle="popover"]').click(function(){
        $(this).popover('toggle');
        $('[data-toggle="popover"]').not(this).popover('hide'); //all but this
    });
})

可以在多个地方调用此函数。在每个地方传递-Tee开关并不简单。如果有$ teePreference =“继续”的custompreference,那么我不需要在每个地方传递-Tee。另外,如果我需要停止,我可以做$ TeePreference =“SilentlyContinue”。

0 个答案:

没有答案