I am trying to get APMS to recognize what OS version it is running on and show a warning if it is not NT based by using System.GetOSVersionInfo. According to the help, PlatformId should do the trick. Below is the code I am trying to use, however, it is not working. I am running the code as an On Startup Action so it will immediately jump to a warning page, play a horribly annoying sound in a loop, and eject the CD. Unfortunately, it never actually jumps pages, instead it goes to the first page on the menu.
-- Check for 9x systems and annoy if found
OS_info = System.GetOSVersionInfo();
if OS_info.PlatformId == 1 then
Page.Jump("Win9x");
else end

