如何設定 PXE 服務點的回應延遲
在Configuration Manager中,您會藉由更新ResponseDelay 內嵌屬性來設定作業系統部署 PXE 服務點回應延遲。 ResponseDelay 會指定此 PXE 服務點在使用多個 PXE 服務點時回應電腦要求之前,應該要有多久的延遲時間。 根據預設,Configuration Manager PXE 服務點會立即回應網路 PXE 要求。
延遲是由 PXE 用戶端所提供,它會顯示自用戶端啟動 PXE 開機程式 (秒後,用戶端開始擷取位址或更新程式之後所經過的時間) 。 用戶端會以 0 (預設) 、4、8、16 或 32 秒的間隔將要求傳送至伺服器。
若要設定 PXE 服務點的回應延遲
設定與 SMS 提供者的連線。 如需詳細資訊,請 參閱 SMS 提供者基本概念。
連線到已啟用 PXE 的發佈點實例。
取得內嵌屬性。
更新 ResponseDelay 內 嵌屬性。
將變更認可至月臺控制檔案。
範例
下列範例方法會設定 PXE 服務點的回應延遲。
如需呼叫範例程式碼的相關資訊,請參閱呼叫Configuration Manager程式碼片段。
public void SetResponseDelay(WqlConnectionManager connection, string siteCode, string serverName, int delay){ try { //Connect to distribution point instance. IResultObject siteRole = connection.GetInstance("SMS_SCI_SysResUse.FileType=2,ItemName=\"[\\\"Display=\\\\\\\\" + serverName + "\\\\\\\"]MSWNET:[\\\"SMS_SITE=" + siteCode + "\\\"]\\\\\\\\" + serverName + "\\\\,SMS Distribution Point\",ItemType=\"System Resource Usage\",SiteCode=" + "\"" + siteCode + "\""); // Create temporary copy of the embedded properties. Dictionary<string, IResultObject> embeddedProperties = siteRole.EmbeddedProperties; // Enumerate through the embedded properties and makes changes as needed. foreach (KeyValuePair<string, IResultObject> kvp in siteRole.EmbeddedProperties) { // Setting: ResponseDelay if (kvp.Value.PropertyList["PropertyName"] == "ResponseDelay") { // Get current property value. Console.WriteLine(); Console.WriteLine("Property: {0}", kvp.Value.PropertyList["PropertyName"]); Console.WriteLine("Current value: {0}", kvp.Value.PropertyList["Value"]); // Change value. embeddedProperties["ResponseDelay"]["Value"].IntegerValue = delay; Console.WriteLine("Setting the {0} value to {1}.", kvp.Value.PropertyList["PropertyName"], delay); } } // Store the settings that have changed. siteRole.EmbeddedProperties = embeddedProperties; // Save the settings. siteRole.Put(); } catch (SmsException ex) { Console.WriteLine(); Console.WriteLine("Failed. Error: " + ex.InnerException.Message); }}
範例方法具有下列參數:
參數 | Type | 描述 |
---|---|---|
connection |
管理: WqlConnectionManager |
SMS 提供者的有效連線。 |
siteCode |
管理: String |
Configuration Manager月臺碼。 |
serverName |
管理: String |
伺服器名稱。 例如,"SERVER1.DOMAIN1.COM" 。 |
延遲 | 管理: Integer |
延遲,以秒為單位。 |
正在編譯程式碼
C# 範例具有下列編譯需求:
命名空間
系統
System.Collections.Generic
System.Text
Microsoft。ConfigurationManagement.ManagementProvider
Microsoft。ConfigurationManagement.ManagementProvider.WqlQueryEngine
組件
microsoft.configurationmanagement.managementprovider
adminui.wqlqueryengine
健全的程式設計
如需錯誤處理的詳細資訊,請參閱關於Configuration Manager錯誤。
.NET Framework 安全性
如需保護Configuration Manager應用程式的詳細資訊,請參閱Configuration Manager角色型系統管理。
另請參閱
關於 OS 部署月臺角色設定如何使用 Managed 程式碼讀取和寫入Configuration Manager月臺控制檔案
如何使用 WMI 讀取和寫入Configuration Manager月臺控制檔案