Heat is a harvesting tool that creates .wxs files that can be used to create an installer.
Questions tagged [heat]
269 questions
3
votes
3 answers
COM registration fails: "Automation error: the system cannot find the file specified", when installing dll into other folder than the tlb file
We have a COM component (let's call it MyLib) developed in VB.NET, for our Access application (let's call it MyApp) to use. In order to do that, we need to do COM registration using the generated MyLib.dll and MyLib.tlb files. When I am installing…

tete
- 4,859
- 11
- 50
- 81
2
votes
1 answer
How to systematically set "ReadOnly" attribute to files harvested using heat?
I am harvesting a directory using heat, however, I couldnt find an option to set the "ReadOnly" attributes for all files harvest using heat.
Does anyone have know any way of doing it in heat?

RKM
- 3,151
- 9
- 37
- 50
2
votes
1 answer
2D Heat Conduction with Python
the output of the study///// I just started learning Python, so I am new with python. I have written a simple code for 2D Heat Conduction. I don't know what is the problem with my code. The result is so strange.I think the Temperature distribution…

Mohammad
- 23
- 1
- 4
2
votes
1 answer
Harvest a native (x86 or x64) COM Dll's registration information with WIX Heat (v3.5, v3.6)?
I have a new C++/ATL DLL (x86 and x64) that I'd like to include in an installer and was hoping Heat.exe could save some effort.

ivnext
- 887
- 7
- 15
2
votes
1 answer
Python numpy vectorization for heat dispersion
I'm supposed to write a code to represent heat dispersion using the finite difference formula given below.
()=((−1)[+1,] + (−1) [−1,] +(−1)[,+1] + (−1)[,−1])/4
The formula is supposed to produce the result only for a time step of 1. So, if an array…

confused
- 37
- 4
2
votes
0 answers
Use volume name instead of volume ID in Openstack Heat block_device_mapping
The block_device_mapping module can be used to attach storage to an instance. My requirement is to attach an already existing bootable cinder volume to an instance using a heat template. The following syntax works,
block_device_mapping:
-…

Samira Peiris
- 21
- 1
2
votes
0 answers
How to use gnocchi, aodh
Hi,
I'm trying to make simple openstack loadbalancer with cpu_util, memory and disk usage. But I'm struggle with aodh, gnocchi api.
I installed openstack with devstack(I posted local.conf file below ). But whenever I tried to matric/v1/matirc…

김민석
- 41
- 4
2
votes
1 answer
heat.exe 1600 components per feature limit
I've used WIX's heat.exe and got 2100 components and got a warning that Windows Installer is constrained to have maximum of 1600 components per feature. I understand that I might stick many files into one component and thus reduce the number of…

Bogdan Verbenets
- 25,686
- 13
- 66
- 119
2
votes
1 answer
Openstack HEAT : Adding new instances manually to existing stack via HEAT template
I have created an openstack stack via HEAT template using the openstack stack create command. If I want to add new instances to this same stack via HEAT template manually, whats the ideal approach?
I know that openstack stack update command exists,…

Subeesh KK
- 73
- 5
2
votes
2 answers
Creating Spectral Heat maps or Intensity maps from CDIP data using Ruby
BACKGROUND
Per the Coastal Information Data Program (CDIP), they are generating a spectral heat/intensity map for wave swell at…

Chip Castle
- 2,132
- 3
- 20
- 34
2
votes
1 answer
How to use XSLT to filter duplicates from another wxs file
What i have
I have a problem finding duplicate components using xslt.
I am using heat to harvest 2 Projects. These projects share some references (.dll files). Now heat creates 2 Fragments
ConfiguratorFiles.wxs
ServiceFiles.wxs
The…

Tobias Theel
- 3,088
- 2
- 25
- 45
2
votes
0 answers
r - Fit heat map into grid lines on Calendar Heatmap
I followed the example of a Calendar Heatmap shown in this website (you have to scroll down to the Calendar Heat Map section)
Using example from website:
library(ggplot2)
library(plyr)
library(scales)
library(zoo)
df <-…

TheNerdyCat
- 95
- 6
2
votes
1 answer
C# program to raise PC temperature
I'm cold and want a C# program to best raise the PC temperature so fan outputs more heat but don't want windows to lock up. I've looked for USB desk heaters but best I have found is a mug warmer. Unfortunately boss's tight and do not allow…

Jay Byford-Rew
- 5,736
- 1
- 35
- 36
2
votes
1 answer
How to include the output of heat in a wix file? (No Visual Studio project)
I need to build an installer and, for a variety of reasons, I would like to avoid using the WiX project template. I'm perfectly happy to script this stuff myself and already have a custom build process for this to fit into.
I believe I understand…

George Mauer
- 117,483
- 131
- 382
- 612
2
votes
0 answers
How to create a Heat Map in Python with Colorbar and hight resolution values in X, Y?
I have the next code in python to generate a 3D figure with MatPlotLib, but i need your help to change my code in order to be able to create a Heat Map instead the 3D figure.
My actual code:
Data Source-->
data.dat contains:
(1st column is 'x',…

Daniel
- 31
- 1