How do I detect Windows Small Business Server operating system? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T23:22:05Z http://stackoverflow.com/feeds/question/1006272 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1006272/how-do-i-detect-windows-small-business-server-operating-system 0 How do I detect Windows Small Business Server operating system? Anodyne 2009-06-17T10:37:45Z 2009-06-17T10:45:57Z <p>My employer is considering releasing two versions of the same Windows Server-based product; a cheaper "small business" edition and a more expensive "enterprise" edition.</p> <p>There will be a number of differences between the editions, but ideally we'd like to restrict the "small business" edition to only install on Microsoft Small Business Server (SBS) 2000 or the newer Windows SBS 2003 and 2008.</p> <p>Is there a reliable way to detect (via an API call or the Registry, for example) whether or not the operating system is one of those SBS products?</p> http://stackoverflow.com/questions/1006272/how-do-i-detect-windows-small-business-server-operating-system/1006286#1006286 1 Answer by macbirdie for How do I detect Windows Small Business Server operating system? macbirdie 2009-06-17T10:41:07Z 2009-06-17T10:41:07Z <p><a href="http://msdn.microsoft.com/en-us/library/ms724429%28VS.85%29.aspx" rel="nofollow">Here's</a> an MSDN article describing probing the operating system version, including whether the system is a small business product( <code>PRODUCT_SMALLBUSINESS_SERVER</code> enumeration ).</p> http://stackoverflow.com/questions/1006272/how-do-i-detect-windows-small-business-server-operating-system/1006308#1006308 1 Answer by Anton Gogolev for How do I detect Windows Small Business Server operating system? Anton Gogolev 2009-06-17T10:45:57Z 2009-06-17T10:45:57Z <p>I guess <a href="http://msdn.microsoft.com/en-us/library/ms724451%28VS.85%29.aspx" rel="nofollow">GetVersionEx()</a>, which returns <a href="http://msdn.microsoft.com/en-us/library/ms724833%28VS.85%29.aspx" rel="nofollow">OSVERSIONINFOEX</a> will do:'</p> <ul> <li><p><code>VER_SUITE_SMALLBUSINESS</code> : Microsoft Small Business Server was once installed on the system, but may have been upgraded to another version of Windows. Refer to the Remarks section for more information about this bit flag.</p></li> <li><p><code>VER_SUITE_SMALLBUSINESS_RESTRICTED</code> : Microsoft Small Business Server is installed with the restrictive client license in force. Refer to the Remarks section for more information about this bit flag.</p></li> </ul>