CD 1: German(德语), Japanese(日文)
(448 MB ISO p_w_picpath)
CD 2: French(法语), Spanish(西班牙语), Italian(意大利语)
(554 MB ISO p_w_picpath)
CD 3: Korean(朝鲜语), Chinese Simplified(简体中文), Chinese Traditional(繁体中文)
(561 MB ISO p_w_picpath)
CD 4: Swedish(瑞典语)
(161 MB ISO p_w_picpath)
适用于以下操作系统的英文版
Microsoft® Windows® XP Professional operating system, x64 Edition
Microsoft® Windows Server™ 2003 operating system, Standard x64 Edition
Microsoft® Windows Server™ 2003 operating system, Enterprise x64 Edition
Microsoft® Windows Server™ 2003 operating system, Datacenter x64 Edition
下载地址:
Win2003 x64语言包CD1
Win2003 x64语言包CD2
Win2003 x64语言包CD3
Win2003 x64语言包CD4
转载于:https://blog.51cto.com/jideq/1125906
CD1:German(德语),Japanese(日文)(448MBISOp_w_picpath)CD2:French(法语),Spanish(西班牙语),Italian(意大利语)(554MBISOp_w_picpath)CD3:Korean(朝鲜语),ChineseSimplified(简体中文)...
在 C
语言
中,可以使用 _WIN32 和 _WIN64 宏来判断系统是 32 位还是 64 位。要判断具体是
Windows
XP 还是
Windows
Server 2003,可以使用
Windows
API 函数 GetVersionEx。该函数可以获取系统的
版本
信息,其中
包括
系统类型、主
版本
号和次
版本
号等。
举个例子:
#include <
Windows
.h>
int main() {
OSVERSIONINFOEX osvi;
ZeroMemory(&osvi, sizeof(OSVERSIONINFOEX));
osvi.dwOSVersionInfoSize = sizeof(OSVERSIONINFOEX);
if (GetVersionEx((LPOSVERSIONINFO)&osvi)) {
if (osvi.dwMajorVersion == 5 && osvi.dwMinorVersion == 1) {
printf("This is
Windows
XP.\n");
} else if (osvi.dwMajorVersion == 5 && osvi.dwMinorVersion == 2) {
printf("This is
Windows
Server 2003.\n");
} else {
printf("This is not
Windows
XP or
Windows
Server 2003.\n");
return 0;
这段代码中使用了 GetVersionEx 函数来获取系统
版本
信息,并使用 dwMajorVersion 和 dwMinorVersion 来判断是
Windows
XP 还是
Windows
Server 2003。
Base64 报错 的解决办法 (Base-64 字符数组或字符串的长度无效。, 输入的不是有效的 Base-64 字符串,因为它包含非 Base-64 字符、两个以上的填充字符,或者填充字符间包含非...
15930