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 command. This is a proxy cmdlet for the Get-InstalledPSResource cmdlet in the Microsoft.PowerShell.PSResourceGet.

  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-InstalledModule cmdlet gets PowerShell modules that are installed on a computer.

  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 -ListAvailable -Name "YourModuleName") { Write-Host "Module is installed." } else { Write-Host "Module is not installed." } Understanding PowerShell Modules

  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. You can also import the modules into your session using the Import-Module cmdlet.

  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 PowerShell modules on your computer. The below command will list all installed modules.

  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 Online PowerShell module is installed and displays the version installed or advises that it is not installed. Below is a screenshot of the Module that it is installed:

  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” with the module you’re checking. For example, “PnP.PowerShell”.

  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* -ListAvailable returns them all. What is the best way to test if a particular version of the Az module collection is available?

  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 the information of 63 updates at a time until all modules are checked for more recent versions. (Limit of PSGallery searching using Find-Module).

  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-Version5.1) https://docs.microsoft.com/en-us/powershell/module/powershellget/update-module?view=powershell-5.1.

  11. Some results have been removed
Refresh