Re: [WiX-users] Trying to create a user.

2008-10-28 Thread Bob Arnson
[EMAIL PROTECTED] wrote: > candle -o mystuff.wixlib mystuff.wxs -ext WixUtilExtension.dll > Note that candle produces .wixobj files, which you can combine into a .wixlib using the lit tool. -- sig://boB http://joyofsetup.com/ ---

Re: [WiX-users] Trying to create a user.

2008-10-27 Thread james.newsom
huk [mailto:[EMAIL PROTECTED] Sent: Monday, October 27, 2008 4:27 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Trying to create a user. 1. Start Wix.chm 2. Click on "Index" tab. 3. Type "user" in "Type in the keyword to find".

Re: [WiX-users] Trying to create a user.

2008-10-27 Thread Alexander Shevchuk
1. Start Wix.chm 2. Click on "Index" tab. 3. Type "user" in "Type in the keyword to find". 4. Click on "User Element" in the list box below. 5. Click "Locate" on the toolbar. You will see that element belongs to Util schema. 1. Add reference to WixUtilExtension 2. Add reference to element to en

Re: [WiX-users] Trying to create a user.

2008-10-27 Thread james.newsom
Okidokie. I'll give that a try. Thanks! -Original Message- From: cemiles [mailto:[EMAIL PROTECTED] Sent: Monday, October 27, 2008 4:15 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Trying to create a user. Try adding in the xmlns:util namespace since User

Re: [WiX-users] Trying to create a user.

2008-10-27 Thread Brian Rogers
Have you added the following namespace to your XML document? http://schemas.microsoft.com/wix/2006/wi"; xmlns:util=" http://schemas.microsoft.com/wix/UtilExtension";> -- Brian Rogers "Intelligence removes complexity." - Me http://icumove.spaces.live.com On Mon, Oct 27, 2008 at 2:04 PM, <[EMAIL P

Re: [WiX-users] Trying to create a user.

2008-10-27 Thread Chad Miles
Need an xmlns for Util schema looks like. On Mon, Oct 27, 2008 at 5:04 PM, <[EMAIL PROTECTED]> wrote: > Howdy! I'm in a rut that I'm trying to break out of. > > > > I want to create a user with my .msi file. I have the following: > > > > 8<-- > > Guid="{7fac0c

Re: [WiX-users] Trying to create a user.

2008-10-27 Thread Rob Mensching
Did you add the namespace as well? The WiX.chm talks about how to use extensions. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, October 27, 2008 14:04 To: wix-users@lists.sourceforge.net Subject: [WiX-users] Trying to create a user. Howdy! I'm in a r

Re: [WiX-users] Trying to create a user.

2008-10-27 Thread cemiles
Try adding in the xmlns:util namespace since User is an element of Util schema james.newsom wrote: > > Howdy! I'm in a rut that I'm trying to break out of. > > > > I want to create a user with my .msi file. I have the following: > > > > 8<-- > > Gu