共用方式為


使用 Sysprep 部署 Orchestrator

 

適用於: System Center 2012 SP1 - Orchestrator, System Center 2012 - Orchestrator, System Center 2012 R2 Orchestrator

您可以使用 Sysprep 來部署 Orchestrator。 如此即可讓您在分散式環境中以自動化程序部署任何 Orchestrator 元件。

您可以執行下列步驟,針對 Orchestrator 元件建立 Sysprep 映像:

  1. 準備 Windows 2008 R2 映像

  2. 建立 Sysprep 的 Orchestrator 回應檔案

  3. 使用 Sysprep 安裝 Orchestrator。

準備 Windows 2008 R2 映像

請使用下列步驟來準備 Windows 2008 R2 映像。

準備 Windows 2008 R2 映像

  1. 安裝 Windows Server 2008 R2。

  2. https://go.microsoft.com/fwlink/?LinkId=246814 安裝 .NET Framework 4。 (只有 Orchestrator 的 Web 功能元件需要安裝此軟體。)

建立 Sysprep 的 Orchestrator 回應檔案

在使用 Sysprep 工具將 Orchestrator 安裝在 Windows Server 2008 R2 之前,請在 Sysprep 處理過程中使用回應檔案安裝 Orchestrator。

如需範例 unattend.xml 檔案,請參閱範例 Orchestrator.xml 檔案。 您可以自訂此範例檔案,並將它匯入 Windows 系統映像管理員中。

建立回應檔案

  1. 使用提供的範例建立 Orchestrator.xml 自動安裝檔案。

  2. 將檔案複製到 %systemdrive%\windows\system32\sysprep。

  3. 建立 Orchestrator 批次檔以在此電腦上安裝 Orchestrator 元件。 您可以在範例 Orchestrator.xml 檔案中找到此檔案的範例。 這個檔案稱為 Orchestrator.xml 檔案。 如需可用來安裝 Orchestrator 的命令列選項,請參閱使用 Orchestrator 命令列安裝工具進行安裝

  4. 執行下列命令:

      sysprep /generalize /oobe /shutdown /unattend:%systemdrive%\windows\system32\sysprep\Orchestrator.xml
    

使用 Sysprep 安裝 Orchestrator

現在您已經有 Windows 2008 R2 Sysprep 映像,可用來自動在環境中部署 Orchestrator。

如需建立適用於 Orchestrator 之 SQL Sysprep 映像的相關資訊,請參閱 https://go.microsoft.com/fwlink/?LinkId=246815

範例 Orchestrator.xml 檔案

以下是利用 Sysprep 部署 Orchestrator 時使用的範例 Orchestrator.xml。 請使用 Windows 系統映像管理員 (可在 https://go.microsoft.com/fwlink/?LinkId=246813 的 Windows 自動化安裝套件中找到) 自訂此檔案。

<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
    <settings pass="oobeSystem">
        <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="https://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <AutoLogon>
                <Password>
                    <Value>password</Value>
                    <PlainText>true</PlainText>
                </Password>
                <LogonCount>1</LogonCount>
                <Enabled>true</Enabled>
                <Username>Administrator</Username>
            </AutoLogon>
            <FirstLogonCommands>
                <SynchronousCommand wcm:action="add">
                    <CommandLine>cmd /c %systemdrive%\sco\install.bat</CommandLine>
                    <Order>1</Order>
                    <RequiresUserInput>false</RequiresUserInput>
                </SynchronousCommand>
            </FirstLogonCommands>
        </component>
    </settings>
    <cpi:offlineImage cpi:source="wim:c:/windowsenterprise/extracted/sources/install.wim#Windows Server 2008 R2 SERVERENTERPRISE" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
</unattend>

以下是 FirstLogonCommand 適用之 Orchestrator.xml 自動安裝檔案中所參照的範例 install.bat 檔案。 請在 %systemdrive%\sco 目錄中,連同 Orchestrator 安裝檔案一起建立這個批次檔。 您可以使用命令列安裝工具來自訂此檔案。 如需詳細資訊,請參閱使用 Orchestrator 命令列安裝工具進行安裝

%systemdrive%\sco\setup\setup.exe /Silent /ServiceUserName:%computername%\administrator /ServicePassword:password /Components:All /DbServer:%computername%  /DbPort:1433 /DbNameNew:OrchestratorSysPrep /WebConsolePort:82 /WebServicePort:81 /OrchestratorRemote /UseMicrosoftUpdate:1 /SendCEIPReports:1 /EnableErrorReporting:always