Re: [WiX-users] System Properties?

2013-04-03 Thread James Allen
Thanks for all the help guys, that got me unstuck!

James Allen


--
Minimize network downtime and maximize team effectiveness.
Reduce network management and security costs.Learn how to hire 
the most talented Cisco Certified professionals. Visit the 
Employer Resources Portal
http://www.cisco.com/web/learning/employer_resources/index.html
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] System Properties?

2013-04-03 Thread Hoover, Jacob
I would use bal:Condition instead of Bundle/@Condition.  The bal:Condition 
allows you to specify a message, the Bundle/@Condition feels like it is more 
designed for when your BA requires something for it to run.

Ex:

[PhysicalMemory] > 2048

Note, PhysicalMemory is not a burn built in variable, so you would have to 
define it yourself. Also, the Message attribute is localizable.

EvaluateConditions is called by OnDetectComplete if you are using WixStdBA. I 
believe you can use all the applicable *Search elements to dig for data or you 
could roll your own BA or extension which would add these additional variables 
to burn.

-Original Message-
From: Rob Mensching [mailto:r...@robmensching.com] 
Sent: Wednesday, April 03, 2013 11:10 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] System Properties?

The first list I sent is for Bundles, the second list is for MSIs.


On Wed, Apr 3, 2013 at 9:01 AM, James Allen wrote:

> This will compile however the resultant .exe will not run, what am I 
> doing wrong?
>
>  UpgradeCode="3601032C-27E7-A8C9-4323-88E01967A9C2145E"
> Condition="((VersionNT >= v5.1) AND (ServicePackLevel< 
> http://msdn.microsoft.com/en-us/library/windows/desktop/aa371639(v=vs.
> 85).aspx>
> >=2) AND (PhysicalMemory > 2048) AND (OutOfDiskSpace = 'FALSE'))" >
>
> James Allen
>
>
>
> --
>  Minimize network downtime and maximize team effectiveness.
> Reduce network management and security costs.Learn how to hire the 
> most talented Cisco Certified professionals. Visit the Employer 
> Resources Portal 
> http://www.cisco.com/web/learning/employer_resources/index.html
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
>
--
Minimize network downtime and maximize team effectiveness.
Reduce network management and security costs.Learn how to hire the most 
talented Cisco Certified professionals. Visit the Employer Resources Portal 
http://www.cisco.com/web/learning/employer_resources/index.html
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Minimize network downtime and maximize team effectiveness.
Reduce network management and security costs.Learn how to hire 
the most talented Cisco Certified professionals. Visit the 
Employer Resources Portal
http://www.cisco.com/web/learning/employer_resources/index.html
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] System Properties?

2013-04-03 Thread Steven Ogilvie
You need an actual number for the ServicePackLevel

Try this: ((VersionNT = v5.1 AND ServicePackLevel >= 3) OR (VersionNT = v5.2 
AND ServicePackLevel >= 2) OR (VersionNT = v6.0 AND ServicePackLevel >= 1 AND 
NTProductType = 1) OR (VersionNT = v6.0 AND ServicePackLevel >= 1 AND 
NTProductType = 3) OR (VersionNT = v6.1 AND ServicePackLevel >= 1 AND 
NTProductType = 1) OR (VersionNT = v6.1 AND ServicePackLevel >= 1 AND 
NTProductType = 3) OR (VersionNT = v6.2 AND NTProductType = 1) OR (VersionNT = 
v6.2 AND NTProductType = 3))

This checks: Windows XP with Service Pack 3, Windows Vista with Service Pack 1, 
Windows 7 with Service Pack 1, Windows Server 2008 R2 with Service Pack 1, 
Windows 8, Windows Server 2012


-Original Message-
From: James Allen [mailto:jal...@bidpalnetwork.com] 
Sent: April-03-13 12:02 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] System Properties?

This will compile however the resultant .exe will not run, what am I doing 
wrong?

http://msdn.microsoft.com/en-us/library/windows/desktop/aa371639(v=vs.85).aspx>
 >=2) AND (PhysicalMemory > 2048) AND (OutOfDiskSpace = 'FALSE'))" >

James Allen


--
Minimize network downtime and maximize team effectiveness.
Reduce network management and security costs.Learn how to hire the most 
talented Cisco Certified professionals. Visit the Employer Resources Portal 
http://www.cisco.com/web/learning/employer_resources/index.html
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Minimize network downtime and maximize team effectiveness.
Reduce network management and security costs.Learn how to hire 
the most talented Cisco Certified professionals. Visit the 
Employer Resources Portal
http://www.cisco.com/web/learning/employer_resources/index.html
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] System Properties?

2013-04-03 Thread Rob Mensching
Sorry, I should have been more clear up front.


On Wed, Apr 3, 2013 at 9:09 AM, Rob Mensching  wrote:

