A beautiful, interactive web interface to explore all PowerShell commands. Features a modern design with light/dark themes, powerful search and filtering capabilities.
- 🎨 Light & Dark Themes - Toggle between themes with persistent preference
- 🔍 Powerful Search - Real-time search across all commands
- 🏷️ Advanced Filtering - Filter by command type and source
- 💡 Hover Tooltips - Detailed information on hover with examples
- 📖 Comprehensive Cheat Sheet - Complete PowerShell reference guide
- 📱 Responsive Design - Works seamlessly on desktop and mobile
- ⚡ Fast & Lightweight - Pure HTML/CSS/JS, no dependencies
- 🎯 Clean UI - Monochromatic design with JetBrains Mono font
Visit the live site: PowerShell Commands Explorer
Simply open the site and:
- Use the search box to find specific commands
- Filter by command type or source using the dropdown menus
- Hover over command cards to see detailed information and examples
- Visit the Cheat Sheet page for comprehensive PowerShell guides
- Toggle between light and dark themes for your preference
The command data is sourced from PowerShell's Get-Command cmdlet, exported to CSV format.
To generate your own data:
Get-Command | Export-Csv -Path "AllPowerShellCommands.csv" -NoTypeInformation- Clone this repository:
git clone https://github.com/curiousbud/PSHEXP.git
cd PSHEXP- Open
index.htmlin your browser or serve it with a local server:
# Using Python
python -m http.server 8000
# Using Node.js
npx http-server- Navigate to
http://localhost:8000
- Push your code to GitHub
- Go to repository Settings → Pages
- Set source to
mainbranch and/(root) folder - Save and wait for deployment
- Your site will be live at
https://username.github.io/PSHEXP/
PSHEXP/
├── index.html # Main commands explorer
├── cheatsheet.html # PowerShell cheat sheet reference
├── AllPowerShellCommands.csv # PowerShell commands data
├── favicon.svg # Custom CBK favicon
├── LICENSE # MIT License
└── README.md # This file
- HTML5 - Semantic markup
- CSS3 - Custom properties, Grid, Flexbox
- Vanilla JavaScript - No frameworks or libraries
- JetBrains Mono - Monospace font for consistent typography
- Chrome (latest)
- Firefox (latest)
- Safari (latest)
- Edge (latest)
Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.
This project is licensed under the MIT License - see the LICENSE file for details.
Created by Areeb Khan (@curiousbud)
If you use this project or fork it, please provide credit to the original author.
- GitHub: @curiousbud
- LinkedIn: Areeb Khan
- PowerShell team for the amazing shell and cmdlet ecosystem
- JetBrains for the beautiful Mono font
- The Art of Hacking (h4cker) by Omar Santos for the cheat sheet content
- The open-source community
Made with ❤️ by Areeb Khan