Search found 6 matches

Go to advanced search

by agvinh
Fri Feb 28, 2025 10:17 am
Forum: Common Problems
Topic: The AI_AiBackupRollbackImpersonate action takes long time to complete.
Replies: 1
Views: 7007
 
Jump to post

The AI_AiBackupRollbackImpersonate action takes long time to complete.

I notice that the "Rollback backup" step during the installation process is taking long time to complete.
2025-02-27_17-05-50.png
Upon reviewing the installation log file, I saw that the "AI_AiBackupRollbackImpersonate" and "AI_AiBackupRollback" actions were executed during the "Rollback backup ...
by agvinh
Fri Dec 29, 2017 6:50 am
Forum: Building Installers
Topic: How to prevent the installer to auto remove the current product when run the same installer?
Replies: 5
Views: 3907
 
Jump to post

Re: How to prevent the installer to auto remove the current product when run the same installer?

Thank you for your support.
I follow your advise and it works as what you said. However, it is not like what my customer want. He wants to show a confirmation dialog so that the user can choose either automatically remove the old version or cancel installing the new release.
Thank you anyway.
by agvinh
Wed Dec 13, 2017 9:52 am
Forum: Building Installers
Topic: How to prevent the installer to auto remove the current product when run the same installer?
Replies: 5
Views: 3907
 
Jump to post

Re: How to prevent the installer to auto remove the current product when run the same installer?

Hi Daniel,

We develop a program and manage its version loke 1.0.0.1 ( 4 parts).
However, Advanced Installer only support 3 parts in the version (1.0.0).
Whenever we make a new build, we create another setup packages with the same version number (ex: 1.0.0 for build 1.0.0.1 and 1.0.0.2).
Our ...
by agvinh
Fri Dec 08, 2017 5:45 am
Forum: Building Installers
Topic: How to prevent the installer to auto remove the current product when run the same installer?
Replies: 5
Views: 3907
 
Jump to post

How to prevent the installer to auto remove the current product when run the same installer?

I built an installer with Advanced Installer 14.2.2.
Whenever I rebuild the installation package ( without changing "Product Code", "Upgrade Code", "Version") and click launch installer again, the installer immediately remove the current installed product (which was installed before rebuild the ...
by agvinh
Fri Nov 24, 2017 5:58 am
Forum: Common Problems
Topic: Execute SQl Query with a SQL data coumm data length [nvarchar](MAX) cause "allocation" error.
Replies: 4
Views: 7321
 
Jump to post

Re: Execute SQl Query with a SQL data coumm data length [nvarchar](MAX) cause "allocation" error.

I find a way to workaround by replacing the sql SELECT [Value] FROM [tbl_Config] WHERE Variable = 'Val1' with the following:

DECLARE @val AS NVARCHAR(500)
SELECT @val = [Value] FROM [tbl_Config] WHERE [Variable] = 'Val1'
SELECT @val


Now it works as I expected
by agvinh
Thu Nov 23, 2017 1:21 pm
Forum: Common Problems
Topic: Execute SQl Query with a SQL data coumm data length [nvarchar](MAX) cause "allocation" error.
Replies: 4
Views: 7321
 
Jump to post

Execute SQl Query with a SQL data coumm data length [nvarchar](MAX) cause "allocation" error.

Hi,

I meet a problem when execute custom SQL query action to get a field from SQL Server database's column with the data type "[nvarchar] (MAX)"

CREATE TABLE [tbl_Config](
[Variable] [nvarchar](50) NOT NULL,
[Value] [nvarchar](MAX) NULL,
[Description] [nvarchar](150) NULL,
[Created ...

Go to advanced search