This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Re: Execute Prerequisite condition only if Internet connection is available
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jan 29, 2014
02:52 AM
Execute Prerequisite condition only if Internet connection is available
I need to include .Net 3.5 framework pre-requisite for Windows 8 /8.1.
But in some machines if internet connection is not there the setup will go on and on and after 10-15 mins it gives error whose
error code means No active internet connection,
Is there any way to check in the above Pre-requisite if internet connection is available prior to launch pre-requsite.
So that I can show a message to user "Need to have internet connection"
But in some machines if internet connection is not there the setup will go on and on and after 10-15 mins it gives error whose
error code means No active internet connection,
Is there any way to check in the above Pre-requisite if internet connection is available prior to launch pre-requsite.
So that I can show a message to user "Need to have internet connection"
(2) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jan 29, 2014
03:13 AM
As condition of prereq. you can check a registry value.
Write an small app which checks Internet Connection and writes result temporär in reg.
Start this app as very first prereq.
The install conditions for .net supplement of checking for the new temp reg value.
Write an small app which checks Internet Connection and writes result temporär in reg.
Start this app as very first prereq.
The install conditions for .net supplement of checking for the new temp reg value.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jan 31, 2014
05:23 AM
Thanks. Is there any other way to get return values from other pre-requisites instead of updating in registry?