Hi
Dons final builder has a build in action \ function that checks for the machine OS ( XP, 2003, Win7 etc ) and the machine Platform ( 32 \ 64 bit ) ?
Thanks.
Thanks.
Hi,
FinalBuilder does not have an action that checks the OS and bitness of the current machine but you’re able to use the Run Script action to execute the following python script which leverages the .NET 4.0 framework to get the information:
import System
print System.Environment.OSVersion.VersionString
print System.Environment.Is64OperatingSystem #requires .NET 4.0
More information on the Environment class: http://msdn.microsoft.com/en-us/library/system.environment_members(v=VS.100).aspx
Regards,
Paul.