About 52,200 results
Open links in new tab
  1. Get-Module (Microsoft.PowerShell.Core) - PowerShell

    The Get-Module cmdlet lists the PowerShell modules that have been imported, or that can be imported, into a PowerShell session. Without parameters, Get-Module gets modules that have been imported …

  2. How to List Installed PowerShell Modules

    Jun 26, 2025 · In this tutorial, I will explain how to list installed PowerShell modules using different methods, especially using the Get-Module cmdlet with -ListAvailable parameter.

  3. Get-Module Cmdlet: PowerShell Cheat Sheet & Examples

    Jan 30, 2026 · Reference cheat sheet for the Get-Module PowerShell cmdlet. Syntax, parameters, examples, and tips for show loaded and available modules, inspect versions...

  4. How To List Installed PowerShell Modules - Active Directory Pro

    Nov 12, 2025 · Do you need to get all installed PowerShell Modules? No problem. You can easily find all installed modules using the Get-Module cmdlet. Let’s check out some examples. The below …

  5. Get-Module - PowerShell cmdlet

    To manage remote Windows computers that have PowerShell and PowerShell remoting enabled, create a PSSession on the remote computer and then use the -PSSession parameter of Get-Module to get …

  6. Finding and Importing Modules: Complete Guide to Get-Module, …

    Master PowerShell module management with Get-Module, Install-Module, and Import-Module. Learn how to find, install, and use modules effectively with practical examples.

  7. Get Module PowerShell: A Simple Guide to Mastery

    The `Get-Module` cmdlet is an essential command in PowerShell that allows users to retrieve information about installed modules. It is particularly useful for understanding which modules are …

  8. PowerShell List Installed Modules - ShellGeek

    Mar 24, 2023 · Use the Get-Module cmdlet in PowerShell to list installed PowerShell modules imported in the current session, and run the following command in the PowerShell console.

  9. Get-InstalledModule (PowerShellGet) - PowerShell | Microsoft Learn

    The Get-InstalledModule cmdlet gets PowerShell modules that are installed on a computer using PowerShellGet. To see all modules installed on the system, use the Get-Module -ListAvailable …

  10. powershell - How do I retrieve the available commands from a module ...

    To know which PowerShell modules are available on a machine I use the command Get-Module -ListAvailable This returns a list with module-type, -name and the exported commands.