About 45,700,000 results
Open links in new tab
  1. Importing a PowerShell Module - PowerShell | Microsoft Learn

    Sep 17, 2021 · In PowerShell 2.0, you can import a newly-installed PowerShell module with a call to Import-Module cmdlet. In PowerShell 3.0, PowerShell is able to implicitly import a module …

  2. How to Install PowerShell Modules: A Step by Step Guide

    Nov 14, 2024 · There are two main methods for installing PowerShell Module: PowerShell gallery method and manual method (if the modules are not available in the PowerShell gallery). The …

  3. Mastering Import-Module in PowerShell: A Quick Guide

    To import your custom module, ensure that it is saved as a `.psm1` file. You can then use the following command: This command makes the functions defined in your custom module …

  4. How to Install a PowerShell Module: Quick Guide

    Sep 17, 2025 · Replace ModuleName with the desired module’s name, such as AzureAD. Confirm any prompts, and the module will be installed from the PowerShell Gallery. How to …

  5. Import-Module Cheat Sheet | Import-Module Command Line Guide

    Mar 1, 2025 · Using Import-Module is simple. You specify the module you want to load, and it becomes available in your current PowerShell session. There are several ways to use it: To …

  6. PowerShell 101: Importing Modules - ATA Learning

    Jan 17, 2025 · To see how PowerShell handles modules dynamically, here’s an example showing the dynamic module loading: Manifest 7.0.0.0 Microsoft.PowerShell.Management {Add …

  7. Working with PowerShell Modules | How to Install, Import & Load Modules

    In this in-depth PowerShell tutorial, we’ll walk you through how to work with PowerShell modules — a key skill for anyone looking to extend the functionality...

  8. Import-Module (Microsoft.PowerShell.Core) - PowerShell

    The Import-Module cmdlet adds one or more modules to the current session. Starting in PowerShell 3.0, installed modules are automatically imported to the session when you use any …

  9. Working with PowerShell modules

    Jul 19, 2023 · To use a module, you need to import it into your PowerShell session with the Import-Module cmdlet. Once a module is imported, you can use its cmdlets, functions, and …

  10. PowerShell 101: Importing Modules - The Dev News

    Jan 19, 2025 · To see how PowerShell handles modules dynamically, right here’s an instance displaying the dynamic module loading: Manifest 7.0.0.0 Microsoft.PowerShell.Administration …