{"id":21213843,"url":"https://github.com/scottwilliamanderson/scripts","last_synced_at":"2025-04-13T21:52:02.560Z","repository":{"id":260761383,"uuid":"882265483","full_name":"ScottWilliamAnderson/scripts","owner":"ScottWilliamAnderson","description":"Handy PowerShell scripts for everyday automation and system management","archived":false,"fork":false,"pushed_at":"2024-12-30T23:11:27.000Z","size":91,"stargazers_count":2,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-27T12:12:32.479Z","etag":null,"topics":["chocolatey","config","copilot","git","oh-my-posh","powershell","script","setup","tools","utility"],"latest_commit_sha":null,"homepage":"","language":"PowerShell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ScottWilliamAnderson.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","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}},"created_at":"2024-11-02T10:56:51.000Z","updated_at":"2024-12-30T23:11:30.000Z","dependencies_parsed_at":"2024-11-23T22:22:57.720Z","dependency_job_id":"82849706-228b-4fa4-8e35-4474f64290b3","html_url":"https://github.com/ScottWilliamAnderson/scripts","commit_stats":null,"previous_names":["scottwilliamanderson/scripts"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ScottWilliamAnderson%2Fscripts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ScottWilliamAnderson%2Fscripts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ScottWilliamAnderson%2Fscripts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ScottWilliamAnderson%2Fscripts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ScottWilliamAnderson","download_url":"https://codeload.github.com/ScottWilliamAnderson/scripts/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248788865,"owners_count":21161726,"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":["chocolatey","config","copilot","git","oh-my-posh","powershell","script","setup","tools","utility"],"created_at":"2024-11-20T21:24:18.355Z","updated_at":"2025-04-13T21:52:02.535Z","avatar_url":"https://github.com/ScottWilliamAnderson.png","language":"PowerShell","readme":"# Utility Scripts Collection 🛠️\n\n[![Last Commit](https://img.shields.io/github/last-commit/ScottWilliamAnderson/scripts)](https://github.com/ScottWilliamAnderson/scripts)\n[![GitHub Issues](https://img.shields.io/github/issues/ScottWilliamAnderson/scripts)](https://github.com/ScottWilliamAnderson/scripts)\n[![GitHub Pull Requests](https://img.shields.io/github/issues-pr/ScottWilliamAnderson/scripts)](https://github.com/ScottWilliamAnderson/scripts)\n[![GitHub Stars](https://img.shields.io/github/stars/ScottWilliamAnderson/scripts)](https://github.com/ScottWilliamAnderson/scripts)\n[![GitHub Forks](https://img.shields.io/github/forks/ScottWilliamAnderson/scripts)](https://github.com/ScottWilliamAnderson/scripts)\n[![Repository Size](https://img.shields.io/github/repo-size/ScottWilliamAnderson/scripts)](https://github.com/ScottWilliamAnderson/scripts)\n\n[![PowerShell](https://img.shields.io/badge/PowerShell-5.1+-blue.svg)](https://github.com/PowerShell/PowerShell)\n[![Bash](https://img.shields.io/badge/Bash-4.0+-orange.svg)](https://www.gnu.org/software/bash/)\n[![Git](https://img.shields.io/badge/Git-2.0+-green.svg)](https://git-scm.com/)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\nA collection of useful scripts I've created, or make use of.\n\n## 📂 Available Scripts\n\n### Development Tools\n- [**git-config**](git-config/README.md) (PowerShell) - Automated Git configuration with productivity-focused defaults\n\n```powershell\n. .\\git-config\\git-config.ps1\nsetup-git\n```\n\n### Network Utilities\n- [**ForceConnectWiFi**](ForceConnectWifi/README.md) (PowerShell) - WiFi connection manager with retry capabilities\n```powershell\n.\\ForceConnectWiFi\\ForceConnectWiFi.ps1 -networkName \"Your_Network_Name\" -maxRetries 5 -retryIntervalSeconds 10\n```\n\n### Shell Customisations\n- [**plenty-of-info**](oh-my-posh/README.md) (Oh My Posh Theme) - Unintrusive theme with plenty of system, environment information\n```powershell\noh-my-posh init pwsh --config 'path/to/plenty-of-info.omp.json' | Invoke-Expression\n```\n\n- [**profile.ps1**](powershell-profile/README.md) (PowerShell) - Custom PowerShell profile script with environment handling, autoupdate mechanism, and additional features. See the [README](powershell-profile/README.md) for the full list of features and how to install.\n```powershell\n# Check for required environment variables\nif (-not $env:USERPROFILE) {\n    Write-Host \"USERPROFILE environment variable is not set. Skipping profile import.\"\n    return\n}\n\n# Define the path to the repository's profile script here\n$repoPath = \"$env:USERPROFILE\\path\\to\\scripts\\\"\n\n# Check if the repository profile script exists\nif (Test-Path $repoPath) {\n    $profilePath = \"$repoPath\\powershell-profile\\profile.ps1\"\n    Write-Host \"Importing profile from $profilePath\"\n    . $profilePath \n} else {\n    Write-Host \"Repository profile script not found at $repoPath\"\n}\n```\n\n### Chocolatey\n- [**packages.config**](chocolatey/README.md) (Chocolatey) - List of installed Chocolatey packages\n```powershell\nchoco install packages.config\n```\n\n### AutoHotkey Scripts\n- [**vlc-autohotkey**](autohotkey/README.md) (AutoHotkey) - Quick speed controls for VLC\n```powershell\n# Manually:\ncd .\\autohotkey\\\n.\\vlc-speed-controls.ahk\n\n# via PowerShell alias/function:\nvlcs\n# Instantly launches the script thanks to a function in profile.ps1\n```\n\n## 🚀 Getting Started\n\n1. Clone this repository:\n\n```bash\ngit clone https://github.com/ScottWilliamAnderson/scripts.git\n```\n\n2. Navigate to desired script folder:\n\n```bash\ncd scripts/\u003cscript-folder\u003e\n```\n\n3. Check individual README files for detailed usage instructions\n\n## 🛠️ Contributing\n\n1. Fork the repository\n2. Create your feature branch\n3. Follow the [contribution guidelines](.github/CONTRIBUTING.md)\n4. Submit a pull request\n\n## 🔍 Requirements\n\n- Windows 10/11\n- PowerShell 5.1+\n- Git 2.0+\n- [Optional] Chocolatey package manager\n- [Optional] Oh My Posh\n- [Optional] GitHub CLI\n- [Optional] AutoHotkey\n\n## 📝 License\n\nMIT © Scott Anderson 2024\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscottwilliamanderson%2Fscripts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fscottwilliamanderson%2Fscripts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscottwilliamanderson%2Fscripts/lists"}