Quantcast
Channel: TechNet Blogs
Viewing all articles
Browse latest Browse all 34890

PowerTip: Find the Number of Variables In-Scope

$
0
0

Summary: Find the number of variables in-scope in your function.

Hey, Scripting Guy! Question How can I see how many variables are available in-scope and out-of-scope in my Windows PowerShell function?

Hey, Scripting Guy! Answer Use the Get-Variable cmdlet, the Count property, and the –Scope parameter:

All variables

PS C:\> function myvar {(Get-Variable).count}

PS C:\> myvar

49

Variables in-scope

PS C:\> function myvar {(Get-Variable -Scope 0).count}

PS C:\> myvar

25 


Viewing all articles
Browse latest Browse all 34890

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>