{"id":22279366,"url":"https://github.com/shortarrow/pscmb","last_synced_at":"2026-05-02T15:33:10.733Z","repository":{"id":46181916,"uuid":"411580727","full_name":"ShortArrow/PSCMB","owner":"ShortArrow","description":"Powershell Context Menu Booster","archived":false,"fork":false,"pushed_at":"2022-05-07T05:07:02.000Z","size":180,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-25T03:08:38.173Z","etag":null,"topics":["powershell","windows"],"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/ShortArrow.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-09-29T07:54:59.000Z","updated_at":"2023-01-08T21:40:39.000Z","dependencies_parsed_at":"2022-08-30T10:40:43.854Z","dependency_job_id":null,"html_url":"https://github.com/ShortArrow/PSCMB","commit_stats":null,"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShortArrow%2FPSCMB","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShortArrow%2FPSCMB/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShortArrow%2FPSCMB/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShortArrow%2FPSCMB/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ShortArrow","download_url":"https://codeload.github.com/ShortArrow/PSCMB/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245521029,"owners_count":20628997,"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":["powershell","windows"],"created_at":"2024-12-03T15:19:10.343Z","updated_at":"2026-05-02T15:33:10.701Z","avatar_url":"https://github.com/ShortArrow.png","language":"PowerShell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# README\n\n## **PSCMB** (Powershell Context Menu Booster)\n\nThis software extends the Windows context menu. And a tool created with powershell. We are aiming for something as powerful as the right head of Cerberus.\n\n## **Features**\n\nThese features can use from PSCMB or SendTo on contextmenu.\nLet me know if you come up with a convenient and versatile right-click feature. I would appreciate it if you could make a pull request.\n\n### **Make multi zips**\n\nCreate multiple zip files from multiple files or folders. This will create a zip file with the same qty as the original file or folder selected at run.\n\n### **Make multi zips with password**\n\nThe basics are the same as the above command, and you can also assign a password.\n\n### **Make multi 7zips**\n\nCreate multiple 7zip files from multiple files or folders. This will create a 7zip file with the same qty as the original file or folder selected at run.\n\n### **Make multi 7zips with password**\n\nThe basics are the same as the above command, and you can also assign a password.\n\n### **Copy names of files or folders to clipboard**\n\nCopy multiple names of selected files or folders to the clipboard. Great for pasting a list into Excel, Google spread sheets, etc. like as bellow.\n\n```\nC:/Users/who/Documents/example/test.txt\nC:/Users/who/Documents/example/docs/\nC:/Users/who/Documents/example/index.html\nC:/Users/who/Documents/example/overview.html\n```\n\ninside of clipboard after this command :\n\n```\ntest.txt\ndocs\nindex.html\noverview.html\n```\n\n### **Copy names of files or folders to clipboard without extensions**\n\nCopy multiple names of selected files or folders to the clipboard. and then without extensions. like as bellow.\n\ntarget files :\n\n```\nC:/Users/who/Documents/example/test.txt\nC:/Users/who/Documents/example/docs/\nC:/Users/who/Documents/example/index.html\nC:/Users/who/Documents/example/overview.html\n```\n\ninside of clipboard after this command :\n\n```\ntest\ndocs\nindex\noverview\n```\n\n## **Requirement**\n\n* Powershell 6 or Later\n* Windows 10 or Later\n* 7Zip\n\n## **Installation**\n\nDownload archive from release page, And unzip.\nThen, please run `./bin/install.cmd` with administrator privileges or `install.lnk`\n\n## **Uninstallation**\n\nDownload archive from release page, And unzip.\nThen, please run `./bin/uninstall.cmd` with administrator privileges or `uninstall.lnk`\n\n## **Contribute**\n\nFirst action is `git clone`.\n\n### **BurntToast**\n\nRun `cd BurntToast`.\nAnd run as described below, to get BurntToast.\n\n```bash\ngit init BurntToast\ngit config core.sparsecheckout true\ngit remote add origin https://github.com/Windos/BurntToast.git\necho BurntToast \u003e .git/info/sparse-checkout\ngit pull origin main \n```\n\n### **context-menu-launcher**\n\nGet process instance manager, like this.\n\n```powershell\nmkdir SingleInstance\n$url = https://github.com/zenden2k/context-menu-launcher/releases/latest/download/singleinstance.exe\n$file = ./SingleInstance/singleinstance.exe\nInvoke-WebRequest -Uri $url -OutFile $file\n```\n\nOr this.\n\n```bash\nmkdir SingleInstance\nif curl -s -L \"https://github.com/zenden2k/context-menu-launcher/releases/latest/download/singleinstance.exe\" -o \"./SingleInstance/singleinstance.exe\"; then\n    echo downloaded\nfi\n```\n\n### **7zip**\n\nplease install 7zip and add to `path` environment variable.\n\nif you use chocolatey you can install just as bellow.\n\n```powershell\nchoco install 7zip\n```\n\n## **Usage**\n\nSelect multiple files and select Menu from the right-click menu, like demo after bellow.\n\n### **Demo**\n\n#### for files context menu\n\n![img](img/demo_forfiles.png)\n\n#### for folders context menu\n\n![img](img/demo_forfolders.png)\n\n#### for sendto context menu\n\n![img](img/demo_sendto.png)\n\n## **Author**\n\n[@ShortArrow](https://github.com/ShortArrow)\n\n## **License**\n\nUnder [MIT license](https://en.wikipedia.org/wiki/MIT_License).\n\n## **Release**\n\nFirst action is `git clone`. next, as described below.\n\n```bash\ngit tag -a v1.0.0 -m 'version 1.0.0'\ngit push origin v1.0.0\n```\n\nThen added tag, run github actions. add `release.zip` to releases page.\n\n## **Dependency**\n\n- [Powershell](https://github.com/PowerShell/PowerShell)\n- [BurntToast](https://github.com/Windos/BurntToast)\n- [context-menu-launcher](https://github.com/zenden2k/context-menu-launcher)\n- [7z](https://sourceforge.net/projects/sevenzip/files/7-Zip/)\n\n### **Special thanks**\n\n- [@Windos](https://github.com/Windos)\n    - [BurntToast](https://github.com/Windos/BurntToast) Owner\n- [@zenden2k](https://github.com/zenden2k)\n    - [context-menu-launcher](https://github.com/zenden2k/context-menu-launcher) Owner\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshortarrow%2Fpscmb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshortarrow%2Fpscmb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshortarrow%2Fpscmb/lists"}