Wait-Debugger
Interrompe um script no depurador antes de executar a próxima instrução no script.
Sintaxe
Wait-Debugger []
Description
Interrompe o mecanismo de execução de script do PowerShell no ponto imediatamente após o Wait-Debugger
cmdlet e aguarda a anexação de um depurador.
Cuidado
Certifique-se de remover as Wait-Debugger
linhas depois de terminar. Um script em execução parece estar travado quando é interrompido em um Wait-Debugger
arquivo .
Para obter mais informações sobre depuração no PowerShell, consulte about_Debuggers.
Exemplos
Exemplo 1: Inserir ponto de interrupção para depuração
O arquivo dbgtest.ps1
contém uma função Test-Condition
. O Wait-Debugger
comando foi inserido na função para interromper a execução do script nesse ponto. Quando você executa a função, o script para na Wait-Debugger
linha e entra no depurador de linha de comando. O l
comando lista as linhas de script e você pode usar outros comandos do depurador para inspecionar o estado do script.
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:\>
Observe que a saída do l
mostra que a execução do script é interrompida na Wait-Debugger
linha 13.
Exemplo 2: Inserir ponto de interrupção para depurar um recurso DSC
Neste exemplo, o Wait-Debugger
comando foi inserido CopyFile
no método de um recurso DSC. Isso é semelhante ao uso Enable-RunspaceDebug -BreakAll
em um recurso DSC, mas é interrompido em um ponto específico do script.
[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
}
}
Entradas
None
Você não pode canalizar objetos para esse cmdlet.
Saídas
None
Esse cmdlet não retorna nenhuma saída.