Re: [WiX-users] Get Target machine name

2008-03-13 Thread Alexei Boukirev
- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/ > ___ > WiX-users mailing list > WiX-users@lists.sourceforge.net &

Re: [WiX-users] Tutorial down

2007-09-07 Thread Alexei
I guess you mean the one on SourceForge. I think thats permanently dead. What you wanna look at is http://www.tramontana.co.hu/wix/ The WiX Tutorial Hope that helps. michael lueck-3 wrote: > > Hi, > > I like to have a look at the tutorial for wix2.0 but that seems to be > down. > When will i

Re: [WiX-users] Problem with Wix and .cab files

2007-09-07 Thread Alexei
Try adding [EMAIL PROTECTED]"yes". This should get rid of the directory structure and hopefully put the files into the cab. Jarle Aase wrote: > > Hi List, > > I'm trying to split the files in an installation to one or more .cab > files. If I have understood the schema correct, this is done by

Re: [WiX-users] UI text problem

2007-08-30 Thread Alexei
I'm guessing you used the german version as a template for this version: the Language in the Product or Package tag will be wrong. Make sure it matches the http://www.tramontana.co.hu/wix/lesson2.php#2.4 Codepage as well Anidil wrote: > > After creating and running the msi using us-english .w

Re: [WiX-users] WixShellExec & CAQuietExec & their options

2007-08-28 Thread Alexei
Although this seems to have been answered already I'm unclear as to why you can not use an immediate CA. Can you not just schedule it after CostFinalize in the InstallExecuteSequence? koawmfot wrote: > > I need to lauch an executable at the end of my installation. currently i > use the CAQuiet

Re: [WiX-users] XmlFile failing to open installed file

2007-08-22 Thread Alexei
Is the xml file part of the same install that tries to modify it? If so you will probably need some sort of of deferred custom action, as the file will probably not have been copied over prior to the XmlConfig being run. John Hancock (HSG) wrote: > > Based on some information posted elsewhere,

Re: [WiX-users] INI File

2007-08-22 Thread Alexei
You don't need to do anything, Windows Installer will deal with that for yo auto-magically. Petrut Andrei wrote: > > How to add a shortcut to the Add/Remove Programs ? > -- View this message in context: http://www.nabble.com/INI-File-tf4311811.html#a12276011 Sent from the wix-users mailing

Re: [WiX-users] How to cancel an installation (using CancelDlg)?

2007-08-21 Thread Alexei
What you could also do, which isn't quite as "nice" is: (Notice the different Event and Value) This doesn't ask the user for confirmation however which is why I said it's not as "nice" md5hans wrote: > > Hi! > > sorry, I should have done some more research before posting my question, > whe

Re: [WiX-users] Custom Action - HowTo call a function from a dll?

2007-08-21 Thread Alexei
You need to have your .dll in the binary folder under where your wxs is. That is: C:\WiXSource\WixProj1\mysource.wxs and C:\WiXSource\WixProj1\Binary\InstallUtil.dll However you might also want to check whether you want to use an immediate custom action or a deferred CA. If you're editing files t

[WiX-users] uninstalling dlls, again

2007-08-17 Thread Alexei
Well I posted about this a while ago, but I've still not found a solution so I figured I'd try again. What happens is that when I attempt to uninstall the application the three DLLs that are installed with it are left on the system. The installation fragments for these DLLs were created with tall

Re: [WiX-users] Feature element - Condition nightmare

2007-08-16 Thread Alexei
earch finds something then [FOUNDTABCTL32] will be defined and the condition will hold, thereby setting the FeatureToInstallWhenOCXMissing Level="0" Tell me if this helps at all, Alexei Adrian Gantoi wrote: > > Hi all, > > I'm having a problem with correctly specify

Re: [WiX-users] Training Courses?

2007-08-16 Thread Alexei
Well the one that many people recommend is http://www.tramontana.co.hu/wix/ The WiX Tutorial you'll need some patience to sit through it all and not skip anything. Tanikella, Rajanikanth (SCR US) wrote: > > Hello All, > > Can anyone recommend a course (classroom or online) or a good book to

Re: [WiX-users] Hello and a few question about some of the tools (tallow, heat and clickthru)

2007-08-16 Thread Alexei
bit on the various tallow parameters. Hope that helps, Alexei Matt.Thompson wrote: > > > Hello to all in the group, > > I'm looking at using WiX to create MSIs for deploying binaries, web > content > and anything else we need to. There's nothing complex, just

Re: [WiX-users] Managed Custom Action

2007-08-15 Thread Alexei
Have a look http://msdn2.microsoft.com/en-us/library/ms681383.aspx here - its the first one on the list. Course that's if it was an error from Windows Installer. If it was from your DLL then I got nothin'. However I believe the conventional wisdom is not to use managed CAs since they place too m

Re: [WiX-users] Calling a function of one file into a wix file.

2007-08-13 Thread Alexei
chandan Koushik wrote: > > Is it possible to have a function [say > f1() ] in one file which can be called from a main wix file > Sounds like you're after a Custom Action which calls a function from a dll. Have a look http://www.tramontana.co.hu/wix/lesson10.php here for a quick overview of

Re: [WiX-users] Problems with shortcuts

2007-08-09 Thread Alexei
the installer). To get around this I think you need a deffered custom action, but I'm not 100% on that. Anyone else got any ideas? Regards, Alexei -- View this message in context: http://www.nabble.com/Problems-with-shortcuts-tf4240759.html#a12071249 Sent from the wix-users mailing list archi

Re: [WiX-users] DLLs and uninstalls

