Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
4answers
4k views

How can I determine the Windows version from a VB 6 app?

I want to detect any Windows versions from 95 to Win 7. I also would like to display if the OS is 32-bit or 64-bit. That's it; it's that simple. :) What code could I use to do this from within a VB ...
2
votes
1answer
1k views

Problem with checking the Windows version from Inno Setup

My program installs a driver, which has different versions compiled for XP, Win2003, Vista/Win2008, and Win7. I use pascal functions to check which is the OS, and install the corresponding DLL. On ...
1
vote
0answers
20 views

Why might my installer detect a different Windows version when installed from Trial vs. CD?

I've got a bizarre bug that took me a while to track down. One some small # (maybe 1%) of our installations, the installed detects the Windows version as being XP instead of 7 (when it Windows 7, 32 ...
1
vote
1answer
212 views

Which Windows versions (including service pack number) support the .NET Framework?

On which versions of Windows (including minimum service pack level, if necessary) is the .NET Framework 3.5 SP1 supported? Also, is this information yet available for .NET 4.0? Edit: BarsMonster's ...
1
vote
2answers
271 views

Windows Server 2008 or Vista?

What is an easy (to implement) way to check whether I am on Windows Vista or Windows Server 2008 from a Python script? platform.uname() gives the same result for both versions.
0
votes
2answers
92 views

Translating GetVersionEx numbers into OS name

I have this list : 2.5.1.2600 2.5.2.3790 2.6.0.6000 2.6.0.6001 2.6.0.6002 2.6.1.7600 2.6.1.7601 That's a list of window versions, info comes from GetVersionEx, the numbers are: ...
0
votes
2answers
47 views

How to read windows build version via a Win API call or (better) reading a Registry value

Our installed is occasionally detecting the wrong version of Windows. (It detects version via built in Wise installer function to detect System Info and doesn't say HOW it does this). So, I'm looking ...
0
votes
1answer
129 views

List of Kernel32.dll versions that ship with various Windows versions?

I'm trying to find out the true Windows version. For some reason my Wise installer sometimes reports the an XP version # on Windows 7. One solution is to look at the kernel32.dll version as mentioned ...
0
votes
2answers
36 views

What values can OperatingSystem.Version have?

The Environment.OSVersion property can be used to get the version of the current OS. What value can its Version property have for the various OSes out there? I'm interested only in the Major and ...
0
votes
1answer
415 views

What value should I use for OnlyBelowVersion in InnoSetup for Windows 2000 only?

I want to use OnlyBelowVersion to install the sc.exe program if the Windows version is 2000 and not at all for Windows NT and below. What is the only below version required for Windows 2000 only, ie ...
0
votes
2answers
114 views

How can I get the Windows version number from .NET?

I'm using a virtualized web server and I don't remember whether it's running Windows Server 2000 or 2003. How can I tell which? Ask the ISP, course, which I did. The question, then, is somewhat ...