Skip to content

Instantly share code, notes, and snippets.

@raandree
Last active September 10, 2024 16:49
Show Gist options
  • Save raandree/5e675d28ccc72cb55ab3808007bda5f4 to your computer and use it in GitHub Desktop.
Save raandree/5e675d28ccc72cb55ab3808007bda5f4 to your computer and use it in GitHub Desktop.
Debug DSC code running in a different process
[DSCLocalConfigurationManager()]
configuration LcmDebugConfig
{
Node localhost
{
Settings
{
RefreshMode = 'Push'
DebugMode = 'ForceModuleImport'
}
}
}
LcmDebugConfig -OutputPath C:\DSC
Set-DscLocalConfigurationManager -Path C:\DSC -Force
return
$lcmProcessId = (Get-PSHostProcessInfo | Where-Object { $_.AppDomainName -eq 'DscPsPluginWkr_AppDomain' -and $_.ProcessName -eq 'WmiPrvSE' }).ProcessId
$lcmProcess = Get-Process -Id $lcmProcessId
Enter-PSHostProcess -Process $lcmProcess -AppDomainName DscPsPluginWkr_AppDomain
$rs = Get-Runspace | Where-Object { $_.Debugger.InBreakpoint }
Debug-Runspace -Runspace $rs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment