A collection of high-performance PowerShell scripts designed to mirror the functionality of my Linux networking and system administration tools. This toolkit is built for speed, transparency, and deep-system visibility in Windows environments.
This repo contains a suite of PowerShell (.ps1) scripts that replace or enhance traditional Windows administrative tasks with a Linux-inspired workflow.
| Script | Functionality | Linux Equivalent / Inspiration |
|---|---|---|
| Admin.ps1 | Centralized AD Center for elevated system tasks. | sudo / root dashboard |
| Dump.ps1 | dedicated Network Packet Capture and Analysis tool. | dmesg / journalctl |
| Net.ps1 | Network interface monitoring and socket analysis. | netstat / ip addr |
| Ntools.ps1 | Network Diagnostic Dashboard. | nmap (basic) / traceroute |
| ssh_copy.ps1 | Cross-Platform File Transfer Utility. | ssh-copy-id |
- Elevated Workflow:
Admin.ps1acts as a primary entry point for managing system-level changes without hunting through the GUI. - Networking Parity: Scripts like
Net.ps1andDNS_Check.ps1provide the granular output typically found in terminal-heavy Linux environments. - Automation-Ready: All tools are designed to be lightweight, portable, and easily integrated into larger automation pipelines or remote management sessions.
To use these tools, ensure your Execution Policy allows for local script execution:
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser