Search found 11 matches

by AKP
Wed Nov 15, 2023 10:03 pm
Forum: General Discussions
Topic: Write permission
Replies: 2
Views: 1524

Re: Write permission

That solves the problem.

Thank you
by AKP
Tue Nov 14, 2023 5:45 am
Forum: General Discussions
Topic: Write permission
Replies: 2
Views: 1524

Write permission

During my installation, I copy files into the ProgramData directory (<CommonAppData><AppName>test.xml). Unfortunately, my program does not have write access to this file. I thought that write permissions were available for everyone in this folder. What am I doing wrong?
Thank you.
by AKP
Sat Jan 28, 2023 1:35 pm
Forum: General Discussions
Topic: Move a file before installation
Replies: 1
Views: 2843

Move a file before installation

How can i move a file (text.txt) before installation from "InstallDir" to "CommonAppData/AppName"?
by AKP
Thu Mar 03, 2022 1:35 pm
Forum: General Discussions
Topic: Installation Error
Replies: 3
Views: 6179

Re: Installation Error

i used version 8.6.
After updating Actualinstaller, the Pro version of the Updater was also no longer recognized, whereupon this was also installed again.
by AKP
Tue Mar 01, 2022 5:26 pm
Forum: General Discussions
Topic: Installation Error
Replies: 3
Views: 6179

Re: Installation Error

I have now unchecked Uninstall and checked it again. Now it seems to work.
by AKP
Tue Mar 01, 2022 9:53 am
Forum: General Discussions
Topic: Installation Error
Replies: 3
Views: 6179

Installation Error

Since version 9.0 there is an error message when installing my project. Namely, the file Uninstall.exe cannot be created (access denied). However, if I ignore the error, the file is created normally in the app directory. Also a further installation over the existing works then without problems. Appa...
by AKP
Sun Jan 09, 2022 2:13 pm
Forum: General Discussions
Topic: Setup.exe file property
Replies: 1
Views: 7087

Setup.exe file property

Hy

Is it possible to change the file property of Setup.exe with actualinstaller?
In the file properties it says for example: Copyright: c)
Here should be the developer information.
by AKP
Fri Nov 05, 2021 11:32 am
Forum: General Discussions
Topic: Probs with usage of <SystemDir64>
Replies: 2
Views: 7175

Re: Probs with usage of <SystemDir64>

I think the best would be an option option at each file: only 32bit / only 64bit / all
So an installation for both systems together would be possible.
by AKP
Thu Oct 07, 2021 9:51 am
Forum: General Discussions
Topic: Firewall exception
Replies: 3
Views: 9272

Re: Firewall exception

Do you have to put the variables in quotation marks?

Code: Select all

netsh advfirewall firewall add rule name=<AppName> dir=in action=allow program=<MainExecutable> enable=yes
by AKP
Wed Oct 06, 2021 2:00 pm
Forum: General Discussions
Topic: Firewall exception
Replies: 3
Views: 9272

Firewall exception

Hello

How can I use the installer to add my application to the Windows Firewall exceptions?
I found the following, but how to do it with the installer?

Code: Select all

netsh advfirewall firewall add rule name="My Application" dir=in action=allow program="C:\MyApp\MyApp.exe" enable=yes