Created
January 3, 2025 18:34
-
-
Save HollisTech/35a8857387d719d7a7bc01af6b4bb0ee to your computer and use it in GitHub Desktop.
WUDF debugging: find your WudfHost process.
This file contains hidden or 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
param( | |
[Parameter(Mandatory=$True, | |
ValueFromPipeline=$True, | |
Position = 0)] | |
[string]$moduleName | |
) | |
get-process -name WUDFHost | where-object { $_.Modules.Where({ $_.ModuleName -like $moduleName }) } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
for example: getWudfHost "htsvsp.dll"