Talk:Windows Server 2019 build 17763

Does this build has ARM64 version?[edit source]

https://browser.geekbench.com/v5/cpu/5179406 The processors is Huawei Kunpeng 920. The system is Microsoft Windows Server 2019 Standard (64-bit). And it says Geekbench 5.3.1 Tryout for Windows AArch64. So does this build has ARM64 version? — Preceding unsigned comment added by Alpa7000 (talkcontribs)

https://www.servethehome.com/huawei-kunpeng-920-64-core-arm-server-cpu/ I founded it. It support ARM64 by "Today Huawei announced a new 64-Core Arm Server CPU. The Huawei Kunpeng 920 is being billed as the fastest Arm CPU to date." 2001:F90:40C0:8A97:DCEC:438E:8BF:38E7 (talk) 13:02, 12 March 2022 (UTC)
The benchmark doesn't mention any build number, so there is no way to know. --Ryuzaki (talk | contribs) 13:41, 12 March 2022 (UTC)
look about this:
set VCVARSALL="C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat"
set CL_PATH="C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.27.29110\bin\HostX86\ARM64\cl.exe"
set MC_PATH="C:\Program Files (x86)\Windows Kits\10\bin\10.0.17763.0\arm64\mc.exe"
 
call %VCVARSALL% amd64_arm64 10.0.17763.0 & set
 
git clone https://github.com/ader1990/setuptools 1>nul
IF %ERRORLEVEL% NEQ 0 EXIT 1
 
pushd setuptools
    git checkout am_64
    echo "Installing setuptools"
    python.exe bootstrap.py 1>nul 2>nul
    IF %ERRORLEVEL% NEQ 0 EXIT 1
 
    %CL_PATH% /D "GUI=0" /D "WIN32_LEAN_AND_MEAN" /D _ARM64_WINAPI_PARTITION_DESKTOP_SDK_AVAILABLE launcher.c /O2 /link /MACHINE:ARM64 /SUBSYSTEM:CONSOLE /out:setuptools/cli-arm64.exe
    IF %ERRORLEVEL% NEQ 0 EXIT 1
 
    python.exe setup.py install 1>nul
    IF %ERRORLEVEL% NEQ 0 EXIT 1

popd

2001:F90:40C0:8A97:DCEC:438E:8BF:38E7 (talk) 00:17, 13 March 2022 (UTC)