Re: [WiX-users] missing assemblies referenced by Custom Action

2011-05-11 Thread Dick Van den Brink
Did you add the dll to the CA project and set the "build action" to "Content"? > From: kurt.jen...@us.ophiropt.com > Date: Wed, 11 May 2011 08:27:10 -0600 > To: wix-users@lists.sourceforge.net > Subject: [WiX-users] missing assemblies referenced by Custom Action > > now (all of a sudden...) some

Re: [WiX-users] Undefined preprocessor variable '$(var.Spiricon.FactoryManager.TargetPath)'

2011-05-03 Thread Dick Van den Brink
I think it's confused because of the ".". When I create a WiX project in Visual Studio and add a reference to a project called Test.Project.Then i need to change the reference name (in the package project) to TestProject in order to access the variables. > From: kurt.jen...@us.ophiropt.com > D

Re: [WiX-users] Creatin User Group and add current user into it

2011-04-29 Thread Dick Van den Brink
I think you need a custom action for that. The WiX group element can only search groups and not create new ones according to the documentation. It can however add new or existing users to an existing group. > From: rahu...@microsoft.com > To: wix-users@lists.sourceforge.net > Date: Fri, 29 Apr

Re: [WiX-users] C# CustomAction DLL won't run?

2011-04-20 Thread Dick Van den Brink
perty"];} Regards, Dick van den Brink > From: j...@pinesoft.co.uk > To: wix-users@lists.sourceforge.net > Date: Wed, 20 Apr 2011 14:09:05 + > Subject: [WiX-users] C# CustomAction DLL won't run? > > Hi Guys, > > I've been writing a custom-action for detecting if a

Re: [WiX-users] XP Install as admin

2011-04-12 Thread Dick Van den Brink
Do you mean the windows xp "run as" window? -Original Message- From: Michael Tissington Sent: Tuesday, April 12, 2011 11:39 AM To: 'General discussion for Windows Installer XML toolset.' Subject: [WiX-users] XP Install as admin I'm a little confused ... I have seen some installs running

Re: [WiX-users] A RegistrySearch question and Multi-Instancequestions.

2011-04-08 Thread Dick Van den Brink
In Winrar in the general tab check "Create SFX archive".In the Advanced tab there is a button "SFX Options..."I think you can call and set paramaters to the executable there. I didn't test this, but it should be possible. > Date: Fri, 8 Apr 2011 09:34:31 -0500 > From: tyler.walters...@gmail.com

Re: [WiX-users] Shortcuts and Recent Programs list

2011-03-22 Thread Dick Van den Brink
That's weird, according to this: http://kb.flexerasoftware.com/doc/Helpnet/installshield16helplib_sp1/SettingShellShtctProp.htm and http://social.msdn.microsoft.com/Forums/en-US/winformssetup/thread/d8feae89-d5cd-44be-b21c-022a3c9a8a70 it should work. > Fr

Re: [WiX-users] Shortcuts and Recent Programs list

2011-03-22 Thread Dick Van den Brink
I don't have a Windows 7 pc where i can test this now, but i just tested this on Windows XP with Windows ® Installer. V 4.5.6001.22159 and no errors occured. I hope to test this setup on a Windows 7 pc (with Windows Installer 5) tomorrow to see if it doesnt create a recent programs shortcut. --

Re: [WiX-users] Creating new Oracle Database and basic table structure

2011-03-21 Thread Dick Van den Brink
Alot of information can be found here: http://www.tramontana.co.hu/wix/lesson3.php and http://www.tramontana.co.hu/wix/lesson10.php Regards, Dick van den Brink > Date: Mon, 21 Mar 2011 10:46:23 -0400 > Subject: Re: [WiX-users] Creating new Oracle Databa

Re: [WiX-users] Creating new Oracle Database and basic table structure

2011-03-21 Thread Dick Van den Brink
I don't think it's possible to do it in the wxs files but maybe you can write a custom action.In the custom action you could connect to the server and execute some scripts. > Also how to check whether oracle is installed or not in the system?Maybe with > a registry check? -

[WiX-users] Database Update

2011-03-18 Thread Dick Van den Brink
I found the problem.I was missing the "TEMPORARY" word in my query.The code below fixes my issue:session.Database.Execute(info.SqlInsertString + " TEMPORARY", record); > From: d_vandenbr...@live.com > To: wix-users@lists.sourceforge.net > Date: Fri, 18 Ma

[WiX-users] Database Update

2011-03-18 Thread Dick Van den Brink
Hi guys, I’m creating a custom action which tries to insert a row in the IniFile table. When executing this code, an exception occurs: TableInfo info = session.Database.Tables["IniFile"]; Record record = session.Database.CreateRecord(info.Columns.Count); record.FormatString = info.Columns