Jump to content


This is a ready-only archive of the InstallSite Forum. You cannot post any new content here. / Dies ist ein Archiv des InstallSite Forums. Hier können keine neuen Beiträge veröffentlicht werden.
Photo

Too long delay before file copy


3 replies to this topic

savoyesmith

savoyesmith
  • Full Members
  • 1 posts

Posted 29 August 2011 - 19:31

Hi,
Im using InstallShield 12 with an install script, and no MSI.
I see a delay at the file copy step, right when the status dialog opens, but before file copy occurs. The delay is about 1 minute, then the status bar begins moving.
What is hapenning at that time? Can I reduce this delay?
Are files being copied to a temp and cache folder?
When does decompression happed for each feature?
My install is large at around 700MB installed. I have just 2 cab files. Data2.cab is 350MB (compressed), Data1.cab is 23MB. Would more .cab files help?
Thanks,
Smithy

Taco Bell

Taco Bell

    IS6 Expert

  • Moderators
  • 1,281 posts

Posted 30 August 2011 - 11:26

I would recommend using SysInternals' Process Monitor along with the IS debugger to better understand where/how that time is being spent.
user posted image

Stefan Krueger

Stefan Krueger

    InstallSite.org

  • Administrators
  • 13,269 posts

Posted 17 September 2011 - 14:24

Could be the creation of a system restore point. You can put
Disable( PCRESTORE );
in you OnBegin event handler to turn this off.

Taco Bell

Taco Bell

    IS6 Expert

  • Moderators
  • 1,281 posts

Posted 19 September 2011 - 14:19

Good suggestion Stefan.
user posted image