Thanks support,
that will be very useful, not only for me I believe.
In the meantime I managed to make it work.
HERE MY SOLUTION FOR THE RECORDS:
I installed the 7-zip on the server
Added in the PATH enviromental Variable of windows the path of the installation folder of 7-zip
Created the Process (using Session variables for the path and filename) with following rules:
RULE 1:
MySession.TempPath=SystemSettings.RepositoryPath+'temp\'+REPLACE_PATTERN(ThisAppointment.Subject, ' ', '_')+'\'
MySession.TempFileName=SystemSettings.RepositoryPath+'temp\'+REPLACE_PATTERN(ThisAppointment.Subject, ' ', '_')+'\'+REPLACE_PATTERN(ThisAppointment.Subject, ' ', '_')+'_'+AS_STRING(CURRENT_DATE)+'.7z'
RULE 2:
EXECUTE PROGRAM '7z a '+MySession.TempFileName+' '+MySession.TempPath
RULE 3:
IMPORT DOCUMENT MySession.tempfile FROM MySession.TempFileName
DISPLAY DOCUMENT MySession.tempfile IN WINDOW
RULE 4:
DELETE FILE MySession.TempPath
DELETE MySession.TempFileName
DELETE MySession.tempfile
IMPORTANT!: z-zip will mess around if there are spaces in the file path or file name, so I had to substitute them with underscore.
Cheers
Sergio