{"id":16004340,"url":"https://github.com/kakkun61/powershell-path-switcher","last_synced_at":"2025-09-07T17:34:21.759Z","repository":{"id":137888854,"uuid":"394569496","full_name":"kakkun61/powershell-path-switcher","owner":"kakkun61","description":"Path Environment Variable Quick Switcher","archived":false,"fork":false,"pushed_at":"2021-09-01T04:32:37.000Z","size":20,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-05T02:12:56.297Z","etag":null,"topics":["powershell"],"latest_commit_sha":null,"homepage":"https://www.powershellgallery.com/packages/path-switcher/","language":"PowerShell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kakkun61.png","metadata":{"files":{"readme":"README.md","changelog":"ChangeLog.md","contributing":null,"funding":".github/FUNDING.yml","license":"COPYING","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},"funding":{"github":"kakkun61"}},"created_at":"2021-08-10T07:52:03.000Z","updated_at":"2022-10-01T22:06:19.000Z","dependencies_parsed_at":null,"dependency_job_id":"d141fe16-7b18-4903-9164-6163a9b3986a","html_url":"https://github.com/kakkun61/powershell-path-switcher","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/kakkun61/powershell-path-switcher","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kakkun61%2Fpowershell-path-switcher","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kakkun61%2Fpowershell-path-switcher/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kakkun61%2Fpowershell-path-switcher/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kakkun61%2Fpowershell-path-switcher/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kakkun61","download_url":"https://codeload.github.com/kakkun61/powershell-path-switcher/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kakkun61%2Fpowershell-path-switcher/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274069329,"owners_count":25217101,"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","status":"online","status_checked_at":"2025-09-07T02:00:09.463Z","response_time":67,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["powershell"],"created_at":"2024-10-08T10:42:38.094Z","updated_at":"2025-09-07T17:34:21.728Z","avatar_url":"https://github.com/kakkun61.png","language":"PowerShell","funding_links":["https://github.com/sponsors/kakkun61"],"categories":[],"sub_categories":[],"readme":"# powershell-path-switcher\n\n[![GitHub Actions: install](https://github.com/kakkun61/powershell-path-switcher/workflows/install/badge.svg)](https://github.com/kakkun61/powershell-path-switcher/actions?query=workflow%3Ainstall) [![GitHub Actions: lint](https://github.com/kakkun61/powershell-path-switcher/workflows/lint/badge.svg)](https://github.com/kakkun61/powershell-path-switcher/actions?query=workflow%3Alint) [![PowerShell Gallery](https://img.shields.io/powershellgallery/p/path-switcher.svg)](https://www.powershellgallery.com/packages/path-switcher/) [![Sponsor](https://img.shields.io/badge/Sponsor-%E2%9D%A4-red?logo=GitHub)](https://github.com/sponsors/kakkun61)\n\nPath Environment Variable Quick Switcher.\n\nhttps://user-images.githubusercontent.com/282593/130179275-62a876d7-4e93-488a-93b8-7688535251d6.mp4\n\n## Install\n\nInvoke the following commands to install this.\n\n```PowerShell\n\u003e Install-Module path-switcher\n\u003e Import-Module path-switcher\n```\n\n### HEAD\n\nIf you want to use HEAD, follow this instruction.\n\n```PowerShell\n\u003e git clone git@github.com:kakkun61/powershell-path-switcher.git\n\u003e Import-Module .\\powershell-path-switcher\\path-switcher.psd1 # -Force option may be necessary\n```\n\n## Configuration\n\nThis module treats three types of configurations:\n\n- local configuration\n- user global configuration\n- system global configuration\n\n### Local configuration\n\nA local configuration is named _powershell-path-switcher.yaml_ and located at the current working directory or its parents recursively.\n\n### User global configuration\n\nA user global configuration is named _config.yaml_ and located at _`$Env:APPDATA\\powershell-path-switcher`_.\n\n### System global configuration\n\nA system global configuration is named _config.yaml_ and located at _`$Env:ProgramData\\powershell-path-switcher`_.\n\n### Overwriting\n\nWhen the configurations have the same keys, upper ones overwrite.\n\nFor example there are following configurations:\n\n```yaml\n# local configuration\nfoo: foo\n```\n\n```yaml\n# user global configuration\nbar: bar\n```\n\n```yaml\n# system global configuration\nbar: buzz\n```\n\nyou get:\n\n```yaml\nfoo: foo\nbar: bar\n```\n\n`bar: buzz` is overwritten.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkakkun61%2Fpowershell-path-switcher","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkakkun61%2Fpowershell-path-switcher","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkakkun61%2Fpowershell-path-switcher/lists"}