I have a PowerShell module called Test.psm1. I want to set a value on a variable and have that accessible when I call another method in that module.
#Test.psm1
$property = 'Default Value'
function Set-Property([string]$Value)
{
$property = $Value
}
function Get-Property
{
Write-Host $property
}
Export-ModuleMember -Function Set-Property
Export-ModuleMember -Function Get-Property
From PS command line:
Import-Module Test
Set-Property "New Value"
Get-Property
At this point I want it to return "New Value" but it's returning "Default Value". I have tried to find a way to set the scope of that variable but have not had any luck.