Dela via


Wait-Debugger

Stoppar ett skript i felsökningsprogrammet innan du kör nästa instruktion i skriptet.

Syntax

Wait-Debugger []

Description

Stoppar PowerShell-skriptkörningsmotorn direkt efter cmdleten Wait-Debugger och väntar på att ett felsökningsprogram ska kopplas.

Varning

Se till att du tar bort raderna Wait-Debugger när du är klar. Ett skript som körs verkar vara låst när det stoppas vid en Wait-Debugger.

Mer information om felsökning i PowerShell finns i about_Debuggers.

Exempel

Exempel 1: Infoga brytpunkt för felsökning

Filen dbgtest.ps1 innehåller en funktion Test-Condition. Kommandot Wait-Debugger infogades i funktionen för att stoppa skriptkörningen vid den tidpunkten. När du kör funktionen stoppas skriptet Wait-Debugger på raden och anger kommandoradsfelsökaren. Kommandot l visar skriptraderna och du kan använda andra felsökningskommandon för att inspektera skripttillståndet.

function Test-Condition {
    [CmdletBinding()]
    param (
        [Parameter(Mandatory)]
        [string]$Name,
        [string]$Message = "Hello, $Name!"
    )

    if ($Name -eq $env:USERNAME) {
        Write-Output "$Message"
    } else {
        # Remove after debugging
        Wait-Debugger

        Write-Output "$Name is not the current user."
    }
}

PS D:\> Test-Condition Fred
Entering debug mode. Use h or ? for help.

At D:\temp\test\dbgtest.ps1:13 char:9
+         Wait-Debugger
+         ~~~~~~~~~~~~~
[DBG]: PS D:\>> l

    8:
    9:      if ($Name -eq $env:USERNAME) {
   10:          Write-Output "$Message"
   11:      } else {
   12:          # Remove after debugging
   13:*         Wait-Debugger
   14:
   15:          Write-Output "$Name is not the current user."
   16:      }
   17:  }

[DBG]: PS D:\>> $env:USERNAME
User01
[DBG]: PS D:\>> exit
PS D:\>

Observera att utdata från l visar att skriptkörningen stoppas på Wait-Debugger rad 13.

Exempel 2: Infoga brytpunkt för felsökning av en DSC-resurs

I det här exemplet Wait-Debugger infogades kommandot i CopyFile metoden för en DSC-resurs. Detta liknar att använda Enable-RunspaceDebug -BreakAll i en DSC-resurs men bryts vid en viss punkt i skriptet.

[DscResource()]
class FileResource
{
    [DscProperty(Key)]
    [string] $Path

    [DscProperty(Mandatory)]
    [Ensure] $Ensure

    [DscProperty(Mandatory)]
    [string] $SourcePath

    [DscProperty(NotConfigurable)]
    [Nullable[datetime]] $CreationTime


    [void] Set() {
        $fileExists = $this.TestFilePath($this.Path)
        if ($this.ensure -eq [Ensure]::Present) {
            if (! $fileExists) {
               $this.CopyFile()
            }
        } else {
            if ($fileExists) {
                Write-Verbose -Message "Deleting the file $($this.Path)"
                Remove-Item -LiteralPath $this.Path -Force
            }
        }
    }

    [bool] Test() {
        $present = Test-Path -LiteralPath $this.Path
        if ($this.Ensure -eq [Ensure]::Present) {
            return $present
        } else {
            return (! $present)
        }
    }

    [FileResource] Get() {
        $present = Test-Path -Path $this.Path
        if ($present) {
            $file = Get-ChildItem -LiteralPath $this.Path
            $this.CreationTime = $file.CreationTime
            $this.Ensure = [Ensure]::Present
        } else {
            $this.CreationTime = $null
            $this.Ensure = [Ensure]::Absent
        }
        return $this
    }

    [void] CopyFile() {
        # Testing only - Remove before deployment!
        Wait-Debugger

        if (! (Test-Path -LiteralPath $this.SourcePath)) {
            throw "SourcePath $($this.SourcePath) is not found."
        }
        if (Test-Path -LiteralPath $this.Path -PathType Container) {
            throw "Path $($this.Path) is a directory path"
        }
        Write-Verbose "Copying $($this.SourcePath) to $($this.Path)"
        Copy-Item -LiteralPath $this.SourcePath -Destination $this.Path -Force
    }
}

Indata

None

Du kan inte skicka objekt till den här cmdleten.

Utdata

None

Den här cmdleten returnerar inga utdata.