Teil 7f: Exkurs – CMTrace 64bit vorbereiten

In diesem Teil werde ich CMTrace 64bit vorbereiten. Installiert habe ich CMTrace in Teil Deployment Server MDT1 vorbereiten. Microsoft stellt leider keine 64bit-Version von CMTrace zum Download bereit. In Windows PE x64 kann CMTrace 32bit aber nicht ausgeführt werden, weshalb die 64bit-Version mit einem kleinen Trick kopiert werden muss.

CMTrace und CMTrace 64bit vorbereiten

  1. Als Administrator an MDT1 anmelden
  2. CMTrace starten
    CMTRACE-001
  3. Falls noch nicht geschen, mit Yes zum Standardprogramm für Log-Dateien machen
  4. Task Manager starten
  5. CMTrace_amd64.exe rechts anklicken > Open file location
    CMTRACE-002
  6. TRA44B8.tmp nach E:\ExtraDirectory kopieren
    CMTRACE-003
  7. TRA44B8.tmp nach CMTrace64.exe umbenennen
  8. C:\Program Files (x86)\ConfigMgr 2012 Toolkit R2\ClientTools\CMTrace.exe nach E:\ExtraDirectory kopieren
    CMTRACE-004
  9. Alle Fenster schließen

Teil 7e: Exkurs – Die Installation von Microsoft Office anpassen

Inhaltsverzeichnis

In diesem Teil werde ich die Installation von Microsoft Office anpassen. Dafür wird das Microsoft Office-Anpassungstool verwendet. Ziel ist eine Installation

  • automatisiert ohne Anzeige
  • ohne Neustart
  • ohne dem Bestätigungs-Assistenten beim ersten Start
  • ohne die Animationen und Videos beim ersten Start
  • ohne OneDrive for Business und Lync
  • mit einer zusätzlichen Desktop-Vernüpfung für Outlook

Den Inhalt der Microsoft Office 2013-DVD kopieren

  1. Als Administrator an MDT1 anmelden
  2. Die Microsft Office 2013 Pro Plus-ISO-Datei mounten
    OFFICE-001
  3. Command Prompt (Admin) starten
  4. Mit folgendem Befehl den Inhalt der DVD nach E:\Sourcen\Software\Microsoft\Microsoft Office 2013 Pro Plus x86 kopieren
    xcopy /e /h f:\*.* "e:\Sourcen\Software\Microsoft\Microsoft Office 2013 Pro Plus x86"

    OFFICE-002
    OFFICE-003

Die Installation von Microsoft Office anpassen

  1. Mit folgendem Befehl das Office-Anpassungstool starten
    "e:\Sourcen\Software\Microsoft\Microsoft Office 2013 Pro Plus x86\setup.exe" /admin

    OFFICE-004

  2. Produkt auswählen
    1. Neue Setupanpassungsdatei erstellen > OK
      OFFICE-005
  3. Standarddateitypen
    1. Office Open XML-Formate > OK
      OFFICE-006
  4. Folgende Einstellungen konfigurieren:
    1. Installationsspeicherort und Name der Organisation
      OFFICE-007
    2. Lizenzierung und Benutzeroberfläche
      OFFICE-008
    3. Setup-Eigenschaften ändern
      OFFICE-015
    4. Benutzereinstellungen ändern
      1. Microsoft Office 2013\Datenschutz\Trust Center
        OFFICE-010
      2. Microsoft Office 2013\First Run
        OFFICE-011
    5. Featureinstallationsstatus festlegen: OneDrive for Business und Lync deaktivieren
      OFFICE-009
    6. Verknüpfungen konfigurieren > Hinzufügen…
      1. Verknüpfungseintrag hinzufügen/ändern > OK
        OFFICE-012
        OFFICE-013
  5. Datei > Speichern > E:\Sourcen\Software\Microsoft\Microsoft Office 2013 Pro Plus x86\updates\001_Office_2013_CUSTOM.MSP
    OFFICE-014
  6. Alle Fenster schließen

Weitere Informationen

Teil 7d: Standard Software vorbereiten

Inhaltsverzeichnis

In diesem Teil werde ich die Standard Software vorbereiten für die Betriebssystemverteilung. Dafür erstelle ich für jede Software ein AutoIt-Script (siehe Exkurs – AutoIt installieren und ein Programm erstellen).

Standard Software herunterladen

Folgende Software herunterladen und in die passenden Ordner auf E:\Sourcen\Software\Microsoft\ kopieren (siehe Ordner erstellen und Berechtigungen vergeben):

AutoIt-Installationsprogramme erstellen