> The first list I sent is for Bundles, the second list is for MSIs.
>
>
> On Wed, Apr 3, 2013 at 9:01 AM, James Allen wrote:
>
>> This will compile however the resultant .exe will not run, what am I
>> doing wrong?
>>
>> > UpgradeCode="3601032C-27E7-A8C9-4323-88E01967A9C2145E"
>> Condition="((VersionNT >= v5.1) AND (ServicePackLevel<
>> http://msdn.microsoft.com/en-us/library/windows/desktop/aa371639(v=vs.85).aspx>
>> >=2) AND (PhysicalMemory > 2048) AND (OutOfDiskSpace = 'FALSE'))" >
>>
>> James Allen
>>
>>
>>
>> --
>> Minimize network downtime and maximize team effectiveness.
>> Reduce network management and security costs.Learn how to hire
>> the most talented Cisco Certified professionals. Visit the
>> Employer Resources Portal
>> http://www.cisco.com/web/learning/employer_resources/index.html
>> ___
>> WiX-users mailing list
>> WiX-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wix-users
>>
>>
>
--
Minimize network downtime and maximize team effectiveness.
Reduce network management and security costs.Learn how to hire 
the most talented Cisco Certified professionals. Visit the 
Employer Resources Portal
http://www.cisco.com/web/learning/employer_resources/index.html
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] System Properties?

2013-04-03 Thread Rob Mensching
The first list I sent is for Bundles, the second list is for MSIs.


On Wed, Apr 3, 2013 at 9:01 AM, James Allen wrote:

> This will compile however the resultant .exe will not run, what am I doing
> wrong?
>
>  UpgradeCode="3601032C-27E7-A8C9-4323-88E01967A9C2145E"
> Condition="((VersionNT >= v5.1) AND (ServicePackLevel<
> http://msdn.microsoft.com/en-us/library/windows/desktop/aa371639(v=vs.85).aspx>
> >=2) AND (PhysicalMemory > 2048) AND (OutOfDiskSpace = 'FALSE'))" >
>
> James Allen
>
>
>
> --
> Minimize network downtime and maximize team effectiveness.
> Reduce network management and security costs.Learn how to hire
> the most talented Cisco Certified professionals. Visit the
> Employer Resources Portal
> http://www.cisco.com/web/learning/employer_resources/index.html
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
>
--
Minimize network downtime and maximize team effectiveness.
Reduce network management and security costs.Learn how to hire 
the most talented Cisco Certified professionals. Visit the 
Employer Resources Portal
http://www.cisco.com/web/learning/employer_resources/index.html
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] System Properties?

2013-04-03 Thread James Allen
This will compile however the resultant .exe will not run, what am I doing 
wrong?

http://msdn.microsoft.com/en-us/library/windows/desktop/aa371639(v=vs.85).aspx>
 >=2) AND (PhysicalMemory > 2048) AND (OutOfDiskSpace = 'FALSE'))" >

James Allen


--
Minimize network downtime and maximize team effectiveness.
Reduce network management and security costs.Learn how to hire 
the most talented Cisco Certified professionals. Visit the 
Employer Resources Portal
http://www.cisco.com/web/learning/employer_resources/index.html
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] System Properties?

2013-04-03 Thread Rob Mensching
http://wix.sourceforge.net/manual-wix3/bundle_built_in_variables.htm
http://msdn.microsoft.com/en-us/library/windows/desktop/aa370905(v=vs.85).aspx


On Wed, Apr 3, 2013 at 7:14 AM, James Allen wrote:

> I am building a bootstrapper for which I need to check minimum system
> requirements and I was wondering if there is a way to check for the
> following :
>
> Ø  Available Hard Disk Space
>
> Ø  RAM
>
> Ø  Processor
>
> Ø  Display Screen resolution
>
>
> I would like to do this from my Bundle element if that is possible. Also
> is there a list I can reference of the predefined WiX properties that can
> be used in Launch Conditions?
>
> James Allen
>
>
>
> --
> Minimize network downtime and maximize team effectiveness.
> Reduce network management and security costs.Learn how to hire
> the most talented Cisco Certified professionals. Visit the
> Employer Resources Portal
> http://www.cisco.com/web/learning/employer_resources/index.html
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
>
--
Minimize network downtime and maximize team effectiveness.
Reduce network management and security costs.Learn how to hire 
the most talented Cisco Certified professionals. Visit the 
Employer Resources Portal
http://www.cisco.com/web/learning/employer_resources/index.html
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] System Properties?

2013-04-03 Thread James Allen
I am building a bootstrapper for which I need to check minimum system 
requirements and I was wondering if there is a way to check for the following :

Ø  Available Hard Disk Space

Ø  RAM

Ø  Processor

Ø  Display Screen resolution


I would like to do this from my Bundle element if that is possible. Also is 
there a list I can reference of the predefined WiX properties that can be used 
in Launch Conditions?

James Allen


--
Minimize network downtime and maximize team effectiveness.
Reduce network management and security costs.Learn how to hire 
the most talented Cisco Certified professionals. Visit the 
Employer Resources Portal
http://www.cisco.com/web/learning/employer_resources/index.html
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users