Error 1722. There is a problem with this Windows Installer package

pgadmin created the topic: Error 1722. There is a problem with this Windows Installer package
When I try to install, the installation process nearly finishes and I get this error:

Error 1722. There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor.

After which, the installer immediately reverses and rolls back. I can’t find any information on this error 🙁

I’m running Windows 7 Ultimate, exceed all of the requirements for Office 2010.

Tagged :

This program might not have installed correctly.

pgadmin created the topic: This program might not have installed correctly.
Hi,

due to Windows 7 there have been a lot of “false” notifications for our products: “this program might not have installed correctly”. I had a little research and now I am aware of the problem. Since it is caused by a missing registry entry I was wondering when Install Aware will provide a Version that will fix this issue.

I am using Install Aware 8.

pgadmin replied the topic: Re: This program might not have installed correctly…
This false-positive is already fixed in InstallAware 9.

Tagged :

Easter Egg inside installers made by InstallAware Studio

msiexpert created the topic: Easter Egg inside installers made by InstallAware Studio
Hello!

I have a request to R&D to remove “Easter Egg” from InstallAware. Our test team have found this, as this was found by our customers and they don’t like it. Maybe it was someone’s joke.

The screenshots are applied.

To reproduce this, just click on the top left corner of the window to show context menu, then “About InstallAware Wizard”. After that you’ll see the MessageBox that has a text on the bottom about “Ozgecan Turna”. After clicking OK you can see another MessageBox with a picture and some text (i presume a poem on Turkish).

With all our respect to Ozgecan Turna, I suppose this shouldn’t be inside the licensed version of the product (I wouldn’t mind if it stay on Trial version). My boss suppose that this is not acceptable inside commercial products.

Tagged :

INNO Setup: Defining Configuration Files in Setup Package

msiexpert created the topic: INNO Setup: Defining Configuration Files in Setup Package

This is probably a simple fix but I can’t seem to wrap my head around it. I have an app to install that will need the user to select 1 of 3 possible INI files to accompany the install. I could easily do 3 different setups, each using a different INI but I would like to simplify matters and just give the user the choice of INI at the time of install. The INI files have the same name, so when packaged they will have to be given different names. Once the user selects which INI to install, it would be extracted into the app directory and renamed. Is there any way to do this?

Thanks for your help!

msiexpert replied the topic: Re: INNO Setup: Defining Configuration Files in Setup Package
A possible way is to create a [Run] section (or add to it) and execute (AfterInstall: parameter) a Pascal routine that delete the extra ini files and rename the remaining one

Tagged :

Inno Setup script example

msiexpert created the topic: Inno Setup script example
I have been working on an inno script this past week, which now appears to be
working correctly. I thought I would post it to the list server so it will
become part of the nug archives for future reference.

TimberValue is a program written on a Mac, and is currently being distributed
on both the Mac and Windows platforms. It creates two files: 1) a data file
with the extension .tvd and 2) a license file with the extension .tvl

Both of these files are RB database files.

Files with the .tvd extension are named by the user, and have the icon
TmbrDatabase.ico
Files with the .tvl extension are named TmbrLicense.tvl and have the icon
TmbrLicense.ico

Icons were created using the Mask-R-Aid program.

My inno setup data is contained in a folder called “Inno Setup Data” which I
have placed on the Windows desktop. The path to this folder is C:\Documents and
Settings\TJ Hanson\Desktop\Inno Setup Data. The icons are contained in a folder
called “Icons” within the “Inno Setup Data” folder.

One quirk I noticed is that the icons may not appear until you reboot the
Windows platform. I assume Windows wants a reboot before it looks at the new
registry items.

If anyone sees anything wrong, please let me know. I haven’t noticed any
problems. Icons appear as they should; the program launches when a database
icon is double clicked; the program launches when a database icon is dragged on
top of the program icon; and the SampleProject.tvd file brought in by the inno
script is given the correct database icon.

The whole script was too big for posting, so below are the Tasks, Files, Icons
and Registry sections

Thanks to everyone who may have helped with this script. TJ
=============================================================

[Setup]

[Languages]

[Tasks]
Name: “desktopicon”; Description: “{cm:CreateDesktopIcon}”; GroupDescription:
“{cm:AdditionalIcons}”; Flags: unchecked

