Je voulais partager le script que j'utilise pour compiler Dynamics AX. Vous allez devoir modifier le nom de l'instance et le nombre de workers. Je suis certain qu'il en existe plusieurs, mais voici le mien:
---------------------------------
@echo off
for /F "tokens=3 delims=: " %%H in ('sc query "AOS60$01" ^| findstr " STATE"') do (
if /I "%%H" EQU "STOPPED" (
cd "C:\Program Files\Microsoft Dynamics AX\60\Server\MicrosoftDynamicsAX_BUILD\bin"
axbuild.exe xppcompileall /s=01 /altbin="C:\Program Files (x86)\Microsoft Dynamics AX\60\Client\Bin" /workers=10
%SystemRoot%\explorer.exe "C:\Program Files\Microsoft Dynamics AX\60\Server\MicrosoftDynamicsAX_BUILD\Log"
) else (
echo *********************************************************
echo Please stop the AOS Service prior to start the compilation
echo *********************************************************
pause
)
)
---------------------------------
Pour plus d'information: AxBuild.exe for Parallel Compile on AOS of X++ to p-code