Hi All,

 I'm facing a problem in Wix Installer. 
It holding dialog box more an half an hour. Its not showing next dialog box
(Finish Dialog).
Log which i got is below,

MSI (s) (D4:2C) [05:54:51:162]: Note: 1: 1402 2:
UNKNOWN\Installer\Products\B03E6F925DD6B8F4AA3CCD9E18E155CF\SourceList 3: 2 
MSI (s) (D4:2C) [05:54:51:162]: Executing op: ProductPublishClient(,,)
MSI (s) (D4:2C) [05:54:51:162]: Executing op:
SourceListRegisterLastUsed(SourceProduct={29F6E30B-6DD5-4F8B-AAC3-DCE9811E55FC},LastUsedSource=C:\HydraShare\)
MSI (s) (D4:2C) [05:54:51:162]: Entering
CMsiConfigurationManager::SetLastUsedSource.
MSI (s) (D4:2C) [05:54:51:162]: Specifed source is already in a list.
MSI (s) (D4:2C) [05:54:51:162]: User policy value 'SearchOrder' is 'nmu'
MSI (s) (D4:2C) [05:54:51:162]: Machine policy value 'DisableBrowse' is 0
MSI (s) (D4:2C) [05:54:51:162]: Machine policy value 'AllowLockdownBrowse'
is 0
MSI (s) (D4:2C) [05:54:51:162]: Adding new sources is allowed.
MSI (s) (D4:2C) [05:54:51:162]: Set LastUsedSource to: C:\HydraShare\.
MSI (s) (D4:2C) [05:54:51:162]: Set LastUsedType to: n.
MSI (s) (D4:2C) [05:54:51:162]: Set LastUsedIndex to: 1.
MSI (s) (D4:2C) [05:54:51:162]: Executing op:
End(Checksum=0,ProgressTotalHDWord=0,ProgressTotalLDWord=710790)
MSI (s) (D4:2C) [05:54:51:162]: User policy value 'DisableRollback' is 0
MSI (s) (D4:2C) [05:54:51:162]: Machine policy value 'DisableRollback' is 0
Action 5:54:51: RollbackCleanup. Removing backup files

After this message, windows waiting for long time to finish installation.

Please anyone help me out.

Thanks in advance.

- Michael


Akshat Sharma wrote:
> 
> Hi All,
> 
>  I am logged in as an administrative user in windows vista and I have a
> custom action (which calls a VB script function) in my .wxs file which
> creates a firewall exception.
> If I run the created .msi normally (just double clicking on it), the
> installation goes to completion but my firewall exception is not made. If
> I  run the command prompt as Administrator and then run the .msi thru it
> ,the firewall exception gets created.  I cannot understand the reason for
> this.
> 
> I even have a condition which checks whether I am an admin or not and will
> ensures that the installation runs only if I am an admin.  The
> installation does run and does not flag any error (meaning I am the admin)
> but the firewall exception is not created.
> 
> Where am I going wrong ??
> 
> My  .wxs file looks like this :
> 
> .
> .
> .
> <Condition Message="You need to be an administrator to install this
> product.">
>       Privileged
>   </Condition>
> .
> .
> .
> <InstallExecuteSequence>
>        <Custom Action="FireWall" Sequence='1'/>
>       </InstallExecuteSequence>
> 
>       <Binary Id='b.vbs' src='b.vbs'/>
>       <CustomAction Id='FireWall' BinaryKey='b.vbs'
> VBScriptCall='FirewallEntry' Return='check'/>
> .
> .
> .
> .
> 
> My script file b.vbs is :
> 
> Function FireWallEntry
> 
> Set objFirewall = CreateObject("HNetCfg.FwMgr")
> Set objPolicy = objFirewall.LocalPolicy.CurrentProfile
> 
> Set objApplication = CreateObject("HNetCfg.FwAuthorizedApplication")
> objApplication.Name = "Fence aks Manager"
> objApplication.IPVersion = 2
> objApplication.ProcessImageFileName = "<PATH to my PROGRAM>"
> objApplication.RemoteAddresses = "*"
> objApplication.Scope = 0
> objApplication.Enabled = True
> 
> Set colApplications = objPolicy.AuthorizedApplications
> colApplications.Add(objApplication)
> 
> 
> 
> -Regards,
> Akshat
> end Function
> -------------------------------------------------------------------------
> Check out the new SourceForge.net Marketplace.
> It's the best place to buy or sell services for
> just about anything Open Source.
> http://sourceforge.net/services/buy/index.php
> _______________________________________________
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Problem-with-privileges-in-Custom-Action-%28-Wix-%29%28-.msi-%29-tp18002222p18386140.html
Sent from the wix-users mailing list archive at Nabble.com.


-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to