Re: [WiX-users] HI WIX 3.0 FileShare question

2007-10-19 Thread Sebastian Brand
What does your wix file look like? FileShare uses the component's directory. If you want to use different drives for the fileshares your Directory structure must be correct. How do you get those E:\.. and D:\.. folders on the target system? Best regards, Sebastian Brand Instyler Software

Re: [WiX-users] Path to MSI?

2007-10-19 Thread Richard
In article [EMAIL PROTECTED], Sebastian Brand [EMAIL PROTECTED] writes: Using the [SourceDir] property? :-) SourceDir is only correct after you call ResolveSource. Calling ResolveSource can require that the original media be present. This is problematic for upgrades and patching,

[WiX-users] Changing the text in the UI

2007-10-19 Thread 0x001A4
I can't seem to find the area where I can change the various texts in the UI. For instance, I would like to change the title on some of the screens. This what I see in the element: Control Id=Title Type=Text X=135 Y=100 Width=220 Height=60 Transparent=yes NoPrefix=yes Text=$(loc.ExitDialogTitle)

[WiX-users] example Wix project

2007-10-19 Thread hina1703
Hi, Is there any example Wix project available which shows the installation of an executable e.g. adobe reader if the registry key is missing? I need to investigate WIX to find out if it can be our installation tool. Currently we use InstallShield, I need to give demo with a sample project to

[WiX-users] Problems with copy file

2007-10-19 Thread Mike Menaker
Hi, I can't get copyfile to copy a file. Here is the element I use (PATH is a property set earlier) File Id=FILE1 Name=FILE1 LongName=MovieSearch.gram Source=$(var.SOURCEPATH)\ \ CopyFile Id=CopyFile DestinationName= FILE1 DestinationLongName=file.txt

Re: [WiX-users] example Wix project

2007-10-19 Thread Richard
In article [EMAIL PROTECTED], hina1703 [EMAIL PROTECTED] writes: Yes, I did. It is very helpful. I am trying to find out any bigger WIX project available for study including bootstrapper other functions. I am working on converting the installer for the sample code for my book, but I

Re: [WiX-users] example Wix project

2007-10-19 Thread hina1703
Yes, I did. It is very helpful. I am trying to find out any bigger WIX project available for study including bootstrapper other functions. Hina Richard-45 wrote: In article [EMAIL PROTECTED], hina1703 [EMAIL PROTECTED] writes: Is there any example Wix project available which

[WiX-users] Shortcut Targets and Shared Components

2007-10-19 Thread Robert.Priest
Hello all, I was just wondering if the was a bug or not: So I have a component (in a separate fragment) that installs a file and adds a shortcut on the Program Menu. That component is used in 2 features. However, when I open the compiled msi file in Orca and look at the Shortcut Table,

Re: [WiX-users] Problems with copy file

2007-10-19 Thread Mike Menaker
According to the Wix Documentation DestinationProperty String Set this value to a property that will have a value that resolves to the full path of the destination directory. The property does not have to exist in the installer database at creation time; it could be created at

Re: [WiX-users] Problems with copy file

2007-10-19 Thread Richard
In article [EMAIL PROTECTED], Mike Menaker [EMAIL PROTECTED] writes: How would I do this? Path is set by the user like this from the UI: Control Id=EditPath Type=Edit X=21 Y=64 Width=237 Height=17 Property=PATH It seems like I would just keep running into the problem of

Re: [WiX-users] Problems with copy file

2007-10-19 Thread Richard
In article [EMAIL PROTECTED], Jeremy Farrell [EMAIL PROTECTED] writes: Then, assuming the documentation's correct, it needs to be set to a property which contains the required path as the doc says. In DestinationProperty=PATH which works, you've set it to the name of the

Re: [WiX-users] Problems with copy file

