{"id":23925242,"url":"https://github.com/programming-communities/powershell","last_synced_at":"2026-02-18T19:01:11.345Z","repository":{"id":270381273,"uuid":"899695671","full_name":"Programming-Communities/PowerShell","owner":"Programming-Communities","description":null,"archived":false,"fork":false,"pushed_at":"2024-12-30T17:43:41.000Z","size":2,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-07T01:58:16.986Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"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/Programming-Communities.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":"2024-12-06T20:10:49.000Z","updated_at":"2024-12-30T17:43:45.000Z","dependencies_parsed_at":null,"dependency_job_id":"a3c7bc83-0c21-4a1c-bc19-ea26629e28db","html_url":"https://github.com/Programming-Communities/PowerShell","commit_stats":null,"previous_names":["programming-communities/powershell"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Programming-Communities/PowerShell","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Programming-Communities%2FPowerShell","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Programming-Communities%2FPowerShell/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Programming-Communities%2FPowerShell/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Programming-Communities%2FPowerShell/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Programming-Communities","download_url":"https://codeload.github.com/Programming-Communities/PowerShell/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Programming-Communities%2FPowerShell/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29590679,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T18:54:29.675Z","status":"ssl_error","status_checked_at":"2026-02-18T18:50:50.517Z","response_time":162,"last_error":"SSL_read: 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":[],"created_at":"2025-01-05T20:12:40.060Z","updated_at":"2026-02-18T19:01:11.321Z","avatar_url":"https://github.com/Programming-Communities.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"The error indicates that PowerShell's execution policy is preventing the `npx` command from running. This happens because script execution is disabled or restricted by default on your system.\n\n### Steps to Resolve:\n\n1. **Check Current Execution Policy**:\n   Run the following command to see your current execution policy:\n   ```powershell\n   Get-ExecutionPolicy\n   ```\n   It might return something like `Restricted`.\n\n2. **Set Execution Policy to Unrestricted or RemoteSigned**:\n   To allow scripts to run, change the execution policy:\n   ```powershell\n   Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy RemoteSigned\n   ```\n   - `RemoteSigned` allows locally created scripts to run and requires downloaded scripts to be signed by a trusted publisher.\n   - If `RemoteSigned` doesn't work, you can use `Unrestricted` as a temporary measure:\n     ```powershell\n     Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy Unrestricted\n     ```\n\n3. **Confirm the Change**:\n   Verify the new execution policy:\n   ```powershell\n   Get-ExecutionPolicy\n   ```\n\n4. **Retry the Command**:\n   Run your `npx create-next-app@latest` command again.\n\n### Additional Notes:\n- You only need to set this once unless the policy is reset.\n- If you're working in a corporate environment, you might need administrator privileges or approval to change this setting.\n- Avoid setting the execution policy to `Unrestricted` permanently as it can pose a security risk.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprogramming-communities%2Fpowershell","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprogramming-communities%2Fpowershell","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprogramming-communities%2Fpowershell/lists"}