Folgende AutoIt-Installationsprogramme in den passenden Ordnern auf E:\Sourcen\Software\Microsoft\ erstellen:

  • Microsoft RSAT for Windows 10 x64
    #cs ------------------------------------------------------------
    
     AutoIt Version: 3.3.14.1
     Author:         Dietmar's Blog | Noch so ein IT-Blog
     Script Function: Install Software.
    
    #ce ------------------------------------------------------------
    
    ; Script Start - Add your code below here
    
    Opt("TrayIconHide", 1)
    RunWait("wusa.exe WindowsTH-KB2693643-x64.msu /quiet /norestart")
    
  • Microsoft Silverlight 5.1 x64
    #cs ------------------------------------------------------------
    
     AutoIt Version: 3.3.14.1
     Author:         Dietmar's Blog | Noch so ein IT-Blog
     Script Function: Install Software.
    
    #ce ------------------------------------------------------------
    
    ; Script Start - Add your code below here
    
    Opt("TrayIconHide", 1)
    RunWait("Silverlight_x64.exe /Q")
    
  • Microsoft Visual C++ 2005 SP1 x86 x64
    #cs ------------------------------------------------------------
    
     AutoIt Version: 3.3.14.1
     Author:         Dietmar's Blog | Noch so ein IT-Blog
     Script Function: Install Software.
    
    #ce ------------------------------------------------------------
    
    ; Script Start - Add your code below here
    
    Opt("TrayIconHide", 1)
    
    RunWait("vcredist_x86.exe /Q")
    If @OSArch = "X64" Then
        RunWait("vcredist_x64.exe /Q")
    EndIf
    
  • Microsoft Visual C++ 2008 SP1 x86 x64
    #cs ------------------------------------------------------------
    
     AutoIt Version: 3.3.14.1
     Author:         Dietmar's Blog | Noch so ein IT-Blog
     Script Function: Install Software.
    
    #ce ------------------------------------------------------------
    
    ; Script Start - Add your code below here
    
    Opt("TrayIconHide", 1)
    
    RunWait("vcredist_x86.exe /q /norestart")
    If @OSArch = "X64" Then
        RunWait("vcredist_x64.exe /q /norestart")
    EndIf
    
  • Microsoft Visual C++ 2010 SP1 x86 x64
    #cs ------------------------------------------------------------
    
     AutoIt Version: 3.3.14.1
     Author:         Dietmar's Blog | Noch so ein IT-Blog
     Script Function: Install Software.
    
    #ce ------------------------------------------------------------
    
    ; Script Start - Add your code below here
    
    Opt("TrayIconHide", 1)
    
    RunWait("vcredist_x86.exe /q /norestart")
    If @OSArch = "X64" Then
        RunWait("vcredist_x64.exe /q /norestart")
    EndIf
    
  • Microsoft Visual C++ 2012 x86 x64
    #cs ------------------------------------------------------------
    
     AutoIt Version: 3.3.14.1
     Author:         Dietmar's Blog | Noch so ein IT-Blog
     Script Function: Install Software.
    
    #ce ------------------------------------------------------------
    
    ; Script Start - Add your code below here
    
    Opt("TrayIconHide", 1)
    
    RunWait("vcredist_x86.exe /q /norestart")
    If @OSArch = "X64" Then
        RunWait("vcredist_x64.exe /q /norestart")
    EndIf
    
  • Microsoft Visual C++ 2013 x86 x64
    #cs ------------------------------------------------------------
    
     AutoIt Version: 3.3.14.1
     Author:         Dietmar's Blog | Noch so ein IT-Blog
     Script Function: Install Software.
    
    #ce ------------------------------------------------------------
    
    ; Script Start - Add your code below here
    
    Opt("TrayIconHide", 1)
    
    RunWait("vcredist_x86.exe /q /norestart")
    If @OSArch = "X64" Then
        RunWait("vcredist_x64.exe /q /norestart")
    EndIf
    
  • Microsoft Visual C++ 2015 x86 x64
    #cs ------------------------------------------------------------
    
     AutoIt Version: 3.3.14.1
     Author:         Dietmar's Blog | Noch so ein IT-Blog
     Script Function: Install Software.
    
    #ce ------------------------------------------------------------
    
    ; Script Start - Add your code below here
    
    Opt("TrayIconHide", 1)
    
    RunWait("vc_redist.x86.exe /q /norestart")
    If @OSArch = "X64" Then
        RunWait("vc_redist.x64.exe /q /norestart")
    EndIf

AUTOIT-016

AUTOIT-017

Microsoft Office 2013 Pro Plus folgt im nächsten Teil.