About 28,100 results
Open links in new tab
  1. How to Write a PowerShell Script Module - PowerShell

    The following steps describe how to create a PowerShell module. Save a PowerShell script with a .psm1 extension. Use the same name for the script and the directory where the script is saved. Saving a …

  2. Powershell Module: A Best Practice Guide - the Sysadmin Channel

    Oct 24, 2021 · Learn how to create a Powershell Module to turn all related functions into a single Powershell file. We'll cover how to create and use best practices.

  3. PowerShell 101: Creating a Real-World Module: Scaffolding Functions

    Jan 21, 2025 · In this guide, we’ll create a PowerShell module for gathering computer hardware information. This module will help system administrators collect and report on memory, storage, and …

  4. How to Create a PowerShell Module?

    Dec 31, 2024 · Learn how to create a PowerShell module with this step-by-step guide. Check best practices, examples, and tips to organize and reuse your PowerShell scripts.

  5. PowerShell Modules: A Quick Introduction with a Practical Example

    Dec 8, 2024 · In this blog, I’ll introduce PowerShell modules, explain their two primary types, and walk through a real-world example using my GitHub project to demonstrate creating and testing a...

  6. How to Create a PowerShell Module: A Beginner’s Guide

    Dec 2, 2024 · Learn how to create a PowerShell module with this step-by-step guide including core files and required module metadata.

  7. Creating a PowerShell Module - 0xBEN

    Aug 17, 2023 · In this post, I walk you through the process I follow when creating a PowerShell module and the reasoning behind doing so. What is a PowerShell Module? Explains how to install, import, …

  8. andrewmatveychuk/powershell.sample-module - GitHub

    This repository contains the source code for a sample PowerShell module along with Azure DevOps pipeline configuration to perform all build, test and publish tasks.

  9. Advanced PowerShell Modules: Building Clean and Structured Code

    Jun 16, 2025 · This continuation will help you transform from a module user to a module architect, capable of building robust, maintainable, and professional PowerShell modules.

  10. Understanding a Windows PowerShell Module - PowerShell

    Sep 17, 2021 · For example, the most basic way of creating a module is to simply save a Windows PowerShell script as a .psm1 file. Doing so allows you to control (ie, make public or private) the …