Windows Powershell - 向函数返回和提供变量不起作用

问题描述 投票:0回答:1

我有以下代码,它有一个用户菜单,并递归搜索文本文件和包含字符串“hello”的文件,然后打印一个包含结果的 HTML 文件:

Foreach ($Target in $Targets){     #ip address from the text file supplied

Function gettextfiles { 

    Write-Output "Collating Detail for $Target"
    
    $Results = Get-ChildItem -Path $Target -Recurse -Include *.txt
    Write-Output "output from recursively searching for text files $Results"
    $MyReport = Get-CustomHTML "$Target Audit"
    $MyReport += Get-CustomHeader0  "$Target Details"
    $MyReport += Get-CustomHeader "2" "Text files found"
    
    foreach ($file in $Results) {
        $MyReport += Get-HTMLDetail "Path to the file" ($file)
    }
        
    $MyReport += Get-CustomHeaderClose
    
    return $MyReport
}

Function gethello {
    $Results = Get-ChildItem -Path $Target -Recurse | Select-String -pattern hello | group path | select -ExpandProperty name
    Write-Output "output from recursively looking for the string hello $Results"
    
    $MyReport += Get-CustomHeader "2" "Hello Strings Found"
    
    foreach ($file in $Results) {
        $MyReport += Get-HTMLDetail "Path to the file" ($file)
    }
        
    $MyReport += Get-CustomHeaderClose
        
    return $MyReport
}
    
####################################################################
# To create the html document from the data gathered in the above functions

Function printeverything([string]$MyReport) {

    $Date = Get-Date
    $Filename = "C:\Desktop" + "_" + $date.Hour + $date.Minute + "_" + $Date.Day + "-" + $Date.Month + "-" + $Date.Year + $Date.Second + ".htm"
    $MyReport | out-file -encoding ASCII -filepath $Filename
    Write "HTML file saved as $Filename"

}
###################################################################
User input menu, call the functions the user chooses then when they press 3 creates the html file

do {
[int]$xMenuChoiceA = 0
while ( $xMenuChoiceA -lt 1 -or $xMenuChoiceA -gt 4 ){
Write-host "1. Get Text Files"
Write-host "2. Get Files With The String Hello"
[Int]$xMenuChoiceA = read-host "Please enter an option 1 to 4..." }
Switch( $xMenuChoiceA ){
  1{gettextfiles}
  2{gethello}
  3{printeverything "$MyReport"}
default{<#run a default action or call a function here #>}
}
} while ($xMenuChoiceA -ne 4) 

}  #ending bracket of Targets foreach

我遇到的问题:

使用用户菜单,我可以成功运行脚本来查找文本文件并查找包含字符串 hello 的文件,它找到的任何结果都将使用为 HTML 文件构造 HTML 的函数添加到

$MyReport
。这一切都很完美。

但是,当我尝试使用

printeverything
变量调用
$MyReport
函数以便它为我创建 HTML 文件时,它不起作用。

创建 HTML 文件的代码在我测试过的情况下工作得很好,我相信问题是

$MyReport
变量没有正确传递给
printeverything
函数,但我无法弄清楚我做错了什么。

function powershell scope powershell-2.0 subroutine
1个回答
2
投票

在您的

do-while
外观中,
$MyReport
只是传递给
print everything
方法。但是,此时它不在范围内,因为您只是在函数内分配给
$MyReport

尝试在任何地方使用

$MyReport
作为
$script:MyReport
,这样它将在脚本范围内。这不是理想的解决方案,但应该足以让您入门。

此外,您可能想阅读 powershell 中的管道/函数输出。您使用错误 - http://stacktoheap.com/blog/2013/06/15/things-that-trip-newbies-in-powershell-pipeline-output/

© www.soinside.com 2019 - 2024. All rights reserved.