2

我的应用程序允许用户输入稍后将为您运行的 powershell 脚本。是否有一种直接的方法可以在不运行它的情况下验证 powershell 脚本,以便当用户输入它时程序可以报告语法错误?

谢谢。

4

2 回答 2

7

在 PowerShell v2 中,您有可以在不运行脚本的情况下处理脚本的标记器。查看 System.Management.Automation.PSParser 类,它是静态方法 Tokenize:

http://msdn.microsoft.com/en-us/library/system.management.automation.psparser(v=vs.85).aspx

在 v3 中它变得更好,有整个语言命名空间/AST 支持:

http://msdn.microsoft.com/en-us/library/system.management.automation.language(v=vs.85).aspx

HTH 巴特克

于 2012-05-30T09:48:54.763 回答
5

我写了一个函数来自动化这个过程:Test-PSScript,你可以在我的博客上找到它

#Requires -Version 2

function Test-PSScript
{

   param(
      [Parameter(Mandatory=$true, Position=0, ValueFromPipeline=$true, ValueFromPipelineByPropertyName=$true)] 
      [ValidateNotNullOrEmpty()] 
      [Alias('PSPath','FullName')] 
      [System.String[]] $FilePath,

      [Switch]$IncludeSummaryReport
   )

   begin
   {
      $total=$fails=0
   }

   process
   {
       $FilePath | Foreach-Object {

         if(Test-Path -Path $_ -PathType Leaf)
         {
            $Path = Convert-Path –Path $_ 

            $Errors = $null
            $Content = Get-Content -Path $path 
            $Tokens = [System.Management.Automation.PsParser]::Tokenize($Content,[ref]$Errors)

            if($Errors)
            {
               $fails+=1
               $Errors | Foreach-Object { 
                  $_.Token | Add-Member -MemberType NoteProperty -Name Path -Value $Path -PassThru | `
                  Add-Member –MemberType NoteProperty -Name ErrorMessage -Value $_.Message -PassThru
               }
            }

           $total+=1 
         }  
      }
   } 

   end 
   {
      if($IncludeSummaryReport) 
      {
         Write-Host "`n$total script(s) processed, $fails script(s) contain syntax errors."
      }
   }
} 
于 2012-05-30T11:15:15.610 回答