About 7,600 results
Open links in new tab
  1. Installing a PowerShell Module - PowerShell | Microsoft Learn

    May 20, 2025 · Whenever possible, install all modules in a path that is listed in the PSModulePath environment variable or add the module path to the PSModulePath environment variable value. The …

  2. How to Install and Update PowerShellGet Module

    Nov 15, 2024 · To install or update PowerShellGet: Use Update-Module to upgrade to the latest version. Use Install-Module to install a new version. Use the Install-Module cmdlet to install the …

  3. PowerShell 101: Finding and Installing New Modules

    Jan 20, 2025 · Download the module directly by piping the output of Find-Module to Install-Module: If you see a prompt about an untrusted repository, the reason is that PowerShell requires explicit …

  4. How to Install PowerShell Modules in 2026: A Step-by-Step Guide

    Aug 9, 2022 · In this post, we will show how to install PowerShell Modules on Windows systems. You will need to install the PowerShell module manually if your required module is not available in the …

  5. Install-Module Cheat Sheet - Command in Line

    Install-Module Cheat Sheet $ share --via Explore # cheatsheet touch → # cheatsheet Set-ExecutionPolicy → # cheatsheet chown → $ post Mastering Vim: A Comprehensive Guide to …

  6. Mastering the Art of Install PowerShell Modules

    To install a module from the PowerShell Gallery, you will use the Install-Module command. Here’s how to execute this: Simply replace `ModuleName` with the actual name of the module you wish to …

  7. How to Install PowerShell Modules in Windows 10 & Windows …

    May 31, 2024 · There are several ways to install PowerShell modules but we are going to look at the easiest way first. The basic steps are to determine your current PowerShell module directory path, …

  8. Installing and managing modules - PowerShell for SysAdmins

    To install a module, you can use the Install-Module cmdlet. For example, to install the Azure PowerShell module, you can use the following command: This command will download and install …

  9. PowerShell Gallery | PowerShellGet 2.2.4.1

    Apr 22, 2020 · PowerShell module with commands for discovering, installing, updating and publishing the PowerShell artifacts like Modules, DSC Resources, Role Capabilities and Scripts. 3.0. There is a …

  10. How To Install PowerShell Modules In Offline Mode - C# Corner

    In this blog, we will learn to manually install PowerShell modules. Recently, I was working on VM desktop with restricted access to perform PowerShell tasks, no direct internet access, and …