I need a way to retrieve the operating system from the host computer. I'm creating an install application and different things need to happen when it is WinNT vs. Win95. I know that I can use a Shell object to retrieve a NT or 2000 OS:
Dim wshSysEnv
Set wshSysEnv = objShell.Environment("PROCESS"
GetOS = wshSysEnv("OS"
But this will not tell me if it is a 95 machine. Any ideas on how to differentiate between the two machines?
Dim wshSysEnv
Set wshSysEnv = objShell.Environment("PROCESS"
GetOS = wshSysEnv("OS"
But this will not tell me if it is a 95 machine. Any ideas on how to differentiate between the two machines?