How can I add an option in the context menu in Windows Explorer to split files by 15 GB chunks?
This possible solution involves editing the registry.
- Press Win+R, type regedit.
- Open
HKEY_CLASSES_ROOT\*\
. Selectshell
. - Right-click
shell
, selectNew
thenKey
. Name itSplit
. - Double-click
Default
and enterSplit to 15GB
. - Right-click the key
Split
, selectNew
thenKey
. Name itcommand
. - Double-click
Default
and enterC:\Program Files\7-Zip\7zG.exe a -v15g "%2%1.zip" "%1"
- Right-click the file you want to split. Select
Split into 15GB
.