2007-08-09 Thread Alexei
Phil Wilson wrote: > > See if the log contains any of this type of thing: > > MSI (s) (CC:24) [13:58:42:909]: Disallowing uninstallation of component: > {15239D33-DAE9-46F3-BD59-264A2068B3BC} since another client exists > > They'll be before those Action: Null reports (which is why they might

Re: [WiX-users] DLLs and uninstalls

2007-08-08 Thread Alexei
ed setting SharedDllRefCount="no" for the components but that didn't help either. Bob Arnson-6 wrote: > > Alexei wrote: >> 1) So how would I find out is Windows Installer is keeping a reference >> count >> somewhere? >> > > Create a verbose log

Re: [WiX-users] DLLs and uninstalls

2007-08-08 Thread Alexei
forward a suggestion that the code be changed in the future. 3) I don't think I have marked the components as permanent but just to be sure - how would one go about doing so? Thank you for your time, Alexei Mike Dimmick-2 wrote: > > If things aren't being uninstalled, it's

Re: [WiX-users] Informational Registry key for windows products

2007-08-07 Thread Alexei
plication registry entries? > And here in this case say how do i add values for "HelpLink" and > "HelpTelephone" ? > http://www.nabble.com/file/p12032787/reg.jpg > > > Alexei wrote: >> >> Someone correct me if I'm wrong, but I believe the Win

Re: [WiX-users] Informational Registry key for windows products

2007-08-07 Thread Alexei
Someone correct me if I'm wrong, but I believe the Windows Installer will create these keys for you. All that you would need to do would be to supply a GUID for the application that you are installing. The first chapter http://www.tramontana.co.hu/wix/ here should help you out with this. There i

[WiX-users] DLLs and uninstalls

2007-08-07 Thread Alexei
that the DLLs installed on the target machine are unregistered before the new ones are installed and that they are also unregistered upon uninstall. Therefore I'd make sure the registry entries are removed. Are there any drawbacks to this? Thanks, Alexei -- View this message in context: http:/

Re: [WiX-users] Wix Property Values

2007-08-03 Thread Alexei
I'm not entirely sure what you are trying to do, but as far as I can tell you wish to let the user set up a username and a password for the db. And the username and date are to be retrieved from the UI. The way would do it would be to attach the editbox element with a public property, say USERNAME

Re: [WiX-users] registering VC++ dlls

2007-08-02 Thread Alexei
n dlls or an exe? I get the same errors as you > on an exe file but you said in the original post that you were trying > to register some dlls? Tallow should be run on the dlls not on the > exe itself. > > On 02/08/07, Alexei <[EMAIL PROTECTED]> wrote: >> >> Yup

Re: [WiX-users] registering VC++ dlls

2007-08-02 Thread Alexei
] args) Antony Walmsley wrote: > > What parameters are you passing to tallow? I use "tallow -s" on my VC6 > dlls and I get a list of registry values. > > On 02/08/07, Alexei <[EMAIL PROTECTED]> wrote: >> >> Hi guys, >> I've been asked to write a

[WiX-users] registering VC++ dlls

2007-08-02 Thread Alexei
Hi guys, I've been asked to write an installer for an application that requires two dlls to be registered. I've tried running tallow on the executable but it doesn't generate anything useful: Microsoft (R) Windows Installer Xml Tool version 2.0.5325.0 Copyright (C) Microsoft Corporation 2003. All

[WiX-users] getting data from ini or (failing that) the user

2007-07-26 Thread Alexei
Hey all, just wondering if it is possible to have an install read values and assign them to properties if there is the appropriate .ini file but if the file can not be found to go ahead and display the GUI (which will then be able to get the data from the user). The thing I'd like is to have this

Re: [WiX-users] Populating Listbox from a custom action

2007-07-20 Thread Alexei
The problem was that I wanted the LISTBOXVALUES property set to the Value column of the listbox, as opposed to the Text. I realise now that it was because I wasn't actually populating the listbox with any text - merely the value. What I wanted to do was: WcaAddTempRecord(hTable, hColumns, L"ListB

Re: [WiX-users] Populating Listbox from a custom action

2007-07-19 Thread Alexei
Thanks for all the replies however it's not the inclusion of the listbox table - that is most definitely there. And I can populate it as well. The problem is trying to achieve the behavior corresponding to but by using the wcautil.lib Currently I'm using WcaAddTempReco

Re: [WiX-users] Populating Listbox from a custom action

2007-07-18 Thread Alexei
K-ballo wrote: > > Make sure that the Table that you are adding values to, exists at the > msi database. If I'm not wrong that table is ListBox, so you could try > adding to your project and see if that works. > > K-ballo.- > Thanks for the reply. I'm fairly sure the table is there and is

[WiX-users] Populating Listbox from a custom action

2007-07-18 Thread Alexei Zhyzhyn
Hi everyone, what I'm trying to do is to populate a listbox in my install with a set of name-value pairs - so that when a user selects a name in the listbox, the listbox property is set to the value corresponding to that name. I know this can be done with something like:

Re: [WiX-users] Publish Event is acting like Publish Property

2007-05-25 Thread Alexei Boukirev
my features. > > When I comment out these two lines everything seems to work fine > (except for the functionality I’m trying to achieve). > > Any ideas? -- Best regards, Alexei Boukirev - This SF.net ema

Re: [WiX-users] How to create single installable exe

2006-09-20 Thread Alexei Boukirev
! >   >   > thanks > Vij > > All-new Yahoo! Mail - Fire up a more powerful email and get things done > faster. -- Best regards, Alexei Boukirev == "The ability to destroy a mainframe is insignific

Re: [WiX-users] WebSites in ComboBox dynamically

2006-07-12 Thread Alexei Boukirev
running on port 80 with a host header value of > SITE2. > > When I select a site from my combo box and set the values Website > element it appears that it is always installing under the default site. > How