Dynamics NAV 2013 Client Install Silent

19. Juli 2013 07:03

Hallo zusammen,

ich habe ein Problem bei der Silent Installation von Dynamics NAV 2013 (7.0.33781.0).
Grundsätzlich ist zu sagen, das die Silent Installation auf den Clients funktioniert, allerdings nur, wenn ich diese manuell starte,
also z.B.
Start -> Ausführen -> [SetupExepath] /quiet /config [configfilepath.xml] c:\temp\dynamics_2013.log

versuche ich die Installation per GPO oder per OCS-Inventory schlägt diese fehl.
Das Logfile sieht dann wie folgt aus:

=== Logging started: 2013/07/18 14:59:46 ===
Executable: \\server001\software$\Navision_Dynamics_2013\NAV700\Basis\setup.exe v7.0.33781.0
Computer : PC-666
--- logging level: standard ---
=== Logging stopped: 2013/07/18 14:59:46 ===


Die Prerequesits sind bereits installiert.
Client System: Windows 7 64-bit.

Ich hab es auch schon ohne Config.xml und nicht im / quiet Mode versucht, leider ohne Erfolg.

Gibt es die Möglichkeit bei der Installation den Log-Level zu ändern, um mehr Info´s zu bekommen, warum die Installation scheitert ?

Wäre super wenn mir hierzu jemand einen Tip geben könnte.

Gruß
it-ninja

Re: Dynamics NAV 2013 Client Install Silent

13. Januar 2014 09:50

Hi,

wenn der Setup im Systemkontext ausgeführt wird, müssen vorher ein paar Ordner im Systemprofile angelegt werden. Der folgende Script funktioniert bei mir, wenn die Prerequisites bereits installiert sind:

Code:
@echo off

IF EXIST "%PROGRAMFILES(X86)%" (GOTO 64BIT) ELSE (GOTO 32BIT)

:64BIT

mkdir "C:\Windows\SysWOW64\config\systemprofile\AppData\Roaming"

mkdir "C:\Windows\SysWOW64\config\systemprofile\Desktop"

mkdir "C:\Windows\SysWOW64\config\systemprofile\Favorites"

mkdir "C:\Windows\SysWOW64\config\systemprofile\Documents"

mkdir "C:\Windows\SysWOW64\config\systemprofile\AppData\Roaming\Microsoft\Windows\Templates"

mkdir "C:\Windows\SysWOW64\config\systemprofile\AppData\Roaming\Microsoft\Windows\SendTo"

mkdir "C:\Windows\SysWOW64\config\systemprofile\AppData\Roaming\Microsoft\Windows\Start Menu"

mkdir "C:\Windows\SysWOW64\config\systemprofile\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup"

setup.exe /quiet /config clientconfig.xml /log "%temp%\Navlog.txt"

goto END

:32BIT

mkdir "C:\Windows\System32\config\systemprofile\AppData\Roaming"

mkdir "C:\Windows\System32\config\systemprofile\Desktop"

mkdir "C:\Windows\System32\config\systemprofile\Favorites"

mkdir "C:\Windows\System32\config\systemprofile\Documents"

mkdir "C:\Windows\System32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Templates"

mkdir "C:\Windows\System32\config\systemprofile\AppData\Roaming\Microsoft\Windows\SendTo"

mkdir "C:\Windows\System32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Start Menu"

mkdir "C:\Windows\System32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup"

setup.exe /quiet /config clientconfig.xml /log "%temp%\Navlog.txt"

END


Gruß