[Files]
Source: “C:\Documents and Settings\TJ Hanson\Desktop\Inno Setup
Data\TimberValue.exe”; DestDir: “{app}”; Flags: ignoreversion
Source: “C:\Documents and Settings\TJ Hanson\Desktop\Inno Setup
Data\TimberValue Libs\*”; DestDir: “{app}\TimberValue Libs”; Flags:
ignoreversion recursesubdirs createallsubdirs
Source: “C:\Documents and Settings\TJ Hanson\Desktop\Inno Setup Data\Icons\*”;
DestDir: “{app}\Icons”; Flags: ignoreversion recursesubdirs createallsubdirs
Source: “C:\Documents and Settings\TJ Hanson\Desktop\Inno Setup
Data\andale32.exe”; DestDir: “{app}”; Flags: ignoreversion
Source: “C:\Documents and Settings\TJ Hanson\Desktop\Inno Setup
Data\arial32.exe”; DestDir: “{app}”; Flags: ignoreversion
Source: “C:\Documents and Settings\TJ Hanson\Desktop\Inno Setup
Data\ReadMe.rtf”; DestDir: “{app}”; Flags: ignoreversion
Source: “C:\Documents and Settings\TJ Hanson\Desktop\Inno Setup
Data\SampleProject.tvd”; DestDir: “{app}”; Flags: ignoreversion
Source: “C:\Documents and Settings\TJ Hanson\Desktop\Inno Setup Data\SLA.pdf”;
DestDir: “{app}”; Flags: ignoreversion
Source: “C:\Documents and Settings\TJ Hanson\Desktop\Inno Setup Data\User
Manual.pdf”; DestDir: “{app}”; Flags: ignoreversion

[Icons]
Name: “{group}\TimberValue”; Filename: “{app}\TimberValue.exe”
Name: “{group}\{cm:UninstallProgram,TimberValue}”; Filename: “{uninstallexe}”
Name: “{commondesktop}\TimberValue”; Filename: “{app}\TimberValue.exe”; Tasks:
desktopicon

