Hi to any C-O-M-O-D-O's addicted from a new user!!Well.. I've appreciated many intersting things in this forum. Sometimes confused.. but after having spent many times reading your usefull suggestions, now i'd like to contribute me too with my IMHO when possible. Considering my never achieve IT knowledge you can stay very relaxed..

Anyway now.. since i can't install CFP 3 on my little Windows 2003 Server Standard (eMule dedicated) and having done many rules for test in order to improve my home network privacy and security ..i decided to resum thi intersting post adding my personal "evolution" and Italian translation of your fantastic Backup Script v1.5 (at the moment seems not to be the italian version of th v1.5 batch file, even if the italian version of the great Pandlouk is a very good starting point..
Many thanks to all people sharing time and energy to this fantastic COMODO prodouct.. hoping will be free for ever!
(at the end of this post you will find my italian batch version of script v1.5)
Best Regards.
fAZernERo
these are the lines inside:
[ at ]echo off
cls
color A
echo.
echo ==============================================================================
echo ***************** COMODO Firewall Pro (v2.x) Backup Utility ******************
echo ==============================================================================
echo.
echo.
echo Le impostazioni di Comodo Firewall Pro saranno salvate sul Vostro desktop
echo nella cartella CFP2Backup.
echo Se tale cartella non esiste, questa verra' creata automaticamente.
echo.
echo Per ripristinare le impostazioni salvate, bastera' fare doppio click sul file
echo "CPFRUles.REG" creato da questa stessa utility di backup.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo Premere quasliasi tasto per continuare (Alt+F4 oppure click su "x" per uscire)
pause >nul:
cls
echo.
echo NOTA IMPORTANTE!!
echo -----------------
echo.
echo Ricordate che per ripristinare correttamente le impostazioni, si deve prima
echo disabillitare la protezione del registro all'interno del programma COMODO
echo Firewall Pro (v2.x )
echo.
echo.
echo Per disabillitare tale protezione eseguire i seguenti passaggi:
echo - aprire COMODO Firewall Pro (v2.x)
echo - andare nella sezione "Security"
echo - cliccare su "Advanced"
echo - cliccare su "Configure..." nel riquadro "Miscellanous"
echo - nella finestra che si aprira' assicurarsi di togliere la spunta da
echo "Protect own registry keys and files from unautorized modifications"
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo Premere qualsiasi tasto per iniziare (Alt+F4 oppure click su "x" per uscire)
pause >nul:
rem
cls
rem https://forums.comodo.com/help/script_to_backup_cpf_v24_firewall_settings-t2366.0.html
set BACKUP_ROOT=%USERPROFILE%\Desktop\CFP2Backup
if not exist "%BACKUP_ROOT%" goto DoInit
if not exist "%BACKUP_ROOT%\VerPrec" goto DoInit
goto DoBackup
rem -----
:DoBackup
rem -----
echo.
echo.
echo.
echo.
echo Messa in sicurezza del backup precedente in corso... (attendere prego!)
if exist "%BACKUP_ROOT%\CFP2rules.REG" move /Y "%BACKUP_ROOT%\CFP2rules.REG" "%BACKUP_ROOT%\VerPrec\CFP2rules-OLD.REG"
echo ...copia di sicurezza effettuato!
goto DoSaveReg
rem ---
:DoInit
rem ---
echo.
echo.
echo.
echo Le cartelle per salvare il backup non risultano essere esistenti.
echo Veranno ora create automaticamente.
echo.
echo Creazione delle cartelle necessarie in corso... (attendere prego!)
md "%BACKUP_ROOT%"
md "%BACKUP_ROOT%\VerPrec"
echo ...cartelle necessarie create!
goto DoSaveReg
rem ------
:DoSaveReg
rem ------
echo.
echo.
echo.
echo Salvataggio delle impostazioni di COMODO Firewall Pro (2.x) in corso...
echo (attendere prego!)
REGEDIT /E "%BACKUP_ROOT%\CFP2rules.REG" "HKEY_LOCAL_MACHINE\SYSTEM\Software\Comodo\Personal Firewall"
echo ...salvataggio delle impostazioni effettuato!
goto EoP
rem ------
:EoP
rem ------
echo.
echo.
echo.
echo.
echo.
echo UTILITY DI BACKUP TERMINATA!
echo.
echo.
echo.
echo.
echo.
echo.
echo Premere qualsiasi tasto per chiudere questa finestra
pause >nul: