Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 1.33 KB

File metadata and controls

37 lines (24 loc) · 1.33 KB

PowerShell Forge

PowerShell Forge is a Next.js application that helps you build and manage PowerShell scripts through a drag‑and‑drop interface. It was generated from the Firebase Studio starter template and provides the following features:

  • Command Browser – browse available PowerShell commands and view their parameters.
  • Script Editors – dedicated editors for adding, launching and removing applications.
  • Drag and Drop – easily drag commands from the browser into an editor to construct your script.
  • Parameter Editing – modify and validate command parameters inline.
  • Script Management – load and save scripts or export them as .ps1 files.

image

Prerequisites

  • Node.js 20 or later
  • npm (comes with Node.js)

Installation and Development

Install dependencies and start the development server:

npm install
npm run dev

The dev server starts on port 9002 by default.

Usage

  1. Browse available commands in the Command Browser.
  2. Drag commands into the Add, Launch, or Remove script editors.
  3. Adjust command parameters as needed.
  4. Use the Actions panel to load, save, or export scripts.

For a deeper look at the application structure, check src/app/page.tsx.