Forum Discussion
irina_lukina
14 years agoSuper Contributor
Hi Rebecca,
If performing different operations depending on the operating system is your problem, then I recommend that you use the OSInfo program object:
var OSInfo = Sys.OSInfo;
// Obtain information on the running operating system
var Info = OSInfo.Name;
if (Info == "Win7")
// Perform operations for the Windows 7 operating system
else
// Perform operations for the Windows XP operating system
Does this help?