I think here is the issue, WiX code base- SQLExtension.wxs

 <CustomAction Id="CreateDatabase" BinaryKey="ScaExecute2"
DllEntry="CreateDatabase" Execute="deferred" Return="check" HideTarget="yes"
SuppressModularization="yes" *TerminalServerAware="yes"* />
        <CustomAction Id="RollbackCreateDatabase" BinaryKey="ScaExecute2"
DllEntry="DropDatabase" Execute="rollback" Return="check" HideTarget="yes"
SuppressModularization="yes" *TerminalServerAware="yes"* />
        <CustomAction Id="DropDatabase" BinaryKey="ScaExecute2"
DllEntry="DropDatabase" Execute="deferred" Return="check" HideTarget="yes"
SuppressModularization="yes" *TerminalServerAware="yes"* />
        <CustomAction Id="ExecuteSqlStrings" BinaryKey="ScaExecute2"
DllEntry="ExecuteSqlStrings" Execute="deferred" Return="check"
HideTarget="yes" SuppressModularization="yes" *TerminalServerAware="yes"* />
        <CustomAction Id="RollbackExecuteSqlStrings" BinaryKey="ScaExecute2"
DllEntry="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:
>
> > Any clues how to fix this?
> >
>
> If SQL Express requires elevated privileges to drop a database, it works
> differently than SQL Server and will require a different CA to do so. It
> might be the same code but a new CA entry to be elevated.
>
>
> --
> sig://boB
> http://joyofsetup.com/
>
>
>
-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to