Modificati riferimenti da "Setup.exe" a "SetCmpUp.exe" in modo da evitre i problemi di protezione di Windows 7

git-svn-id: svn://10.65.10.50/branches/R_10_00@22674 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
guy 2012-06-18 14:02:41 +00:00
parent 7e8e6a0609
commit 8a6dccdde8
3 changed files with 5 additions and 5 deletions

View File

@ -1449,7 +1449,7 @@ bool TMenu_application::test_programs()
//mette il flag di installing
set_installing_flag();
//lancia setup in modalita' aggiornamento client e si suicida! (banzai!!)
TExternal_app app("setup\\setup.exe -uc");
TExternal_app app("setup\\SetCmpUp.exe -uc");
app.run(true, 0, false);
}
}

View File

@ -43,7 +43,7 @@ struct TFind_node_data
struct TFind_string_data
{
TString80 _str, _best;
TString256 _str, _best;
TAssoc_array* _ignore_list;
double _score;
};

View File

@ -1685,9 +1685,9 @@ void TInstaller_mask::install_selection()
update_disk_and_web_path(); //aggiorna l'install.ini
//lancia setup in modalita' aggiornamento da disco
if (test_station_type() == 3)
_setup_run = xvt_sys_execute("setup\\setup.exe -uc", false, false) !=0;
_setup_run = xvt_sys_execute("setup\\SetCmpUp.exe -uc", false, false) !=0;
else
_setup_run = xvt_sys_execute("setup\\setup.exe -ud", false, false) !=0;
_setup_run = xvt_sys_execute("setup\\SetCmpUp.exe -ud", false, false) !=0;
}
//richiesto aggiornamento via web del modulo SY da manutenzione/installazione moduli!
else
@ -1731,7 +1731,7 @@ void TInstaller_mask::install_selection()
}
update_disk_and_web_path(); //aggiorna l'install.ini
//lancia setup in modalita' aggiornamento web
_setup_run = xvt_sys_execute("setup\\setup.exe -uw", false, false) != 0;
_setup_run = xvt_sys_execute("setup\\SetCmpUp.exe -uw", false, false) != 0;
}
if (_setup_run) //se riesce a lanciare setup.exe...
{