2007-10-19 Thread Mike Menaker
How would I do this? Path is set by the user like this from the UI: Control Id=EditPath Type=Edit X=21 Y=64 Width=237 Height=17 Property=PATH It seems like I would just keep running into the problem of combining the property with a string. -Original Message- From: [EMAIL

Re: [WiX-users] Changing the text in the UI

2007-10-19 Thread 0x001A4
Sorry this can be ignored. I found the file. In case anyone else has the same question, it is WixUI_en-us.wxl 0x001A4 wrote: I can't seem to find the area where I can change the various texts in the UI. For instance, I would like to change the title on some of the screens. This what I see

Re: [WiX-users] Adding Bootstrapper code to wxs file. (Somebody, please guide....)

2007-10-19 Thread Kelly Leahy
Yep... definitely shouldn't be moving built-in files like msbuild.exe. Lots of bad things can happen as most of those sorts of tools assume they are in a particular location when you're using them. Better to qualify your path to the file or use the windows path to get a reference to it via

Re: [WiX-users] Adding Bootstrapper code to wxs file. (Somebody, please guide....)

2007-10-19 Thread hina1703
Yes. I copied MSBuild.exe from C:\WINDOWS\Microsoft.NET\Framework64\v2.0.50727 to C:\WIX\Test_Dot_NET for building purpose. Thanks, Hina John Vottero wrote: Is that all the diagnostic output? The Initial Properties section seems to be missing. Did you move or copy the MSBuild.exe

Re: [WiX-users] Path to MSI?

2007-10-19 Thread Wilson, Phil
The OriginalDatabase is sometimes a reasonable alternative, but it has its own pitfalls too. The key issue is whether you want it in all circumstances (uninstall, repair, modify) or only at first install. In particular, OriginalDatabase works before any implicit ResolveSource in the first install.

Re: [WiX-users] Path to MSI?

2007-10-19 Thread Rad Ricka
Thanks Richard, SourceDir works perfectly for me; but thanks for pointing out the pitfalls. Regards, R. - Original Message - From: Richard [EMAIL PROTECTED] To: WiX Users wix-users@lists.sourceforge.net Sent: Friday, October 19, 2007 3:08 PM Subject: Re: [WiX-users] Path to MSI?

Re: [WiX-users] Detecting processor model

2007-10-19 Thread jrcolons
How can I get those variables passed to my wix script? Tony Hoyle wrote: Alexei Boukirev wrote: Windows NT 4 and above have several environemnt variables that you can check in MSI: PROCESSOR_IDENTIFIER, PROCESSOR_LEVEL, and PROCESSOR_REVISION. So Pentium II on one of my desktops has

Re: [WiX-users] Adding Bootstrapper code to wxs file. (Somebody, please guide....)

2007-10-19 Thread John Vottero
Is that all the diagnostic output? The Initial Properties section seems to be missing. Did you move or copy the MSBuild.exe executable? If so, don't. It looks for other files (like *.task) in the same location as the executable. -Original Message- From: [EMAIL PROTECTED]

Re: [WiX-users] Adding Bootstrapper code to wxs file. (Somebody, please guide....)

2007-10-19 Thread hina1703
Here is the diagnostic output: Initial Items: BootstrapperFile Microsoft.JSharp.2.0 Microsoft.Net.Framework.2.0 Microsoft.Sql.Server.Express.1.0 Microsoft.Windows.Installer.3.1 Target Bootstrapper in file C:\WIX\Test_Dot_NET\Bootstrapper.xml: MSBUILD : warning MSB4010: The

Re: [WiX-users] Path to MSI?

2007-10-19 Thread Sebastian Brand
Using the [SourceDir] property? :-) Best regards, Sebastian Brand Instyler Software - http://www.instyler.com On Oct 19, 2007, at 10:10 AM, Rad Ricka wrote: Hello, what's the most effective way to programmatically get the path to where my MSI is being run from? Cheers, R.

Re: [WiX-users] HI WIX 3.0 FileShare question

2007-10-19 Thread Sebastian Brand
I'm not sure if this works, but give it a try: You can create a new Directory element: Directory Name=[BLA] Component FileShare... .../ and call the msi (using msiexec) with the parameter BLA=D:\Share1 The location of the new Directory may be anywhere as the BLA property is passed with

Re: [WiX-users] HI WIX 3.0 FileShare question

2007-10-19 Thread Krishna Sapkota (Solutions IQ)
Hi Sebastian, Thank you very much for the response. I am using following code snippet for creating file-share: Directory Id=TARGETDIR Name=SourceDir Directory Id=ProgramFilesFolder Directory Id=INSTALLLATIONDIR Name=$(var.ProductName) Component Id=ProductComponent

Re: [WiX-users] Custom Actions.

2007-10-19 Thread Jason Rivers
Hi Dana, The custom Action i'm calling, actually gets a list of files with an extension of .DIN .DSE from the directory where our product has been installed to. These define the Keyboard for our application, and a session file, the user can change these during the install, this is why it is in a

Re: [WiX-users] Custom Actions.

2007-10-19 Thread Dana Gutride
What does the msi log say is happening here? That is usually the best way to troubleshoot custom action errors. The other trick I'll use is pop up a message box from my custom action code and then attach to it with the debugger. As a rule, any custom actions that modify the target system should

Re: [WiX-users] Detecting processor model

2007-10-19 Thread Richard
In article [EMAIL PROTECTED], jrcolons [EMAIL PROTECTED] writes: How can I get those variables passed to my wix script? You can access environment variables from a Formatted string using [%envarname] syntax. You can use a type 51 CA to set a property to the value of an environment

[WiX-users] Path to MSI?

2007-10-19 Thread Rad Ricka
Hello, what's the most effective way to programmatically get the path to where my MSI is being run from? Cheers, R.- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop.

Re: [WiX-users] HI WIX 3.0 FileShare question

2007-10-19 Thread Krishna Sapkota (Solutions IQ)
This is what I was trying but it didn't work. It creates the physical folder named [BLA] in the InstalledDIR and creates the file-share on it. It does not create the D:\Share1 folder but creates a folder named [BLA]. Thanks, -Krishna Krishna Sapkota | Software Design Engineer | SolutionsIQ

[WiX-users] FilePath manipulation in WIX

2007-10-19 Thread Nitin Chaudhari
Hi, I can do a registrysearch and obtain a path like : D:\Program Files\Microsoft Office\OFFICE11\ADDINS\OTKLOADR.DLL Once I have this path I want to split it in directory (D:\Program Files\Microsoft Office\OFFICE11\ADDINS) and file (OTKLOADR.DLL) and then use it in directorysearch and

Re: [WiX-users] Path to MSI?

2007-10-19 Thread Richard
In article [EMAIL PROTECTED], Rad Ricka [EMAIL PROTECTED] writes: what's the most effective way to programmatically get the path to where = my MSI is being run from? What's the goal? What problem are you trying to solve by getting the path of the MSI? -- The Direct3D Graphics Pipeline