代码之家  ›  专栏  ›  技术社区  ›  David S.

how to ref. a value from another powershell script?

  •  0
  • David S.  · 技术社区  · 14 年前

    suppose i have 2 powershell scripts, test1.ps1 and test2.ps1

    Test1.PS1

    $a=“Test1”

    ##################

    测试2.PS1

    回声$

    how to ref. $a in test2.ps1 from test1.ps1?

    1 回复  |  直到 14 年前
        1
  •  0
  •   xcud    14 年前

    在脚本1中:

    Set-Variable -Name a -Value "test1" -Scope Global
    
    推荐文章