{"id":29372171,"url":"https://github.com/kamrulthedev/developer-toolkit-scripts","last_synced_at":"2025-07-09T16:14:27.248Z","repository":{"id":296184566,"uuid":"992534633","full_name":"Kamrulthedev/developer-toolkit-scripts","owner":"Kamrulthedev","description":"Developer Toolkit Scripts Collection","archived":false,"fork":false,"pushed_at":"2025-05-29T10:59:21.000Z","size":11,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-05-29T11:58:02.154Z","etag":null,"topics":["bat","batch-script","ps1","ps1-script"],"latest_commit_sha":null,"homepage":"","language":"PowerShell","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/Kamrulthedev.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}},"created_at":"2025-05-29T10:05:36.000Z","updated_at":"2025-05-29T10:59:25.000Z","dependencies_parsed_at":"2025-05-29T12:08:11.087Z","dependency_job_id":null,"html_url":"https://github.com/Kamrulthedev/developer-toolkit-scripts","commit_stats":null,"previous_names":["kamrulthedev/developer-toolkit-scripts"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Kamrulthedev/developer-toolkit-scripts","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kamrulthedev%2Fdeveloper-toolkit-scripts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kamrulthedev%2Fdeveloper-toolkit-scripts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kamrulthedev%2Fdeveloper-toolkit-scripts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kamrulthedev%2Fdeveloper-toolkit-scripts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Kamrulthedev","download_url":"https://codeload.github.com/Kamrulthedev/developer-toolkit-scripts/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kamrulthedev%2Fdeveloper-toolkit-scripts/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264492803,"owners_count":23617054,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["bat","batch-script","ps1","ps1-script"],"created_at":"2025-07-09T16:14:23.007Z","updated_at":"2025-07-09T16:14:27.201Z","avatar_url":"https://github.com/Kamrulthedev.png","language":"PowerShell","readme":"# 🛠️ Developer Toolkit Scripts Collection\n\nA curated set of PowerShell and BAT scripts to help developers keep their Windows systems clean, organized, and productive — **without touching your dev tools or environments.**\n\n---\n\n## 📁 Folder Structure\n\n```\nDeveloper-Toolkit-Scripts/\n│\n├── safe-cleanup/\n│   ├── safe_cleanup.ps1\n│   ├── safe_cleanup.bat\n│   └── large_file_finder.ps1\n│\n├── productivity/\n│   ├── open_dev_apps.bat\n│   └── auto_organize_desktop.ps1\n│\n└── git-helpers/\n    └── clean_git_branches.bat\n│\n└── dev-utils/\n    └── port_killer.bat\n    └── projdct_cleaber.bat  \n│\n└── LICEDNSE/\n    └── port_killer.bat\n    └── projdct_cleaber.bat         \n```\n\n---\n\n## 📦 safe-cleanup/\n\n### 🔹 `safe_cleanup.ps1`\n\n**Description:**\nCleans system temp folder, user temp folder, Windows update cache, empties Recycle Bin, and lists large files in the Downloads folder — all while keeping your dev tools untouched.\n\n**How to Run:**\n\n1. Open PowerShell as **Administrator**.\n2. Run the following command once to allow script execution (if blocked):\n\n   ```powershell\n   Set-ExecutionPolicy RemoteSigned -Scope CurrentUser\n   ```\n3. Then run:\n\n   ```powershell\n   .\\safe_cleanup.ps1\n   ```\n\n---\n\n### 🔹 `safe_cleanup.bat`\n\n**Description:**\nRuns the `safe_cleanup.ps1` script using a double-clickable `.bat` file.\n\n**How to Run:**\n\n* Just double-click the file, or run from CMD:\n\n  ```cmd\n  safe_cleanup.bat\n  ```\n\n---\n\n### 🔹 `large_file_finder.ps1`\n\n**Description:**\nScans the Downloads folder and lists files larger than **1GB** in a file named `gb_files.txt` on your Desktop.\n\n**How to Run:**\n\n```powershell\n.\\large_file_finder.ps1\n```\n\n---\n\n## ⚙️ productivity/\n\n### 🔹 `open_dev_apps.bat`\n\n**Description:**\nOpens frequently used developer tools like VS Code, Git Bash, and your browser in one click.\n\n**How to Run:**\n\n* Double-click the file or run:\n\n  ```cmd\n  open_dev_apps.bat\n  ```\n\n\u003e ⚠️ Make sure paths are correct for your system.\n\n---\n\n### 🔹 `auto_organize_desktop.ps1`\n\n**Description:**\nAutomatically organizes your Desktop by moving files into folders like `Images`, `Docs`, and `Zips`.\n\n**How to Run:**\n\n```powershell\n.\\auto_organize_desktop.ps1\n```\n\n---\n\n## 🔁 git-helpers/\n\n### 🔹 `clean_git_branches.bat`\n\n**Description:**\nDeletes local Git branches that have already been merged into `main` or `master`, except the main branches.\n\n**How to Run:**\n\n1. Open Git Bash in your repository folder.\n2. Run:\n\n   ```bash\n   ./clean_git_branches.bat\n   ```\n\n---\n\n## 🧠 Tips\n\n* Always **review script logic** before running.\n* These scripts are safe for developers but always make a backup before large cleanups.\n\n---\n\n## 📦 ব্যবহার কিভাবে করবে:\n\n### ✅ BAT (.bat) স্ক্রিপ্টগুলোর জন্য:\n\n* Notepad খুলো\n* কোডটা কপি করে পেস্ট করো\n* Save as → file name (e.g., `CleanDevSpace.bat`)\n* Right-click → Run as Administrator\n\n### ✅ PowerShell (.ps1) স্ক্রিপ্টগুলোর জন্য:\n\n**চালানোর নিয়ম:**\n\n1. Notepad (বা VS Code) খুলে কোডটা পেস্ট করো\n\n2. Save as → filename.ps1\n\n3. PowerShell as Administrator ওপেন করো\n\n4. নিচের কমান্ড চালাও:\n\n   ```powershell\n   Set-ExecutionPolicy RemoteSigned -Scope CurrentUser\n   ```\n\n5. এরপর স্ক্রিপ্ট চালাও:\n\n   ```powershell\n   .\\filename.ps1\n   ```\n\n\u003e ⚠️ Execution policy error এড়াতে Step 4 খুব জরুরি।\n\n---\n\n## 📌 License\n\nMIT License\n\n---\n\nMade with ❤️ by Kamrul\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkamrulthedev%2Fdeveloper-toolkit-scripts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkamrulthedev%2Fdeveloper-toolkit-scripts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkamrulthedev%2Fdeveloper-toolkit-scripts/lists"}