[WiX-users] Modify Group Policy with WiX

2010-08-05 Thread Sajo Jacob
Does WiX support modifying group policy? I need to enable the GP force a specific visual style file or force Windows Classic from my MSI. Thanks, Jacob -- The Palm PDK Hot Apps Program offers developers who use the

Re: [WiX-users] Modify Group Policy with WiX

2010-08-05 Thread Sajo Jacob
it shouldn't be done through an install but rather through Active Directory GPO directly. - Original Message From: Sajo Jacob spja...@gmail.com To: General discussion for Windows Installer XML toolset. wix-users@lists.sourceforge.net Sent: Thu, August 5, 2010 12:25:25 PM Subject

Re: [WiX-users] Modify Group Policy with WiX

2010-08-05 Thread Sajo Jacob
because a domain controller will just come by a little bit later and fix it for you. Why don't you just update your VM images? - Original Message From: Sajo Jacob spja...@gmail.com To: General discussion for Windows Installer XML toolset. wix-users@lists.sourceforge.net Sent

Re: [WiX-users] GAC an assembly without embedding it within the MSI

2010-06-20 Thread Sajo Jacob
well undo your updates performed outside of MSI. -Original Message- From: Sajo Jacob [mailto:spja...@gmail.com] Sent: Friday, June 18, 2010 9:11 AM To: General discussion for Windows Installer XML toolset. Subject: [WiX-users] GAC an assembly without embedding it within the MSI I want

[WiX-users] GAC an assembly without embedding it within the MSI

2010-06-18 Thread Sajo Jacob
I want to GAC an assembly already present on target machines, I know where this assembly is on every machine (you can assume, that path is static for all target machines and wont change) I do not want to include the assembly to be GAC'd in the MSI since it can change with each software deployment

[WiX-users] Alternative to dotNetInstaller for chaining MSI's?

2010-06-04 Thread Sajo Jacob
Is there a better alternative to dotNetInstaller for chaining MSI's, MSU's and EXE files? dotNetInstaller is terrible in quiet mode with no options/documentation on what parameters to pass when a component install fails etc (e.g Continue Yes/No) Thanks, Jacob

[WiX-users] Chain an MSU within my WiX installer

2010-05-13 Thread Sajo Jacob
Couple of questions here: 1) My installer is basically a machine prep install which needs to update the target machine with an msu. How can I chain an MSU with WiX? 2) I need to turn off Windows Update Service as the last step in my installer, but the MSU update can restart the machine so how

[WiX-users] Start an existing disabled service?

2010-05-12 Thread Sajo Jacob
I have to start the Themes windows service from my MSI. If the service is disabled on the target machine, I want to change the service config to Auto and start the service. How can I do this in WiX? Thanks, Jacob --

Re: [WiX-users] WiXSqlExtension issue on Vista with UAC

2008-04-03 Thread Sajo Jacob
this? Jacob On Sun, Mar 23, 2008 at 8:44 PM, Sajo Jacob [EMAIL PROTECTED] wrote: are you testing by running from an elevated command prompt? I believe this will cause impersonated actions to be elevated. No, Running uninstallation from an elevated command prompt is the only way I am able

Re: [WiX-users] WiXSqlExtension issue on Vista with UAC

2008-04-03 Thread Sajo Jacob
=ExecuteSqlStrings Execute=rollback Return=check HideTarget=yes SuppressModularization=yes *TerminalServerAware=yes* / TerminalServerAware should be set to No and Impersonate should be set to no, that should fix it. Jacob On Thu, Apr 3, 2008 at 6:43 PM, Bob Arnson [EMAIL PROTECTED] wrote: Sajo Jacob wrote

Re: [WiX-users] WiXSqlExtension issue on Vista with UAC

2008-03-27 Thread Sajo Jacob
Any update on this? Thanks, Jacob On Sun, Mar 23, 2008 at 8:44 PM, Sajo Jacob [EMAIL PROTECTED] wrote: are you testing by running from an elevated command prompt? I believe this will cause impersonated actions to be elevated. No, Running uninstallation from an elevated command prompt

Re: [WiX-users] WiXSqlExtension issue on Vista with UAC

