Skip to content

Instantly share code, notes, and snippets.

@HollisTech
Created January 3, 2025 18:34
Show Gist options
  • Save HollisTech/35a8857387d719d7a7bc01af6b4bb0ee to your computer and use it in GitHub Desktop.
Save HollisTech/35a8857387d719d7a7bc01af6b4bb0ee to your computer and use it in GitHub Desktop.
WUDF debugging: find your WudfHost process.
param(
[Parameter(Mandatory=$True,
ValueFromPipeline=$True,
Position = 0)]
[string]$moduleName
)
get-process -name WUDFHost | where-object { $_.Modules.Where({ $_.ModuleName -like $moduleName }) }
@HollisTech
Copy link
Author

for example: getWudfHost "htsvsp.dll"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment