Hi there,
I am new to Advanced Installer and need a project created so that I can see how it is done. I have a project in mind and notes to go with what I need. How much you guys charge ?
Could you please give me more details about this?I have read through some of the guides and looked at the advice given in another thread and I got somewhat lost as to where I put there statements that I got told it could do.
For this you can create a custom action in the Custom Actions page. For example you can use a Launch file or open URL action to launch "servermanagercmd" with a custom command line. You can condition the action to run only on Windows Server 2008 R2 by using the "VersionNT" property. For example, you can set the "Expression" field in the "Execution Condition" section from the Custom Action Properties pane to:i) If Windows Server 2008 R2 then install Net-Framework via servermanagercmd -install Net-Framework
Code: Select all
VersionNT = 601
This can be done by adding .NET Framework 3.5 as a feature-based prerequisite. After that, in the Organization page you can select the prerequisite feature and set a conditional install level for it based on the VersionNT property. For example, you can set these conditional install levels:ii) If NOT Windows Server 2008 R2 then install .Net Framework 3.5 via dotnetfxsetup35.exe
Code: Select all
VersionNT <> 601 1
VersionNT = 601 0
You can add vcredist64, vcredist32, DT64 and DT32 as prerequisites in the "Software Prerequisites" tab of the "Prerequisites" page. In the Install Conditions tab of the "New Prerequisite" dialog you can set these launch conditions:b) Detect Windows x64 Bit
i) Install vcredist64 & vcredist32 & DT64
ii) If NOT x64 then install vcredist32 & DT32
For this you can create a custom action which uses this condition:a) If Windows Server 2008 (NOT R2) then Install Powershell via c:\windows\system32\servermanagercmd -install Powershell
Code: Select all
VersionNT = 600
For this you can use custom actions, just like above.b) Install Web Server and other roles (R2 & NON R2 Windows Server 2008)
This can be done by using prerequisites and setting the supported Windows versions, like explained above.a) Detect x86 or x64 then run either c:\protect\setup\dt32\setup.exe or c:\protect\setup\dt64\setup.exe
Please note that the OS type is evaluated when the installation starts, it cannot be evaluated after selecting a feature. I'm not sure why you would need to evaluate it after feature selection since the order wouldn't matter. Also, for the common files you can use a separate feature which doesn't use conditional install levels.I need to detect the OS Ver & Type after selecting what feature I am installing and have common files ALWAYS INSTALLED.
Please note that the redistributable packages ("dotnetfx35.exe", "vcredist_x86" etc.) should be added as prerequisites, not as regular files in the "Files and Folders" page. Please note that the User Guide contains the Add JRE or .NET Framework as a prerequisite how-to which may help you.Please find attach aip file. If you coud point me in the right direction I would be greatful.
I'm afraid that we only answer sales and marketing inquiries over the phone - not support questions. This is because answering installer questions takes time, it can't be done "instantly”. Research must be done, issues to be reproduced, answers are looked up, etc.Is it possible to call somone about this ?
Yes, the current features should be used. You may need to reorganize their components according to the installation logic you need, but they provide a good structure for your package.Would I still keep the Features ? Protect Server / Source Server and then common files would just be preqs rather that installed common files ?