I've seen some installer that verifies if the computer has the required resources and installs it automatically if it hasn't.
EX : Kaspersky antivirus installs .net frameworks itself if its not available in the pc.
How to make such installers.?
I've made a project in vb.net in vs2017. Its desktop application and building an installer now.
Tried msi installer but can't find some modules/libraries/data to learn from.
Any example on that according to my requirement would help me.
InstallShield is paid and have a hefty price tag for me.
What would be a convenient way to make one?
Things I want to do with install shield wizard is :
- Check for .net frameworks and install them through installer wizard
- check if the mssql is available
- If mssql is available then fire some queries(this is an optional thing. Not important)
- Enters the registry key and all which all other installers do.
Thanx.