Is SmartVersion from Gilles Vollant free? If not, could someone advise on something free that can be used to compress/decompress?
only the GUI is shareware - a License is for all Programms from gvollant (1 for all !!!) - Winimage, Smartversion, etc. - realy great offer the Smartversion Console version is free to use (no license required)
From @gvollant himself: https://forums.mydigitallife.net/threads/smartversion-tools-scripts.79415/page-24#post-1755738 "the gui source are at src/wdifstrm folder of github repo" I'd have bought such a 1 for all license long ago, but there's simply no way for me. I have neither a CC nor PayPal, and cheques are beyond me. My payment options are limited.
Is there is any tool to test svf files in bulk instead of me dropping folder by folder or one by one and use arrows to see if it will give me error or not >? please help.
Maybe not exactly what you are looking for but this script by @GezoeSloog could speed up your task? (To be clear this will just batch extract all svf files in the folder. Here I assume that if there is something wrong with the svf file it won't extract.) Note that _smv.exe must be placed in the same directory as the script. You could even do recursively with a nested for if you have multiple folders to unpack. Code: @echo off for /r %%i in (*.svf) do _smv.exe x "%%~nxi" -br . echo ------------------------------------------------------------------------------- ) REM thnx @ GezoeSloog
Thanks , I don't want to extract the svf files i have , I don't have spaces to extract all of them , I just need to test it , one by one , with a batch to test if it will be open or do a quick test , if anyone have another idea please help , thank you for trying.
Here is an other solution based on the previous batch. Code: for %%a in (%*) do "C:\Program Files\SmartVersion\smv.exe" x %%a -br . With this you can drop one or many version files into the script and it will extract them for you. So if you don't have enough space for all of them but you could lets say do 5 or 10 at a time this is for you. Also this assumes that you have smart version installed in program files. Just put your path there.