{"id":34904016,"url":"https://github.com/bughnter403/it-support-dashboard","last_synced_at":"2026-04-20T22:02:49.562Z","repository":{"id":327700400,"uuid":"1110422786","full_name":"BugHnter403/IT-Support-Dashboard","owner":"BugHnter403","description":"🚀 IT Support Dashboard: A modern, React-based control panel for executing system diagnostics and PowerShell maintenance scripts via a Python Flask backend.","archived":false,"fork":false,"pushed_at":"2025-12-05T08:13:55.000Z","size":52,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-27T19:24:01.415Z","etag":null,"topics":["admin-dashboard","admin-system","it","it-support-tool","it-support-tools","one-click-execution","powershell-script","printer-monitor","reset-net"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/BugHnter403.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-05T07:04:46.000Z","updated_at":"2025-12-05T08:13:58.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/BugHnter403/IT-Support-Dashboard","commit_stats":null,"previous_names":["bughnter403/it-support-dashboard"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/BugHnter403/IT-Support-Dashboard","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BugHnter403%2FIT-Support-Dashboard","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BugHnter403%2FIT-Support-Dashboard/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BugHnter403%2FIT-Support-Dashboard/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BugHnter403%2FIT-Support-Dashboard/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BugHnter403","download_url":"https://codeload.github.com/BugHnter403/IT-Support-Dashboard/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BugHnter403%2FIT-Support-Dashboard/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32067626,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T21:26:33.338Z","status":"ssl_error","status_checked_at":"2026-04-20T21:26:22.081Z","response_time":94,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["admin-dashboard","admin-system","it","it-support-tool","it-support-tools","one-click-execution","powershell-script","printer-monitor","reset-net"],"created_at":"2025-12-26T09:38:54.300Z","updated_at":"2026-04-20T22:02:49.549Z","avatar_url":"https://github.com/BugHnter403.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# IT Support Dashboard 🛠️\n\nA professional-grade, web-based dashboard designed to streamline IT support tasks. This application provides a modern React UI to trigger powerful PowerShell scripts on a host machine, making system diagnostics, network troubleshooting, and maintenance tasks accessible via a one-click interface.\n\n\u003cimg width=\"1905\" height=\"916\" alt=\"IT Support\" src=\"https://github.com/user-attachments/assets/f045484f-4264-466f-bb67-c2ee88cc1d17\" /\u003e\n\nhttps://github.com/user-attachments/assets/61bb2eba-8e46-4da5-ae6b-c6ea31b00c49\n\n## ✨ Features\n\n*   **Modern UI**: Built with **React 19** and **Tailwind CSS** for a clean, dark-mode aesthetic.\n*   **One-Click Execution**: Instantly run complex PowerShell scripts (Flush DNS, Restart Spooler, Check Firewall, etc.).\n*   **Categorized Tools**: Organized into System, Network, Maintenance, and User management.\n*   **Python Backend**: Powered by **Flask** to securely handle script execution on the host OS.\n*   **Production Ready**: Error handling and status management built-in.\n\n## 🚀 Tech Stack\n\n*   **Frontend**: React (TypeScript), Tailwind CSS, Lucide React (Icons)\n*   **Backend**: Python (Flask)\n*   **Scripting**: PowerShell (.ps1)\n\n## 🛠️ Installation \u0026 Setup\n\n### Prerequisites\n*   Node.js \u0026 npm\n*   Python 3.x\n*   Windows OS (for PowerShell script execution)\n\n### 1. Frontend Setup\n```bash\n# Clone the repository\ngit clone https://github.com/BugHnter403/IT-Support-Dashboard\ncd IT-Support-Dashboard\n\n# Install dependencies\nnpm install\n\n# Start development server\nnpm run dev\n\n# Build for production\nnpm run build\n\n# Preview production build\nnpm run preview\n```\n\n### 2. Backend Setup\n```bash\n# Run the server\npython app.py\n```\n\n### 📂 Project Structure\n```bash\nIT-Support-Dashboard/\n├── App.tsx                  # Main React component\n├── README.md                # Project documentation\n├── app.py                   # Python backend API server\n├── components/              # Reusable UI components\n│   ├── ResourceChart.tsx\n│   ├── TerminalWindow.tsx\n│   └── ToolOutput.tsx\n├── constants.tsx            # Constants used in the frontend\n├── index.html               # HTML entry point\n├── index.tsx                # React app entry\n├── metadata.json            # Project metadata\n├── package.json             # Frontend dependencies\n├── scripts/                 # PowerShell scripts for IT fixes\n│   ├── Advanced_System_Info.ps1\n│   ├── Check_Internet_Connection.ps1\n│   ├── Clear_Temp_Files.ps1\n│   ├── Find_Large_Files.ps1\n│   ├── Firewall_Quick_Toggle.ps1\n│   ├── Flush_DNS.ps1\n│   ├── List_Local_Admins.ps1\n│   ├── List_Local_Users.ps1\n│   ├── Recently_Modified_Files.ps1\n│   ├── Restart_Network_Adapter.ps1\n│   ├── Restart_Print_Spooler.ps1\n│   ├── Show_Disk_Space.ps1\n│   ├── Show_Event_Log_Errors.ps1\n│   ├── Show_My_IP_Address.ps1\n│   ├── Show_Printer_Status.ps1\n│   ├── Show_System_Uptime.ps1\n│   └── System_Resource_Monitor.ps1\n├── services/               # API service for frontend-backend communication\n│   └── api.ts\n├── tsconfig.json            # TypeScript configuration\n├── types.ts                 # Type definitions\n└── vite.config.ts           # Vite configuration\n```\n\n### 👨‍💻 Author\nFirdaus Shaari\n\n[Linkedin](https://www.linkedin.com/in/firdaus-s-97b92b207/)\n\n[Github](https://github.com/BugHnter403)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbughnter403%2Fit-support-dashboard","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbughnter403%2Fit-support-dashboard","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbughnter403%2Fit-support-dashboard/lists"}