Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用从模块导入的一些 cmdlet,并且想找出 DLL 的物理位置,以便我可以在它们上使用 dotPeek 或 Reflector。有没有办法以某种方式找出DLL路径?
尝试
( get-command my-cmdlet ).dll
接受的答案适用于 cmdlet,但不适用于本机函数,例如Add-BgpRouteror Add-PrinterDriver。要确定函数的文件路径,请使用
Add-BgpRouter
Add-PrinterDriver
$Function = Get-Command Add-BgpRouter (Get-Module $Function.ModuleName).Path