Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

2 Answers

up vote 5 down vote accepted

Jamey is correct. In your example, in the first line, $property = 'Default Value' denotes a file-scoped variable. In Set-Property function, when you assign, you assign to localy scoped variable that is not visible outside the function. Finally, in Get-Property, since there is no locally scoped variable with the same name the parent scope variable is read. If you change your module to

#Test.psm1
$property = 'Default Value'

function Set-Property([string]$Value)
{
         $script:property = $Value
}

function Get-Property
{
         Write-Host $property
}

Export-ModuleMember -Function Set-Property
Export-ModuleMember -Function Get-Property

As per Jamey's example, it will work. Note though that you don't have to use the scope qualifier in the very first line, as you are in the script scope by default. Also you don't have to use the scope qualifier in Get-Property, since the parent scope variable will be returned by default.

share|improve this answer
1  
+1 a module has its own scope to insulate modules from accidental contamination picked up from the caller’s environment. – JPBlanc Apr 11 '12 at 4:12

You're on the right track. You need to force the methods in the module to use the same scope when accessing $property.

$script:property = 'Default Value'
function Set-Property([string]$Value) { $script:property = $value; }
function Get-Property { Write-Host $script:property }
Export-ModuleMember -Function *

See about_Scopes for more info.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.