We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using the installer, Cloudbase-Init is installed on Windows and can be queried as a Win32_Product using WMI.
$cbsInit = Get-WmiObject Win32_Product -Filter {vendor="Cloudbase Solutions SRL"}
But the InstallLocation is not present (empty) on the object. The InstallLocation is required to automatically check the installation status.
According to various sources, this can be achieved by adding a custom action (https://stackoverflow.com/questions/27500705/wix-and-arpinstalllocation)
<CustomAction Id="SetARPInstallLocation" Property="ARPINSTALLLOCATION" Value="[INSTALLDIR]" /> <SetProperty Id="ARPINSTALLLOCATION" Value="[INSTALLDIR]" After="CostFinalize" />
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When using the installer, Cloudbase-Init is installed on Windows and can be queried as a Win32_Product using WMI.
But the InstallLocation is not present (empty) on the object.
The InstallLocation is required to automatically check the installation status.
According to various sources, this can be achieved by adding a custom action (https://stackoverflow.com/questions/27500705/wix-and-arpinstalllocation)
The text was updated successfully, but these errors were encountered: