Sign in
Alex Shevchuk
Always listen to experts. They’ll tell you what can’t be done, and why. Then do it. - Lazarus Long
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
About
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search Blogs
Tags
Microsoft Installer
MSI
Pages
WiX
Archive
Archives
May 2010
(1)
May 2009
(11)
October 2008
(1)
August 2008
(1)
July 2008
(1)
June 2008
(2)
April 2008
(5)
March 2008
(8)
February 2008
(12)
January 2008
(1)
May, 2009
TechNet Blogs
>
Alex Shevchuk
>
May, 2009
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Alex Shevchuk
From MSI to WiX, Part 25 - Installable Items - Updating XML files using XmlFile
Posted
over 4 years ago
by
Alex Shevchuk
4
Comments
To use XmlFile element we need to: Add reference to WixUtilExtension extension. Add util namespace to <Wix> element: <? xml version = " 1.0 " encoding = " UTF-8 " ?> < Wix xmlns = " http://schemas.microsoft.com/wix/2006/wi...
Alex Shevchuk
From MSI to WiX, Part 24 - DLL Custom Actions - Get property value and obtaining/changing session information
Posted
over 4 years ago
by
Alex Shevchuk
0
Comments
In previous post we looked at how to set propery's value. Getting property value is more involved because we need to make sure that provided memory buffer for property value is big enough to hold the value. Function MsiGetProperty is used to get a property...
Alex Shevchuk
Documentation on WiX API
Posted
over 4 years ago
by
Alex Shevchuk
4
Comments
I just want to let everybody know that I am working on documenting WiX API, namely - wcautil and dutil libraries. I don't mind if this will become part of official WiX documentation. In fact, I hope - it will, because I personally, would like to see...
Alex Shevchuk
From MSI to WiX, Part 23 - DLL Custom Actions - Logging and setting properties
Posted
over 4 years ago
by
Alex Shevchuk
0
Comments
Let's start with setting property value using MSI API MsiSetProperty . This function takes three parameters: An installation handle, originally passed to custom action's function by Windows Installer. Name of the property to set or remove. ...
Alex Shevchuk
From MSI to WiX, Part 22 - DLL Custom Actions - Introduction
Posted
over 4 years ago
by
Alex Shevchuk
1
Comments
Today I am starting a mini series on writing C++ custom actions. Let's start with wizard-generated custom action project. Start Visual Studio and select "C++ Custom Action Project". Set "CAIntro" as the name of the project. Before we will start...
Alex Shevchuk
Можно ли использовать данные, полученные при использовании RegistrySearch в RegistryValue
Posted
over 4 years ago
by
Alex Shevchuk
0
Comments
English version is here . Вопрос: Можно ли использовать данные, полученные при использовании RegistrySearch в RegistryValue? Нечто вроде этого: <Property Id="PROP1"> <RegistrySearch Id="search1" Root="HKLM" Key="somekey...
Alex Shevchuk
Как сохранить значения свойств использовавшихся при начальной установке
Posted
over 4 years ago
by
Alex Shevchuk
0
Comments
English version is here . Один из наиболее часто задаваемых вопросов - как сохранить значение свойства, которое было присвоено свойству во время инсталлирования программы (присвоенное либо через параметер в командной строке или через пользовательский...
Alex Shevchuk
Preserving properties used during install
Posted
over 4 years ago
by
Alex Shevchuk
2
Comments
Русская версия здесь . One of the most common questions is how to preserve the value of property used during install (either passed through command line or properties like INSTALLLOCATION which can be changed in the UI) so that it can be used during...
Alex Shevchuk
Is it possible to use RegistrySearch result in RegistryValue?
Posted
over 4 years ago
by
Alex Shevchuk
2
Comments
Русская версия здесь . This post is an answer to this question sent to wix-users mailing list: Is it possible to use RegistrySearch result in RegistryValue? Something like this: <Property Id="PROP1"> <RegistrySearch Id="search1...
Page 1 of 1 (9 items)