Skip to content

Instantly share code, notes, and snippets.

@FriedrichWeinmann
FriedrichWeinmann / poc-moduleScopeHierarchy.ps1
Last active May 30, 2019 20:31
Demonstrates the scope pyramid for functions in Modules
New-Module -Name Test -ScriptBlock {
function Get-Test1
{
[CmdletBinding()]
param ()
$var = 24
$depth = 0
try
{