About 566,000 results
Open links in new tab
  1. 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 …

  2. How do I check if a PowerShell module is installed?

    Feb 26, 2015 · The current version of Powershell has a Get-InstalledModule function that suits this purpose well (or at least it did in my case). Get-InstalledModule. Description. The Get …

  3. PowerShell: Check If Module Is Installed with Ease

    To check if a PowerShell module is installed, you can use the `Get-Module -ListAvailable` command to verify its presence and conditionally respond based on the result. if (Get-Module …

  4. Get-Module (Microsoft.PowerShell.Core) - PowerShell

    Starting in Windows PowerShell 3.0, modules are automatically imported when you use a command in the module, but a Get-Module command does not trigger an automatic import. …

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

    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. List all installed …

  6. Quickly confirm Exchange Online PowerShell Module Installation and Version

    Dec 12, 2023 · Many times, customers ask, how do I verify the version I have installed on my server, so I put together a small script to achieve this. The script checks if the Exchange …

  7. How to check if a PowerShell Module is installed?

    Mar 27, 2022 · To check if a PowerShell module is installed, open PowerShell and use the following command: Get-Module -ListAvailable -Name "ModuleName" Replace “ModuleName” …

  8. How to detect which version of the Az PowerShell module

    May 23, 2020 · On Azure DevOps agents there is no Az module collection installed - Get-InstalledModule Az returns $null. But all Az modules are just available - Get-Module Az* …

  9. PowerShell is fun :)Check for PowerShell module updates

    Sep 20, 2023 · It gathers a list of all the installed PowerShell modules on your system (Installed from a repository using Install-Module) and checks if a newer version is available. It retrieves …

  10. Check latest PowerShell Module version with PowerShell

    Nov 2, 2020 · Sometimes it is necessary to check if your powershell module is still up to date. Yes in newer PowerShell Versions you can choose the following cmdlet: Update-Module (PS …

  11. Some results have been removed
Refresh