[Registry]
Root: HKCR; Subkey: TimberDatabase\shell\open\command; ValueType: string;
ValueName: ; ValueData: “””{app}\{{TimberValue.exe}”” “”%1″””
Root: HKCR; Subkey: TimberDatabase\DefaultIcon; ValueType: string; ValueName: ;
ValueData: {app}\Icons\TmbrDatabase.ico,0
Root: HKCR; Subkey: TimberDatabase; ValueType: string; ValueName: ; ValueData:
TimberValue Database File; Flags: uninsdeletekey
Root: HKCR; Subkey: .tvd; ValueType: string; ValueName: ; ValueData:
TimberDatabase; Flags: uninsdeletekey

Root: HKCR; Subkey: TimberLicense\shell\open\command; ValueType: string;
ValueName: ; ValueData: “””{app}\{{TimberValue.exe}”” “”%1″””
Root: HKCR; Subkey: TimberLicense\DefaultIcon; ValueType: string; ValueName: ;
ValueData: {app}\Icons\TmbrLicense.ico,0
Root: HKCR; Subkey: TimberLicense; ValueType: string; ValueName: ; ValueData:
TimberValue License File; Flags: uninsdeletekey
Root: HKCR; Subkey: .tvl; ValueType: string; ValueName: ; ValueData:
TimberLicense; Flags: uninsdeletekey

[Run]

Tagged :

Creating Installers for InstallAware Plug-ins?

msiexpert created the topic: Creating Installers for InstallAware Plug-ins?
I’ve created a couple of plug-ins and some extra runtimes for InstallAware that have been quite usefull to me and I thought about making them public.

I’m extracting and parsing this path from the regsitry to find the IA Installation folder.

HKEY_LOCAL_MACHINE\SOFTWARE\MimarSinan\InstallAware\2.0\Plug-Ins\(Un)Install MSI Setup

Is there a more direct way to find the path? Also where can I find out what Edition is installed as I am not sure which ones support scripting and which ones don’t. If the Ediition does not support scripting, should the insstaller not allow plug-in installation?

Using the current SDK, what versions of IA can I expect these plug-ins to work with?

msiexpert replied the topic: Re: Creating Installers for InstallAware Plug-ins?
That’s actually the way InstallAware plug-in installers themselves do it! Smart move. Note that you can actually install plug-ins in any folder you want. InstallAware doesn’t care about the location, since it reads it from the registry.

I wouldn’t worry about the edition. You can always install plug-ins into every edition. Someone might later come up with a runtime update pack which actually uses your plug-ins. Since these are accessible from Express, I’d allow users of all editions to install. Express is the only edition that lacks scripting, by the way.

With the current SDK, your plug-ins will work with InstallAware 2.0 and above!

Tagged :

Registering DLLs and MergeMod in batch mode

msiexpert created the topic: Registering DLLs and MergeMod in batch mode
Hello,

I moved to Windows 7 from WinXP and try to build my product on the new platform.
I have several DLLs, which are auto-registered during setup, using ‘Extract registration info from native library’ option with Synchronization at Buildtime.
When I run Advanced installer in normal mode, it build the package without errors, but DLLs are not registered.
When I run it in ‘Run as administrator’ mode they are registered correctly, but then I have another problem.

When I build the package via command line: AdvancedInstaller.com /build myproduct.aip
I’m receiving the following error:
‘Exception – You do not have MergeMod COM server installed on your computer. Please read in Help how to install it.’

I’ve installed all possible SDKs, tried to register several different versions of mergemod.dll (they registered successfully), but nothing helped.

1. Do I really have to run AI in administrative mode?
2. How can I force it work in batch mode?

Tagged :

Hiring for Application Repackaging in Bangalore for Wipro Technology

created the topic: Hiring for Application Repackaging in Bangalore for Wipro Technology
FROM: gayatri.n@anlageHRO.com

Greetings for the day!
We are a Recruitment organization with specialization in IT recruitments and all our clients are the Top IT Giants.
One of our clients is a TOP MNC Giant .It is a World’s No.1 Product based Company.

We are Looking for Professional working on Application Packaging for Wipro Technology in Hyderabad.

Skills & Experience Required
:
Skills: Windows Installer – L1 , Packaging tools – L3 ,
Experience Required(Description) : In Wipro Technologies we are looking for Windows Installer – L1 – Create Windows installer Installation packages Knowledge of Components, Features Application advertisement Create custom actions and customise applications for Installation on demand. Knowledge of commandline options Administrative Installation Per-machine Installations Per-user Installations
Roles & Responsiblities
:
In Wipro Technologies you would be responsible for Application Packaging Engineer – Works on applications that is extremely complex in nature where a high degree of independent judgment, initiative and technical knowledge are required to resolve problems. Works independently and has ability to handle most unique situations. Ownes thechnical assessment, troubleshooting, and coordinating with customer teams for any technical dicussions. Participates and provides inputs towards implementation of various hardware and software policies and procedures. Be able to learn new technologies and then train and lead resources on the technical procedures required for deployment . Acts as a team lead/mentor for new joinees, participates in training sessions as a faculty for freshers.

corrected.** Exhibit strong communication skills.
** Articulate in both written and verbal communication.
** Display propensity for detail and comprehensiveness of content.
** Good Technical handling Skills.
In case your profile matches the requirement then request you to mail your resume to strictly to gayatri.n@anlageHRO.com . along with down mention details:
WE WILL MAKE SURE YOUR PROFILE IS KEPT HIGHLY CONFIDENTIAL AND ONLY AFTER YOUR CONFIRMATION WE ARE GO! ING TO PROCESS YOUR PAPER FOR ANY OPPURTUNITIES
Will call you as soon as we receive your profile to further update you on the requirement
Can we also request you also to refer us to some of your friends / colleagues who will be interested to apply for this position
PLZ TREAT THIS MAIL AS VERY URGENT.
Best regards,
Gayatri Nagrani
Resource Executive
gayatri.n@anlageHRO.com
www.anlageHRO.com
T/F +91 22 40011334

Anlage HRO Services
Mumbai ~ Bangalore ~ Noida

Anlage Infotech (India) P. Ltd.
175 B SDF VI SEEPZ Andheri (E)
Mumbai 400 096 INDIA

Tagged :

Excellent opening for Application Packaging both Level 1 and Level 2 both for Ch

created the topic: Excellent opening for Application Packaging both Level 1 and Level 2 both for Ch
froM: cv@headsnminds.com

Hi,

We are currently looking for candidates with work experience of more than 1+ yrs having
experience in Application Packaging for Chennai, Hyderabad location, opportunity with our Client an
IT consulting firm CMM 5 level company.

Skill: Application Packaging

Experience: 1- 8 yrs

Job Location: Chennai /Hyderabad

Interview Location & day :- Chennai , (Saturday 13, 2010)

L1 – Application Packaging
§ The candidate should have a minimum of 1+ years experience in creating windows
installer packages for W2K, XP & Vista .
§ Should know how to create MSI/MST/MSP & have sound knowledge on troubleshoot
tools like processmon, regmon, filemon, etc.
§ Should have sound knowledge on Merge modules, Custom Actions sequencing & MSI
Tables.
§ Should have basic VB Scripting knowledge.
Should have worked in InstallShield or Wise tools.

L2 – Application Packaging
The candidate should have a minimum of 4+ years experience in creating windows
installer packages for W2K, XP & Vista .
§ Should be familiar with Technical Review & Peer Review Process.
§ Should know how to create MSI/MST/MSP & have sound knowledge on
troubleshoot tools like processmon, regmon, filemon, etc.
§ Should have sound knowledge on Merge modules, Custom Actions
sequencing & MSI Tables.
§ Should be able to create VB Scripting.
§ Should have worked in InstallShield or Wise tools

If you find suitability for the requirement, Please forward your updated profile with

Details mentioned below

Total experience:-
Relevant Exp :-
Current company /Location :-
Current Salary:-
Expect Salary:-
Notice Period:-
Date of birth:
PAN Card No :-
Reason for Leaving:
Ready for rotation shifts
Production support environment:
Preferred location :-

If interested, please send us your updated resume to cv@headsnminds.com.

Also do forward the requirement to your friends looking out and open for Mumbai & Chennai as job location.

about Our Client:
Our client, a corporation among the top Indian IT Companies, is a global provider of
consulting, IT Services, and outsourced R&D, infrastructure outsourcing and business
process services. They are the first PCMM Level 5 and SEI CMM Level 5 certified IT
Services Company in the world. They provide comprehensive IT solutions and services,
including systems integration, information systems outsourcing, package
implementation, software application development and maintenance, and research and
development services to businesses globally.

Also forward this mail to your friends & colleagues

Thanks and Regards,

Pravin

headsnminds
Management Consultancy
0091 22 64573440
0091 22 64573441/42/43/44
www.headsnminds.com
cv@headsnminds.com

Tagged :