powershell 的ConvertTo-Boolean.ps1

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 的ConvertTo-Boolean.ps1相关的知识,希望对你有一定的参考价值。

function ConvertTo-Boolean
{
  param
  (
    [Parameter(Mandatory=$false,ValueFromPipeline=$true)][string] $value
  )
  switch ($value)
  {
    "y" { return $true; }
    "yes" { return $true; }
    "true" { return $true; }
    "t" { return $true; }
    1 { return $true; }
    "n" { return $false; }
    "no" { return $false; }
    "false" { return $false; }
    "f" { return $false; } 
    0 { return $false; }
  }
}

以上是关于powershell 的ConvertTo-Boolean.ps1的主要内容,如果未能解决你的问题,请参考以下文章

powershell 测量PowerShell命令或PowerShell脚本的速度

如何在不卸载powershell的情况下,有效禁用/启用powershel

powershell 如何定时执行 ps1

powershell远程下载exe并执行

windows powershell 怎么使用啊,是干啥用的

powershell报错?