Jeff Tyson [mailto:jeff.ty...@microsoft.com]
Sent: Thursday, May 14, 2015 11:00 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Writing a dual-purpose managed bootstrapper
Hello,
I am trying to build a managed bootstrapper that can install as both per-user
and per-machine.
In the dual-purpose MSI
Hello,
I am trying to build a managed bootstrapper that can install as both per-user
and per-machine.
In the dual-purpose MSI I set the package scope to "perUser":
In the bundle I have
Finally in the managed bootstrapper, if the user is an administrator, I set the
MSI
In C++ to test the C# equivalent of string.IsNullOrEmpty() you should do:
if(( p == NULL) || (*p == NULL))
To sprintf a wide string you should use "%ls"
Note that creating a file during an immediate custom action is against
Windows Installer methodology.
The correct way should consist of 3 custom
Your checks for an empty string are wrong - constructs like
ip == L""
need to be
*ip == 0
or similar.
Check the documentation for the sprintf() implementation you're using.
In Standard C %s is for a normal character string but you're using it
for wide character strings - that would e
aviour
> (crashes, access violations, etc.) if I don't. This is true when running
> in VS2010 and VS2013 compilers.
>
> -Original Message-
> From: Sarvagya Pant [mailto:sarvagya.p...@gmail.com]
> Sent: March-13-15 1:40 PM
> To: General discussion about the WiX toolset
Pant [mailto:sarvagya.p...@gmail.com]
Sent: March-13-15 1:40 PM
To: General discussion about the WiX toolset.
Subject: [WiX-users] Writing a C++ Custom Action Project
I have written a C# Custom Action that is supposed to get the Values of
Properties passed to the installer and create some config
I have written a C# Custom Action that is supposed to get the Values of
Properties passed to the installer and create some config file. Since the
C# Custom action was done, my installer depends upon .Net too. I want to
avoid this dependency, thus I am opting to write the Custom action in C++.
Foll
Thank you.
--
View this message in context:
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Writing-to-64-bit-registry-hive-from-32-bit-msi-tp7598189p7598194.html
Sent from the wix-users mailing list archive at Nabble.com.
--
Hi,
I am writing a 32-bit msi to run on x86 and x64 OS. When run on 64-bit
Operating system, I want it to write to 64-bit registry hive, the windows
auto logon settings (AutoAdminLogon=1, DefaultUserName=AAA,
DefaultPassword=BBB). Can I accomplish this in wix installer ?
I do not have the o
..lol)
Thanks for all your replies.
Natalie
-Original Message-
From: Alain Forget [mailto:afor...@cmu.edu]
Sent: 20 May 2013 13:47
To: chr...@iswix.com; 'General discussion for Windows Installer XML
toolset.'
Subject: Re: [WiX-users] Writing a WiX tutorial
I had no experienc
least post this newer tutorial somewhere?
Alain
-Original Message-
From: Christopher Painter [mailto:chr...@iswix.com]
Sent: May 20, 2013 08:37
To: General discussion for Windows Installer XML toolset.;
wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Writing a WiX tutorial
L
#x27;s not my job to teach someone how to be a setup developer when I give my
two weeks notice. It isn't possible in that amount of time.
From: "Natalie Carr"
Sent: Monday, May 20, 2013 3:36 AM
To: wix-users@lists.sourceforge.net
Subject: [Wi
Installer XML toolset.
Subject: Re: [WiX-users] Writing a WiX tutorial
Hi Natalie,
Have you seen the tutorial at http://wix.tramontana.co.hu/? You may want to
emulate this, since it's a good tutorial for general use, but you may want
one tailored to your team and your product. You should include t
Hi Natalie,
Have you seen the tutorial at http://wix.tramontana.co.hu/? You may want to
emulate this, since it's a good tutorial for general use, but you may want
one tailored to your team and your product. You should include topics on
things that you use (for example, Burn, patching and early REP
Hi,
I have been asked to write a WiX tutorial for my colleagues to take over my
role when I leave. Has anyone written anything like this that they would be
willing to help me out with? I am using the WiX tutorial online but would
like your opinions on what I should include.
Thanks
Natalie
Seems reasonable.
On Fri, Apr 26, 2013 at 10:28 PM, uni wrote:
> I wrote registry entry like below,
> Key="Software\Microsoft\Windows\CurrentVersion\App Paths\MyApp.exe">
> KeyPath="yes"/>
> Value="[$CMP_MyApp]"/>
>
>
> It works but I'm not sure if it is approprite.
>
> Need some suggestion
I wrote registry entry like below,
It works but I'm not sure if it is approprite.
Need some suggestions,thanks.
--
Try New Relic Now & We'll Send You this Cool Shirt
New Relic is the only SaaS-based application perfo
My deferred action set some property and from here I want to write this
value to the registry using WiX (and not inside custom action using C#, so
that it gets removed automatically during uninstall).
How can I do this?
--
Thanks and Regards,
Ravi Raj
-
Dutil explicitly uses the Unicode functions. Haven't written code for 9x in
many years, not sure how much work it'd take to get things working back
there.
On Sun, Sep 2, 2012 at 2:16 AM, Sean Farrow wrote:
> Hi:
> I've had a user come to me wanting an installer written that must run on
> windows
Hi:
I've had a user come to me wanting an installer written that must run on
windows 9x. I have two questions:
Firstly, are the function written in Dutil.lb etc all Unicode or do they adapt
based on he defines. Ideally I'd like to use mslu to deal with this.
Secondly, do I need to distribute mslu
I am also thinking this way but was not sure any other (better) way of
doing this. But thanks for your valuable suggestions.
On Mon, Jun 18, 2012 at 1:31 PM, Dirk Räder wrote:
> Hi,
>
> I'd take the usual way:
> Define some properties that hold the path to the registry key(s) and
> the desired v
Hi,
I'd take the usual way:
Define some properties that hold the path to the registry key(s) and
the desired value(s). Access these properties within your CA and you
should be fine.
This way, you can reuse the CA for more than one installer without
changes to its source code.
Kind regards,
Dirk
I want to store some registry value within the custom action. There are
some other registry I also write via WiX. Within Custom Action, I have to
get the path of registry key so that I can add a new string into it but I
am not sure what will be the best way to do so this.
Any suggestions??
--
Th
On 1/13/12 7:28 AM, Peter Shirtcliffe wrote:
> Why not check it when the application starts up ?
The product in question runs as a service. There is no GUI. The Java
wrapper could only log the error and quit.
For that reason, the product marketing tells us we should check the
prerequisite softw
ginal Message-
From: Mike Rerick [mailto:mrer...@iwsinc.com]
Sent: Friday, January 13, 2012 9:38 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Writing JDK version verification code, and Wix
debugging tip
The app being installed is a Java app. Can'
llation option that
> modifies the product code.
>
> -Original Message-
> From: Mike Rerick [mailto:mrer...@iwsinc.com]
> Sent: 13 January 2012 15:38
> To: General discussion for Windows Installer XML toolset.
> Subject: Re: [WiX-users] Writing JDK version verification cod
riginal Message-
From: Mike Rerick [mailto:mrer...@iwsinc.com]
Sent: 13 January 2012 15:38
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Writing JDK version verification code, and Wix
debugging tip
The app being installed is a Java app. Can't run it without
27;ll be easier to code
> and
> the user has the option of installing Java after your product instead of
> forcing it to be done beforehand.
>
> -Original Message-
> From: T. Kuro Kurosaka [mailto:k...@basistech.com]
> Sent: 12 January 2012 23:50
> To: wix-users@l
50
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Writing JDK version verification code,and Wix debugging
tip
Wix & MSI newbie here.
My product requires JDK 1.6 installation, and I'm trying to come up with
Wix code to verify the system has JDK 1.5 installed before proceeding
inst
You might need a custom
> action.
>
>
>
> From: "T. Kuro Kurosaka"
>
> Sent: Thursday, January 12, 2012 6:21 PM
>
> To: wix-users@lists.sourceforge.net
>
> Subject: [WiX-users] Writing JDK version verification code, an
21 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Writing JDK version verification code, and Wix
debugging tip
Wix & MSI newbie here.
My product requires JDK 1.6 installation, and I'm trying to come up with
Wix code to verify the system has JDK 1.5 installed before proceeding
in
Wix & MSI newbie here.
My product requires JDK 1.6 installation, and I'm trying to come up with
Wix code to verify the system has JDK 1.5 installed before proceeding
installation of my product.
I thought this would work:
But this didn't work. Even if JDK 1.5 is installed, this messa
orge.net
> Betreff: Re: [WiX-users] Writing to ProgramFolder with Custom Action
> Dll in C++
>
> On 14-Jul-11 18:31, Michael Ganz wrote:
> > MsiGetPropertyA(hInstall, "INSTALLDIR",
> _pcKeyPath,&_dKeyPathLen);
> > ...
> > MsiSetPropertyA(h
On 14-Jul-11 18:31, Michael Ganz wrote:
> MsiGetPropertyA(hInstall, "INSTALLDIR", _pcKeyPath,&_dKeyPathLen);
> ...
> MsiSetPropertyA(hInstall, "KEYWRITESUCCESS", "0");
>
Deferred custom actions can't read or write property values. See
"Obtaining Context Information for Deferred Execu
, 2011 1:47 AM
To: 'General discussion for Windows Installer XML toolset.'
Subject: Re: [WiX-users] Writing to ProgramFolder with Custom Action Dll in C++
Thought I've done this with:
Michael
> -Ursprüngliche Nachricht-
> Von: Wilson, Phil [mailto:phil.wil...@inv
Thought I've done this with:
Michael
> -Ursprüngliche Nachricht-
> Von: Wilson, Phil [mailto:phil.wil...@invensys.com]
> Gesendet: Freitag, 15. Juli 2011 01:43
> An: General discussion for Windows Installer XML toolset.
> Betreff: Re: [WiX-users] Writing to Progr
Have you set InstallPrivileges="elevated" on the Package element ?
-Original Message-
From: Michael Ganz [mailto:michael_g...@t-online.de]
Sent: 14 July 2011 23:32
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Writing to ProgramFolder with Custom Action Dll in C++
Custom actions need to be deferred to run with elevated privilege.
Phil Wilson
-Original Message-
From: Michael Ganz [mailto:michael_g...@t-online.de]
Sent: Thursday, July 14, 2011 3:32 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Writing to ProgramFolder with Custom
Hello List,
I'm using WiX for creating a setup with a keyfile with openSSL.
The keyfile has to be placed in the ProgramFolderDir.
After creating the key with the Custom Action, I push it in a Property
called "LICENSE".
Another function should write this file to the products shortname wit
May be this helps.
http://blogs.technet.com/alexshev/archive/2008/03/29/from-msi-to-wix-part-14-installable-items-registry-keys-and-values.aspx
I am not sure.
Regards, Subramanyeswari
--
View this message in context:
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Writing-INSTAL
I had forgot to add the brackets in one of my wxs-files. Now it works!
> From: kristoffer.daniels...@live.se
> To: wix-users@lists.sourceforge.net
> Date: Sun, 2 May 2010 15:50:29 +0200
> Subject: [WiX-users] Writing INSTALLLOCATION to registry fails!
>
>
>
>
I'm trying to write the installation path to the registry, but it keeps writing
"INSTALLLOCATION" instead of its value. What am I doing wrong?
Please help!
...
_
Klicka h
Thanks for answer. The problem was in type of xsd-resource, it was just
included file. I changed type type "Embedded Resource" and schema loaded
successfull!
--
View this message in context:
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Writing-own-Wix-Extension-tp4968486p4980011
On 4/29/2010 3:57 AM, vunder wrote:
> this.schema =
> LoadXmlSchemaHelper(Assembly.GetExecutingAssembly(),
> "Microsoft.Tools.WindowsInstallerXml.Extensions.Xsd.InterBase.xsd");
>
Check your extension assembly using ILDasm or Reflector to make sure the
resource name is correct.
--
sig://boB
Could not understand, where error
Xsd:
http://www.w3.org/2001/XMLSchema";
xmlns:xse="http://schemas.microsoft.com/wix/2005/XmlSchemaExtension";
targetNamespace="http://schemas.www.stc-spb.ru/wix/InterBaseExtension";
>
http://schemas.microsoft.com/wix/2006/wi"; />
As I understand extension does not do anything (I mean actions during
installation), it only add new tables in MSI-database or modify existing.
Real actions providing by custom actions, executing as allways after
"InstallFiles". Am I right?
--
View this message in context:
http://windows-install
cow|Geneva|Seattle|New York
-Original Message-
From: vunder [mailto:vun...@bk.ru]
Sent: Tuesday, April 27, 2010 9:14 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Writing own Wix Extension
I could not find normal step-by-step help, how to write extension. I wrote a
extension
I could not find normal step-by-step help, how to write extension. I wrote a
extension class and compiler class, assembly is loading by
candle.exe/light.exe
(http://blogs.msdn.com/pmarcu/archive/2007/11/02/wix-writing-your-own-wix-extension-part-1.aspx)
but what next?
I want to write some Borland
agara...@symphony.cc]
Sent: Tuesday, January 05, 2010 12:39 AM
To: 'Blair'; 'General discussion for Windows Installer XML toolset.';
'Schrieken, Rene'
Subject: Re: [WiX-users] writing to console from smoke.exe using
customaction
It looks like MsiProcessMessage works only
ler XML toolset.';
'Schrieken, Rene'
Subject: RE: [WiX-users] writing to console from smoke.exe using
customaction
These CA are called through DoAction, in the msdn it is clearly stated that
if MsiProcessMessage invoked through DoAction the function will not work.
http://msdn.microsoft
; 'General discussion for Windows Installer XML
toolset.'; 'Schrieken, Rene'
Subject: RE: [WiX-users] writing to console from smoke.exe using
customaction
Tests in a .CUB are always run from a sequence table (similar to the UI
sequence table, but the sequence table is named _ICESe
[mailto:nagara...@symphony.cc]
Sent: Monday, January 04, 2010 10:39 PM
To: 'Blair'; 'General discussion for Windows Installer XML toolset.';
'Schrieken, Rene'
Subject: RE: [WiX-users] writing to console from smoke.exe using
customaction
It looks like MsiProcessMessage work
'Schrieken, Rene'
Subject: RE: [WiX-users] writing to console from smoke.exe using
customaction
Something like this?
int SendSampleICEMessage(void)
{
PMSIHANDLE hRecord = MsiCreateRecord(1);
UINT error = MsiRecordSetString(hRecord, 0,
"Name of ICE\tMessage Type\tDescription\tHe
eturn (int) error;
}
-Original Message-
From: nagaram.c [mailto:nagara...@symphony.cc]
Sent: Monday, January 04, 2010 5:20 AM
To: 'Blair'; 'General discussion for Windows Installer XML toolset.';
'Schrieken, Rene'
Subject: RE: [WiX-users] writing to console from sm
I tried this option but still the issue exist.
- Nag
-Original Message-
From: Blair [mailto:os...@live.com]
Sent: Monday, January 04, 2010 5:22 AM
To: nagara...@symphony.cc; 'General discussion for Windows Installer XML
toolset.'; 'Schrieken, Rene'
Subject: RE: [W
quot;C"' and are also listed in the .def
file to prevent any form of compiler/linker decoration.
-Original Message-
From: nagaram.c [mailto:nagara...@symphony.cc]
Sent: Sunday, January 03, 2010 10:08 PM
To: 'Blair'; 'General discussion for Windows Installer XML to
; 'General discussion for Windows Installer XML
toolset.'; 'Schrieken, Rene'
Subject: RE: [WiX-users] writing to console from smoke.exe using
customaction
Custom Actions in CUB files are supposed to be immediate custom actions.
Please read MSDN. Use MsiProcessMessage.
-Origin
ndows Installer XML
toolset.'
Subject: Re: [WiX-users] writing to console from smoke.exe using
customaction
With the below code WriteFile is returning false, GetLastError shows Handle
is invalid
Nag
_
From: Schrieken, Rene [mailto:rene.schrie...@logica.com]
Sent: Tuesday, Decemb
Subject: RE: [WiX-users] writing to console from smoke.exe using
customaction
Looking at your code and reading msdn WriteConsole(szBuffer); might fail.
Something with ansi and widechar but this is really not my area of
expertise. Can you try to see if this might work: (everybody else: HELP
this...
Van: nagaram.c [mailto:nagara...@symphony.cc]
Verzonden: di 29-12-2009 8:04
Aan: Schrieken, Rene; 'General discussion for Windows Installer XML toolset.';
'General discussion for Windows Installer XML toolset.'
Onderwerp: Re: [WiX-users] writing to console from smok
...@logica.com]
Sent: Thursday, December 24, 2009 10:46 AM
To: nagara...@symphony.cc; General discussion for Windows Installer XML
toolset.; General discussion for Windows Installer XML toolset.
Subject: RE: [WiX-users] writing to console from smoke.exe using
customaction
smoke.exe - cub myCub.cub
27;General discussion for Windows Installer XML toolset.'
Subject: RE: [WiX-users] writing to console from smoke.exe using custom
action
I already tried below solution but is not writing to console, I think
MsiProcessMessage works only if the custom action is run through msiexec or
if the CA is imm
Windows Installer XML toolset.'; 'Blair'
Onderwerp: Re: [WiX-users] writing to console from smoke.exe using customaction
I found a solution, the custom action DLL isn't writing to console unless I
call AttachConsole as like below
cpid = GetCurrentProcessId();
hWnd = FindWindow
; switch in the command line could get appended every time the program is
executed
Nag
-Original Message-
From: nagaram.c [mailto:nagara...@symphony.cc]
Sent: Tuesday, December 22, 2009 11:54 PM
To: 'Blair'; 'General discussion for Windows Installer XML toolset.'
Subj
el 4
Company
We synchronize business, technology and people
-Original Message-
From: Blair [mailto:os...@live.com]
Sent: Tuesday, December 22, 2009 7:35 AM
To: nagara...@symphony.cc; 'General discussion for Windows Installer XML
toolset.'
Subject: RE: [WiX-users] writing t
: [WiX-users] writing to console from smoke.exe using custom action
Hi,
I wrote a custom action dll in C++ & added to .cub file that I am using in
-cub switch in smoke.exe, I was not successful in writing to console like
the ICE(s) in darice.cub does it but I am able to display the log inf
Hi,
I wrote a custom action dll in C++ & added to .cub file that I am using in
-cub switch in smoke.exe, I was not successful in writing to console like
the ICE(s) in darice.cub does it but I am able to display the log info in
MessageBox.
Thanks,
Nag
-
On Sun, 16 Aug 2009 07:56:15 +0100, Sean Farrow wrote:
Sean,
> Are there any examples in either the wix source, or online as to
> how to do this.
A whole lesson is devoted to it at http://www.tramontana.co.hu/wix/lesson8.php .
Bye,
Gábor
Hi:
I need to write a custom dialog for a wix install I am currently
writing.
Are there any examples in either the wix source, or online as to how to
do this.
I have the dialog written in another ide, but am unsure how to transfer
this to the wix environment, basically what I need is a dialogue
Roy Abou Assaly wrote:
>
>
>
> Roy Abou Assaly wrote:
>>
>>
>>
>> Bob Arnson-6 wrote:
>>>
>>> Roy Abou Assaly wrote:
> Value="00 01" gives:
>
error LGHT0204 : ICE70: The value '#x01 02' is an invalid hexadecimal
value
for registry entry regA16537AC885C7B5BB2301
Roy Abou Assaly wrote:
>
>
>
> Bob Arnson-6 wrote:
>>
>> Roy Abou Assaly wrote:
Value="00 01" gives:
>>> error LGHT0204 : ICE70: The value '#x01 02' is an invalid hexadecimal
>>> value
>>> for registry entry regA16537AC885C7B5BB23019846BB931C1.
>>> Value="00;01" gives:
>>> err
Bob Arnson-6 wrote:
>
> Roy Abou Assaly wrote:
>>> Value="00 01" gives:
>>>
>> error LGHT0204 : ICE70: The value '#x01 02' is an invalid hexadecimal
>> value
>> for registry entry regA16537AC885C7B5BB23019846BB931C1.
>> Value="00;01" gives:
>> error LGHT0204 :ICE70: The value '#x01;02' is
Roy Abou Assaly wrote:
>> Value="00 01" gives:
>>
> error LGHT0204 : ICE70: The value '#x01 02' is an invalid hexadecimal value
> for registry entry regA16537AC885C7B5BB23019846BB931C1.
> Value="00;01" gives:
> error LGHT0204 :ICE70: The value '#x01;02' is an invalid hexadecimal value
> for re
On Tue, Feb 24, 2009 at 1:46 PM, Bob Arnson-6 (via Nabble) <
ml-user+58260-683222...@n2.nabble.com
> wrote:
> Roy Abou Assaly wrote:
> >
> >
> > But I keep getting the error:
> >
> > error LGHT0204 : ICE70: The value '#x01,00' is an invalid hexadecimal
> value
> > for registry entry reg001E0C73C
Roy Abou Assaly wrote:
>
>
> But I keep getting the error:
>
> error LGHT0204 : ICE70: The value '#x01,00' is an invalid hexadecimal value
> for registry entry reg001E0C73C604AACC31F75D0
>
> How do I express this correctly?
>
The MSI doc doesn't say. I'd try removing the commas.
--
sig://boB
Hi,
I have a registry key that is of type binary and has is a long series of
numbers. When I export it from regedit, it looks like this:
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\FooBar\Security]
"Security"=hex:01,00,14,80,90,...
I'm having trouble expressing this inside the Regist
In article <10c8a1370902190329x43db8246hfd9b86d11a8a5...@mail.gmail.com>,
sandun css writes:
> In the Wix documentation I found something called 'smoke'. Please advice me
> what is that and how can I write my own tests to test the Wix code?
Are you trying to write an ICE to unit test the b
:
> From: sandun css
> Subject: [WiX-users] Writing WiX Tests
> To: wix-users@lists.sourceforge.net
> Date: Thursday, February 19, 2009, 5:29 AM
> Hi,
>
> In the Wix documentation I found something called
> 'smoke'. Please advice me
> what is that and how can I writ
Hi,
In the Wix documentation I found something called 'smoke'. Please advice me
what is that and how can I write my own tests to test the Wix code?
Thanks,
Sandun
--
Open Source Business Conference (OSBC), March 24-25, 20
, December 10, 2008 07:41
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Writing to registry fails, but msi log reports keys
written?
Hi wix-users,
I was recently asked to write values to the registry in a working installer.
All the other parts of the installer work, even the log seems to
Hi wix-users,
I was recently asked to write values to the registry in a working installer.
All the other parts of the installer work, even the log seems to show it
registered.
- The problem is when I look in the registry, the keys are not written.
(I also tried changing the Action attribute
Sent: Thursday, October 30, 2008 10:56 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Writing to an XML Elements Inner Text
Greetings to all,
I've been looking for an example of how to write into an XML elements inner
text. In this even possible with WiX?
The node I'm trying
Greetings to all,
I've been looking for an example of how to write into an XML elements inner
text. In this even possible with WiX?
The node I'm trying to modify is of this sort..
MSCrmServices/2007/CrmService.asmx
I am able to arrive at that node but whe
set.
Subject: [WiX-users] Writing Wix Extensions in wix v2
Hi All,
I followed the same steps as were there in Peter Marcu's blog for writing wix
extensions. I was thrilled to see it working.
I used wix v3.
But, WixExtension class was nowhere to be found in wixv2. Is there any pointer
on how can I
Hi All,
I followed the same steps as were there in Peter Marcu's blog for writing wix
extensions. I was thrilled to see it working.
I used wix v3.
But, WixExtension class was nowhere to be found in wixv2. Is there any pointer
on how can I achieve the same thing in wix v2.
Thanks
Mukesh
Microsof
Hi,
I am trying to create a key into Win2K8 Server's
HKLM\SOFTWARE\Wow6432Node\Microsoft through installer. But While Running the
MSi , it is giving me a error "U don't have access right to write into
registry". But I am running through Admin accounts.
Please find the code snippet .
http://mo
Hi:
Can someone give me pointers asto how to write a language neutral main
installer.
How would I then apply specific transforms using msiexec?
Cheers
Sean.
__ Information from ESET NOD32 Antivirus, version of virus
signature database 3446 (20080916) __
The message was checked
2008 17:13
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Writing Property to Registry
I want to be able to write a value into the registry, specifically the
User's Name and Company information. I have created a custom dialog that
has a few Edit controls to collect this infor
I want to be able to write a value into the registry, specifically the
User's Name and Company information. I have created a custom dialog
that has a few Edit controls to collect this information and deposit
it into the respective properties. How do I write these to the
registry? Will I h
Hey Chris,
I believe the most Windows Installer compliant way to do this would be by
passing a delimited string from an immediate action to a deferred action. In
the deferred action you would need to parse the properties and then you can
write to a file of choice.
I have written something (I call
Is there any way to write a variable to a file at install time?
For example, let's say that the installation directory is set to c:\myapp at
install time. Is there any way to write "dir=c:\myapp" to
c:\myapp\myapp.properties?
Hongping Lim wrote:
My installer needs to increment the integer value of an existing
registry key on the system, but it also needs to restore the value
back upon uninstall. Is there any way to achieve this?
Use a RegistrySearch to query the existing value, write it to another
registry key
My installer needs to increment the integer value of an existing registry key
on the system, but it also needs to restore the value back upon uninstall. Is
there any way to achieve this?
Thanks,
Hongping
-
This SF.net email
Hi,
Can anybody help me in writing wxs for installing my website into some website
on port 80 other than the default website.
Thanx & Regards
Nitin
_
Palate Teasers: Straight from Master Chef!
http://content.msn.co.in/Lifestyle/Mo
Check a it out not is too its just stub as now but
gave me in link back Ucites home page Checking out clicked on over Events
calendar and.Just in stub as now but gave me link back am Ucites home page
Checking.Content in Itacs website long way url is by am Aaron Posted on June
Pmah beauty a e
Thanks for your replay.
So I will need to write teh custom action when I want to support
rollback for uninstallation. :-(
thanks again
stefan
Bob Arnson wrote:
> Stefan Pavlik wrote:
>> Is it possible to write (in standard MSI way) some value to the
>> registry during uninstallation of the pack
Stefan Pavlik wrote:
> Is it possible to write (in standard MSI way) some value to the
> registry during uninstallation of the package ?
>
WiX v3 supports the RemoveRegistryValue element to do that but MSI
itself supports the removal only of whole values (or keys), which won't
really help you
Hi list,...
Is it possible to write (in standard MSI way) some value to the
registry during uninstallation of the package ?
Background:
During installation I am preparing (in custom action) the string
which is written into
HKLM\SYSTEM\CurrentControlSet\Control\NetworkProvider\Order
ProviderOrder
98 matches
Mail list logo