PowerShell,从其他 PS 脚本调用函数并返回对象

发布于 2024-10-02 17:45:10 字数 335 浏览 2 评论 0原文

如何从其他 PowerShell 脚本调用函数并返回对象?

主脚本:

# Run function script
. C:\MySystem\Functions.ps1

RunIE

$ie.Navigate("http://www.stackoverflow.com")  
# The Object $ie is not existing

函数脚本:

function RunIE($ie) 
{
$ie = New-Object -ComObject InternetExplorer.Application
}

How it is possible to call a function from a other PowerShell script an returning the object?

Main Script:

# Run function script
. C:\MySystem\Functions.ps1

RunIE

$ie.Navigate("http://www.stackoverflow.com")  
# The Object $ie is not existing

Functions Script:

function RunIE($ie) 
{
$ie = New-Object -ComObject InternetExplorer.Application
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

深海夜未眠 2024-10-09 17:45:10

只需从函数中“输出”对象,如下所示:

function RunIE
{ 
    $ie = New-Object -ComObject InternetExplorer.Application 
    Write-Output $ie
} 

或更惯用的

function RunIE 
{ 
    New-Object -ComObject InternetExplorer.Application 
} 

是然后将输出分配给主脚本中的变量:

$ie = RunIE

Just "output" the object from the function like so:

function RunIE
{ 
    $ie = New-Object -ComObject InternetExplorer.Application 
    Write-Output $ie
} 

or more idiomatically

function RunIE 
{ 
    New-Object -ComObject InternetExplorer.Application 
} 

Then assign the output to a variable in your main script:

$ie = RunIE
心房敞 2024-10-09 17:45:10

Keith 提供了解决您问题的最佳答案。无论如何,我想添加一些内容以使答案更完整。

如果你的函数是这样定义的:

function getvars
{
    $a = 10
    $b = "b"
}

那么它只是在函数 RunIE 的范围内创建新变量并在其中分配一些东西。函数完成后,$ie 变量将被丢弃。

在某些情况下(我将其用于某种类型的调试),您可能需要在当前范围内执行函数,这称为“点源”。只要尝试谷歌,你就会看到。

PS> $a = 11
PS> getvars
PS> $a, $b
11

PS> $a = 11
PS> . getvars
PS> $a, $b
10
b

Keith provided the answer that is the best solution for your problem. Anyway, I'd like to add something to have the answer more complete.

If your function is defined like this:

function getvars
{
    $a = 10
    $b = "b"
}

then it just creates new variable in scope of function RunIE and assigns something in it. After the function completes, the $ie variable is discarded.

In some cases (I use it for some type of debugging), you might need to execute function in the current scope and that is known as `dot sourcing'. Just try Google and you will see.

PS> $a = 11
PS> getvars
PS> $a, $b
11

PS> $a = 11
PS> . getvars
PS> $a, $b
10
b
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文