Hi, I tried to create a button via Standard Function that archives a single folder into a 7z file and then deletes it.
@async "C:\Program Files\7-Zip\7z.exe" -sdel a {destpath}\{file} {sourcepath}\{file}
It works fine but I would also like to not see the CLI window (sorry, CMD window
I tried to a "/min" at the end but this doesn't work.
Any idea?
An additional question is: I would like to only execute this when EXACTLY one folder is selected. How can I do this?
btw. I am using async because afterwards (or rather at the same time) I want to count the MB of this folder with:
GetSizes {sourcepath}\{file}
Thanks for your help.
Cheers from Germany
Bodo