Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ShortArrow/PSCMB
Powershell Context Menu Booster
https://github.com/ShortArrow/PSCMB
powershell windows
Last synced: 3 months ago
JSON representation
Powershell Context Menu Booster
- Host: GitHub
- URL: https://github.com/ShortArrow/PSCMB
- Owner: ShortArrow
- License: mit
- Created: 2021-09-29T07:54:59.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-05-07T05:07:02.000Z (over 2 years ago)
- Last Synced: 2024-05-22T22:35:09.476Z (6 months ago)
- Topics: powershell, windows
- Language: PowerShell
- Homepage:
- Size: 176 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - ShortArrow/PSCMB - Powershell Context Menu Booster (PowerShell)
README
# README
## **PSCMB** (Powershell Context Menu Booster)
This 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.
## **Features**
These features can use from PSCMB or SendTo on contextmenu.
Let 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.### **Make multi zips**
Create 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.
### **Make multi zips with password**
The basics are the same as the above command, and you can also assign a password.
### **Make multi 7zips**
Create 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.
### **Make multi 7zips with password**
The basics are the same as the above command, and you can also assign a password.
### **Copy names of files or folders to clipboard**
Copy multiple names of selected files or folders to the clipboard. Great for pasting a list into Excel, Google spread sheets, etc. like as bellow.
```
C:/Users/who/Documents/example/test.txt
C:/Users/who/Documents/example/docs/
C:/Users/who/Documents/example/index.html
C:/Users/who/Documents/example/overview.html
```inside of clipboard after this command :
```
test.txt
docs
index.html
overview.html
```### **Copy names of files or folders to clipboard without extensions**
Copy multiple names of selected files or folders to the clipboard. and then without extensions. like as bellow.
target files :
```
C:/Users/who/Documents/example/test.txt
C:/Users/who/Documents/example/docs/
C:/Users/who/Documents/example/index.html
C:/Users/who/Documents/example/overview.html
```inside of clipboard after this command :
```
test
docs
index
overview
```## **Requirement**
* Powershell 6 or Later
* Windows 10 or Later
* 7Zip## **Installation**
Download archive from release page, And unzip.
Then, please run `./bin/install.cmd` with administrator privileges or `install.lnk`## **Uninstallation**
Download archive from release page, And unzip.
Then, please run `./bin/uninstall.cmd` with administrator privileges or `uninstall.lnk`## **Contribute**
First action is `git clone`.
### **BurntToast**
Run `cd BurntToast`.
And run as described below, to get BurntToast.```bash
git init BurntToast
git config core.sparsecheckout true
git remote add origin https://github.com/Windos/BurntToast.git
echo BurntToast > .git/info/sparse-checkout
git pull origin main
```### **context-menu-launcher**
Get process instance manager, like this.
```powershell
mkdir SingleInstance
$url = https://github.com/zenden2k/context-menu-launcher/releases/latest/download/singleinstance.exe
$file = ./SingleInstance/singleinstance.exe
Invoke-WebRequest -Uri $url -OutFile $file
```Or this.
```bash
mkdir SingleInstance
if curl -s -L "https://github.com/zenden2k/context-menu-launcher/releases/latest/download/singleinstance.exe" -o "./SingleInstance/singleinstance.exe"; then
echo downloaded
fi
```### **7zip**
please install 7zip and add to `path` environment variable.
if you use chocolatey you can install just as bellow.
```powershell
choco install 7zip
```## **Usage**
Select multiple files and select Menu from the right-click menu, like demo after bellow.
### **Demo**
#### for files context menu
![img](img/demo_forfiles.png)
#### for folders context menu
![img](img/demo_forfolders.png)
#### for sendto context menu
![img](img/demo_sendto.png)
## **Author**
[@ShortArrow](https://github.com/ShortArrow)
## **License**
Under [MIT license](https://en.wikipedia.org/wiki/MIT_License).
## **Release**
First action is `git clone`. next, as described below.
```bash
git tag -a v1.0.0 -m 'version 1.0.0'
git push origin v1.0.0
```Then added tag, run github actions. add `release.zip` to releases page.
## **Dependency**
- [Powershell](https://github.com/PowerShell/PowerShell)
- [BurntToast](https://github.com/Windos/BurntToast)
- [context-menu-launcher](https://github.com/zenden2k/context-menu-launcher)
- [7z](https://sourceforge.net/projects/sevenzip/files/7-Zip/)### **Special thanks**
- [@Windos](https://github.com/Windos)
- [BurntToast](https://github.com/Windos/BurntToast) Owner
- [@zenden2k](https://github.com/zenden2k)
- [context-menu-launcher](https://github.com/zenden2k/context-menu-launcher) Owner