Be careful while invoking multiple functions in powershell.
PS > function retTrue () { return $true }
PS > function retFalse () { return $false }
PS > retTrue
True
PS > retFalse
False
PS > retTrue -and retFalse
True
PS > (retTrue) -and (retFalse)
False
Subscribe to:
Post Comments (Atom)
-
All WMI Class Names list : - Name ...
-
Functions are loosely typed in javascript, we are able to pass different types of parameters, too few args, too many argos etc. Keep functio...
-
Hi All, Thanks for taking out time to read this post. Can someone help me with this? When I try to run this, System.TypeLoadExeception Error...
No comments:
Post a Comment