{"id":14064044,"url":"https://github.com/vba-blocks/installer","last_synced_at":"2025-07-29T17:31:43.762Z","repository":{"id":88191696,"uuid":"178276993","full_name":"vba-blocks/installer","owner":"vba-blocks","description":"Installer for vba-blocks","archived":false,"fork":false,"pushed_at":"2019-10-15T15:31:19.000Z","size":394,"stargazers_count":3,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-05-22T22:35:19.391Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://vba-blocks.com","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/vba-blocks.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}},"created_at":"2019-03-28T20:26:19.000Z","updated_at":"2023-05-12T20:55:00.000Z","dependencies_parsed_at":null,"dependency_job_id":"20b8d83e-d4ef-456b-9d38-e8e35fc8b24e","html_url":"https://github.com/vba-blocks/installer","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vba-blocks%2Finstaller","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vba-blocks%2Finstaller/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vba-blocks%2Finstaller/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vba-blocks%2Finstaller/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vba-blocks","download_url":"https://codeload.github.com/vba-blocks/installer/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":228032923,"owners_count":17858917,"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":[],"created_at":"2024-08-13T07:03:38.878Z","updated_at":"2024-12-04T02:31:04.452Z","avatar_url":"https://github.com/vba-blocks.png","language":"PowerShell","readme":"# vba-blocks Installer\n\n## Install Latest Version\n\n__Windows__\n\nIn powershell, run the following:\n\n```shellsession\n\u003e iwr https://vba-blocks.com/install.ps1 | iex\n```\n\n__Mac__\n\nIn terminal, run the following:\n\n```shellsession\n$ curl -fsSL https://vba-blocks.com/install.sh | sh\n```\n\nFor more recent versions of Office for Mac, you will need to trust access to the VBA project object model for vba-blocks to work correctly:\n\n\u003cdetails\u003e\n  \u003csummary\u003eTrust access to the VBA project object model\u003c/summary\u003e\n  \u003col\u003e\n    \u003cli\u003eOpen Excel\u003c/li\u003e\n    \u003cli\u003eClick \"Excel\" in the menu bar\u003c/li\u003e\n    \u003cli\u003eSelect \"Preferences\" in the menu\u003c/li\u003e\n    \u003cli\u003eClick \"Security\" in the Preferences dialog\u003c/li\u003e\n    \u003cli\u003eCheck \"Trust access to the VBA project object model\" in the Security dialog\u003c/li\u003e\n    \u003cimg src=\"./images/trust-access-VBOM.png\"\u003e\n \u003c/ol\u003e\n\u003c/details\u003e\n\n## Install Specific Version\n\n__Windows__\n\n```shellsession\n\u003e iwr https://vba-blocks.com/install.ps1 -out install.ps1; .\\install.ps1 v0.2.0\n```\n\n__Mac__\n\n```shellsession\n$ curl -fsSL https://vba-blocks.com/install.sh | sh -s v0.2.0\n```\n\n## Known Issues\n\n\u003cdetails\u003e\n  \u003csummary\u003eCould not create SSL/TLS secure channel\u003c/summary\u003e\n\n```\nPS C:\\\u003e iwr https://vba-blocks.com/install.ps1 | iex\niwr : The request was aborted: Could not create SSL/TLS secure channel.\nAt line:1 char:1\n+ iwr https://vba-blocks.com/install.ps1 | iex\n+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n    + CategoryInfo          : InvalidOperation: (System.Net.HttpWebRequest:HttpWebRequest) [Invoke-WebRequest], WebException\n    + FullyQualifiedErrorId : WebCmdletWebResponseException,Microsoft.PowerShell.Commands.InvokeWebRequestCommand\n```\n\n**When does this issue occur?**\n\nIf your systems' [ServicePointManager](https://docs.microsoft.com/en-us/dotnet/api/system.net.servicepointmanager.securityprotocol) is configured to use an out-dated security protocol, such as, TLS 1.0.\n\n**How can this issue be fixed?**\n\nConfigure your system to use an up-to-date security protocol, such as, TLS 1.2:\n\n```powershell\n[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12\n```\n\u003c/details\u003e\n\n\u003cdetails\u003e\n  \u003csummary\u003eRunning scripts is disabled\u003c/summary\u003e\n\n```\nPS C:\\\u003e iwr https://vba-blocks.com/install.ps1 -out install.ps1; .\\install.ps1 v0.2.10\n.\\install.ps1 : File C:\\install.ps1 cannot be loaded because running scripts is disabled on this system. For more information, see about_Execution_Policies at https:/go.microsoft.com/fwlink/?LinkID=135170.\nAt line:1 char:63\n+ ... ://vba-blocks.com/install.ps1 -out install.ps1; .\\install.ps1 v0.2.10\n+                                                     ~~~~~~~~~~~~~\n    + CategoryInfo          : SecurityError: (:) [], ParentContainsErrorRecordException\n    + FullyQualifiedErrorId : UnauthorizedAccess\n```\n\n**When does this issue occur?**\n\nIf your systems' [ExecutionPolicy](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_execution_policies) is `Undefined` or `Restricted`.\n\n**How can this issue be fixed?**\n\nAllow scripts that are downloaded from the internet to be executed by setting the execution policy to `RemoteSigned`:\n\n```powershell\nSet-ExecutionPolicy RemoteSigned -Scope CurrentUser -Force\n```\n\u003c/details\u003e\n\n---\n\n_Based on the great work on [deno_install](https://github.com/denoland/deno_install)_","funding_links":[],"categories":["PowerShell"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvba-blocks%2Finstaller","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvba-blocks%2Finstaller","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvba-blocks%2Finstaller/lists"}