Skip to main content
0 votes
0 answers
31 views

I like to run a DISM command in wix custom action without calling a PowerShell script or creating a extra dll. How to resolve the error reported, thanks. Here is the custom action I created for ...
Ming's user avatar
  • 595
0 votes
0 answers
30 views

I'm trying to configure the custom action to be executed only on first install and not to be executed on upgrade during installing the new product. My current Custom Action condition looks like that: (...
v-d's user avatar
  • 1
1 vote
1 answer
73 views

I am using the WixToolset 6.0 with Visual Studio 2022. I am trying to create an installer that installs the following files: <ComponentGroup Id="ApplicationFiles" Directory="...
Johnny Fever's user avatar
0 votes
1 answer
64 views

I want to use the MSI installer properties like REMOVE, Installed, WIX_UPGRADE_DETECTED in my c# custom action. What i want to do is currently i have the following custom action <Custom Action=&...
Hritik Kaushik's user avatar
0 votes
0 answers
167 views

I'm currently trying to implement a custom action that executes a PowerShell script after the installation. My thought about what exactly the MSI file should do is: Install/copy the Powershell script ...
Luca Jan Montinaro's user avatar
0 votes
1 answer
130 views

I need to install .NET Runtime before installing my app. I've read that it is impossible to run second installer after the first one started actions from InstallExecuteSequence table. So, I'm looking ...
Yola's user avatar
  • 19.4k
0 votes
0 answers
39 views

I have a script custom action that is scheduled to run during installation and upgrade: <InstallExecuteSequence> <Custom Action="CallInstaller" Before="InstallFinalize"...
José Neto's user avatar
0 votes
1 answer
90 views

When someone upgrades to the newer version of the software, I want to copy the file (UpgradeScripts.sql) and paste it in the ProgramFiles/Pharm/Database folder on the installed PC. I am using Wix ...
nikhil's user avatar
  • 1,764
0 votes
1 answer
135 views

I have looked through similar questions on the forum and have found no solution to my problem. I am trying to call dpinst using a custom action and get the error: "Error 1721. There is a problem ...
EBB's user avatar
  • 1
0 votes
0 answers
57 views

I created an msi for an application that relies on a deferred custom action to do a few necessary things. <CustomAction Id="MyCustomAction" Directory="INSTALLFOLDER" Execute=&...
José Neto's user avatar
0 votes
0 answers
57 views

I am trying to set the install location via a custom action that looks up the install location via a registry entry. The below custom action finds the correct location to install to. However, I cannot ...
Travis Pettry's user avatar
1 vote
0 answers
125 views

I am encountering an issue with Sourcetree's custom actions when dealing with multiple files that have spaces in their filenames. When using $FILE as the parameter for custom actions, Sourcetree sends ...
codermad's user avatar
0 votes
1 answer
365 views

<project-dir-name>/ ├── .github/ │ ├── actions/ │ │ └── cached-deps/ │ │ ├── action.yml └── .github/ └── workflows/ └── main.yml Here is the custom action for ...
Ihor Khomiak's user avatar
  • 1,189
0 votes
1 answer
94 views

I am programming in VB.net . I have made setup project to custom install my main application and added Textbox (A) dialog in user interface. At the time of installation, I want the input of the ...
DrSinChan's user avatar
1 vote
1 answer
245 views

QuerySnapshot querySnapshot = await FirebaseFirestore.instance .collection('collection-name') .where("users", arrayContains: userRef) .get(); I get data from firebase ...
sahil patel's user avatar

15 30 50 per page
1
2 3 4 5
70