Last active
September 10, 2024 16:49
-
-
Save raandree/5e675d28ccc72cb55ab3808007bda5f4 to your computer and use it in GitHub Desktop.
Debug DSC code running in a different process
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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