2008-03-23 Thread Sajo Jacob
. -- Mike Dimmick -- *From:* [EMAIL PROTECTED] [mailto: [EMAIL PROTECTED] *On Behalf Of *Sajo Jacob *Sent:* 23 March 2008 04:46 *To:* Bob Arnson *Cc:* wix-users@lists.sourceforge.net *Subject:* Re: [WiX-users] WiXSqlExtension issue on Vista with UAC

Re: [WiX-users] WiXSqlExtension issue on Vista with UAC

2008-03-22 Thread Sajo Jacob
SQL Server 2005 Express. In fact this issue also causes the Repair scenario to fail. Jacob On Sat, Mar 22, 2008 at 1:29 PM, Bob Arnson [EMAIL PROTECTED] wrote: Sajo Jacob wrote: If it is by design, then there is a problem with using WiXSqlExtension for creating an installer for Vista/WS2008

Re: [WiX-users] WiXSqlExtension issue on Vista with UAC

2008-03-20 Thread Sajo Jacob
fine with UAC turned on during the installation. The issue is only when it attempts to drop the database during uninstallation. Jacob On Wed, Mar 19, 2008 at 10:11 AM, Bob Arnson [EMAIL PROTECTED] wrote: Sajo Jacob wrote: I am using WiX 3.0.29.25, I am suspecting that the custom actions

Re: [WiX-users] WiXSqlExtension issue on Vista with UAC

2008-03-19 Thread Sajo Jacob
. Also, that is an older WiX version. When fixed you'll need to download updates from http://wix.sf.net/releases. Sajo Jacob wrote: I am using WiX 3.0.29.25 http://3.0.29.25, I am suspecting that the custom actions in WiXSqlExtension: CreateDatabase, DropDatabase, ExecuteSQLStrings

Re: [WiX-users] ReserveCost! MSI not correctly displaying the Disk Space

2008-03-19 Thread Sajo Jacob
Also, all the values of the FileSize in the File table are correct too but the features shows completely wrong space needed for the feature, (shows about .5% of the actual space needed to be accurate). Jacob On Tue, Mar 18, 2008 at 6:02 PM, Sajo Jacob [EMAIL PROTECTED] wrote: I used

[WiX-users] ReserveCost! MSI not correctly displaying the Disk Space

2008-03-18 Thread Sajo Jacob
I used ReserveCost to indicate the space needed by my Installer, but the Installer is not correctly showing the required space which is causing my installer to not warn the end user and the installation ends up rolling back. I checked the reservecost table in the MSI using orca, seems like all

[WiX-users] WiXSqlExtension issue on Vista with UAC

2008-03-18 Thread Sajo Jacob
I am using WiX 3.0.29.25, I am suspecting that the custom actions in WiXSqlExtension: CreateDatabase, DropDatabase, ExecuteSQLStrings and RollbackExecuteStrings are not getting deferred by default. When I attempt to uninstall the product from Vista with UAC turned on, the installer complains about

[WiX-users] OSQL query fails with msiexec!

2008-02-15 Thread Sajo Jacob
I have an OSQL query which runs a select statement to determine the sql engine version on the target machine in a VBScript Custom action, it works fine when I run the MSI by double clicking it, but when I attempt to do a msiexec /i xyz.msi the osql command fails and the select doesn't return any

[WiX-users] Scrollabletext control

2008-02-12 Thread Sajo Jacob
Has someone does something like this in a scrollabletext box? I know that the scrollabletext control requires that only rich text be loaded but I wanted to embed text assigned to a property coming in from a VBScript I tried this code and different variations of escape sequences but it just shows

[WiX-users] SQL Server version check from WiX without using SQLDMO

2008-02-11 Thread Sajo Jacob
On the installer we used SQLDMO to prepopulate the sql servers on the target machine in a combo box and also added logic to avoid stomping a database on an unsupported version of sql server if the user selects an unsupported sql server from the dropdown but we ran into a problem when SQLDMO wasn't

[WiX-users] Upgrade scenario with multiple existing products!

2008-01-29 Thread Sajo Jacob
I have a tricky situation with my upgrade scenarios; I have 3 existing products all of which have different upgrade codes which needs to be upgraded to my new product (Major Upgrade). The 3 existing old products have different entries in the add/remove programs. I was planning to upgrade one of

[WiX-users] Restoring a database from an mdf/ldf

2007-11-08 Thread Sajo Jacob
I have a scenario where I have to restore a database from an mdf/ldf on to the target machine during the installation which I was planning on accomplishing by : 1) Copying the mdf/ldf to a *MySoftware/Data* folder 2) Calling a sql script *AttachDB.sql* (using the SqlScript element)

Re: [WiX-users] Heat with self-registration dlls!

2007-10-31 Thread Sajo Jacob
Thanks! that explains the exe's but how about the dlls with this issue? Jacob On 10/31/07, Bob Arnson [EMAIL PROTECTED] wrote: Sajo Jacob wrote: I ran heat against a set of self-registration dlls and exe's, I compared the WXS generated by darking an MSI which contained the same dlls

[WiX-users] SelectionTree not showing the features to be installed!

2007-10-29 Thread Sajo Jacob
I have defined all my features with Display='expand' and AllowAdvertise=yes with the appropriate components refs but still don't see the features on the selectiontree. It in fact shows a 2 level tree with no names to the features, something is definitely not right here since I have more than 2

[WiX-users] Controls not displaying w/ bkgrd bitmaps-workaround

2007-10-26 Thread Sajo Jacob
Is this a know issue that when you set a background bitmap on the dialog, controls like push buttons, radio and check boxes don't show up until you hover over with the mouse? Also in this case it shows the controls like check boxes with the standard gray color, setting the transparent property

[WiX-users] Break up wix code

2007-10-17 Thread Sajo Jacob
I am a newbie with WiX. I had a quick question regarding structuring my WiX wxs file. The way I have it set up is that all the UI code is in this one large .WXS file. I was wondering if I could break up this WXS file into smaller files (maybe like each UI Dialog in its own file or something) so