About 29,700 results
Open links in new tab
  1. about_Scripts - PowerShell | Microsoft Learn

    Sep 29, 2025 · PowerShell scripts have a .ps1 file extension. Running a script is a lot like running a cmdlet. You type the path and file name of the script and use parameters to submit data and set …

  2. What are the different PowerShell file types? - Stack Overflow

    Jun 27, 2020 · Session configuration files make it easy to create custom session configurations without using complex C# assemblies or scripts. .pssc files are in hashtable format and contain the …

  3. How to Write and Run Scripts in the Windows PowerShell ISE

    Nov 20, 2025 · Specific file types of interest in Windows PowerShell are script files (.ps1), script data files (.psd1), and script module files (.psm1). These file types are syntax colored in the Script Pane …

  4. What does 1 stands for in .ps1 PowerShell file extention?

    Aug 15, 2022 · PowerShell Scripts continue to use “.PS1 ”. We will continue to pursue this approach until there is a major change in the CLR or .NET frameworks which force us to go side-by-side.

  5. Exploring PowerShell File Types: A Quick Overview

    PowerShell file types are essential for scripting and configuration management, commonly including `.ps1` for scripts, `.psd1` for data files, and `.psm1` for module files.

  6. PowerShell - Wikipedia

    Scripts written using PowerShell can be made to persist across sessions in either a .ps1 file or a .psm1 file (the latter is used to implement a module). Later, either the entire script or individual functions in …

  7. windows - File extension for PowerShell 3 - Stack Overflow

    Aug 24, 2012 · PowerShell files for all versions are .ps1 (or .psm1, .psd1, etc.). All of us probably know .bat for Batch files. But what is the file extension for PowerShell 3 scripts? I found .ps1 and some …

  8. Scripting in PowerShell: Creating and Running .ps1 Files - Complete ...

    PowerShell script files use the .ps1 extension and contain a series of PowerShell commands that execute sequentially. Unlike running commands interactively in the PowerShell console, scripts allow …

  9. How to Get File Extensions from Filenames in PowerShell?

    May 23, 2024 · This PowerShell tutorial explains how to Get File Extensions from Filenames in PowerShell using System.IO.Path Class and various other methods.

  10. How to create and run PowerShell script file on Windows 11

    Dec 17, 2025 · We show you how to create and run PowerShell script file in Windows. You can create it using virtually any text editor or the ISE console.