Last active
November 17, 2016 06:03
-
-
Save devynspencer/dd2620a19d35a80b05d837b2931ce2b9 to your computer and use it in GitHub Desktop.
Useful PowerShell functions, for eventual aggregation into a utilities module or similar.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function ConvertTo-BooleanString ($value) { | |
return [System.Convert]::ToBoolean($value).ToString() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment