предположим, у меня есть 2 сценария powershell, test1.ps1 и test2.ps1
# test1.ps1
$ а = "test1"
##################
# test2.ps1
echo $ a
как реф. $ a в test2.ps1 из test1.ps1?
В сценарии 1:
Set-Variable -Name a -Value "test1" -Scope Global