csd214
02-23-2005, 10:09 AM
During development my project has started to be nasty. The Setup Log ends like this:
Success Run project event: On Post Install
Success Display screen: Finished Install
Success Delete image file: C:\DOCUME~1\user\LOCALS~1\Temp\_ir_sf7_temp_0\IRIM G1.JPG
Success Delete image file: C:\DOCUME~1\iser\LOCALS~1\Temp\_ir_sf7_temp_0\IRIM G2.JPG
Success Delete image file: C:\DOCUME~1\user\LOCALS~1\Temp\_ir_sf7_temp_0\IRIM G3.JPG
Success Delete primer file: C:\DOCUME~1\user\LOCALS~1\Temp\_ir_sf7_temp_0\Firm aLogo.jpg
Success Delete plugin file: C:\DOCUME~1\user\LOCALS~1\Temp\_ir_sf7_temp_0\LuaC OM.lmd
Error Setup did not complete successfully (5)
Missing: Success Run project event: On Shutdown
At last I discovered what can be seen from the log: The On Shutdown actions are skipped! That does not mean anything for the install (everything is OK), but it destroys my uninstall procedure. In On Shutdown I have these commands:
tItem_Data = UninstallData.GetItem(UNINDATA_MAIN, "EXELocation");
cUninstallFile = tItem_Data.Value
SessionVar.Set("%UninstallFile%", cUninstallFile);
I need the session variable during the uninstall process.
There is no other error messages in the setup log (write mode: Extended errors). I have tried to remove the actions added today. So far to no help. The behaviour is project dependent.
Weird! What's going on?
Success Run project event: On Post Install
Success Display screen: Finished Install
Success Delete image file: C:\DOCUME~1\user\LOCALS~1\Temp\_ir_sf7_temp_0\IRIM G1.JPG
Success Delete image file: C:\DOCUME~1\iser\LOCALS~1\Temp\_ir_sf7_temp_0\IRIM G2.JPG
Success Delete image file: C:\DOCUME~1\user\LOCALS~1\Temp\_ir_sf7_temp_0\IRIM G3.JPG
Success Delete primer file: C:\DOCUME~1\user\LOCALS~1\Temp\_ir_sf7_temp_0\Firm aLogo.jpg
Success Delete plugin file: C:\DOCUME~1\user\LOCALS~1\Temp\_ir_sf7_temp_0\LuaC OM.lmd
Error Setup did not complete successfully (5)
Missing: Success Run project event: On Shutdown
At last I discovered what can be seen from the log: The On Shutdown actions are skipped! That does not mean anything for the install (everything is OK), but it destroys my uninstall procedure. In On Shutdown I have these commands:
tItem_Data = UninstallData.GetItem(UNINDATA_MAIN, "EXELocation");
cUninstallFile = tItem_Data.Value
SessionVar.Set("%UninstallFile%", cUninstallFile);
I need the session variable during the uninstall process.
There is no other error messages in the setup log (write mode: Extended errors). I have tried to remove the actions added today. So far to no help. The behaviour is project dependent.
Weird! What's going on?