PowerTip: Find Module Path with Windows PowerShell
Summary: Use Windows PowerShell to determine the location of a module. How can I use Windows PowerShell to find the location of a module that I am using from a vendor? Use the Path property of the module with Split-Path to show the parent: $ModuleName=(Get-Module –module DeployImage) $ModulePath=Split-Path $Mod...