Sign in with Microsoft
Sign in or create an account.
Hello,
Select a different account.
You have multiple accounts
Choose the account you want to sign in with.


檢視本文適用的產品。

簡介

本文將說明在 Microsoft System Center 2016 Virtual Machine Manager (VMM) Technical Preview 5 的累積更新 2 中修正的問題。 System Center 2016 Virtual Machine Manager Technical Preview 5 的累積更新 2 有兩個可用的更新:一個適用于 VMM Server,一個適用于系統管理員主控台。 此外,本文包含此累積更新的安裝指示。

在此累積更新中啟用的案例

案例 1:支援 Nano Server 型 Hyper-V 主機

的脫金屬部署此累積更新,您可以使用 VMM 來進行 Nano Server 型 Hyper-V 主機的無金屬部署。

注意 Nano Server 型計算& 儲存體叢集的金屬部署目前不支援 VMM,但很快就會受到支援。

如果您沒有安裝此累積更新,而且您嘗試使用 VMM 對 Nano Server 型 Hyper-V 主機進行無金屬部署,您將會遇到問題。 如果您遇到這種情況,建議您將 Nano Server 部署在 VMM 外部的金屬電腦上,然後將節點移至 VMM 管理。

案例 2:支援針對非網路控制器管理的主機

(SET) 使用此累積更新,您可以在非網路控制器管理的主機上設定 SET。 在此更新之前,只有由網路控制器管理的主機才支援 SET。

此累積更新中修正的問題

  • 問題 1:身為委派系統管理員 (DA) ,當您嘗試在 Network Controller Service 上設定負載平衡器時,服務會以 Null 指標例外狀況當機。

    此累積更新已修正此問題。 不過,若要暫時解決此問題,請使用 Fabric 系統管理員來設定負載平衡器。

  • 問題 2:當您嘗試設定在網路控制器管理的閘道上執行的 VPN 連線時,VMM 不會在 VMM 主機上顯示 VPNServerAddress 物件。

    如果您嘗試從 Windows Azure Pack (WAP) 設定 VPN 連線,連線會失敗併發生錯誤。 這可能會封鎖使用者設定連線的遠端端點。

    此累積更新已修正此問題。 不過,若要暫時解決此問題,您可以從 Network Controller JSON 取得 VPNServerAddress 物件。

  • 問題 3:當您嘗試設定在網路控制器管理的閘道上執行的 VPN 連線,並將 「IKEV2」 指定為通訊協定時,設定失敗,而且您會收到下列錯誤訊息:

    適用于網路服務的外掛程式「網路控制器」例外狀況:「針對該作業指定的一個或多個參數無效。 指定有效的參數。'

    與網路服務廠商合作修正問題。

    ID: 50124


    這可能會封鎖Windows Azure 套件 (WAP) 使用者無法使用網路控制器布料建立網站對網站 VPN 連線。 此累積更新已修正此問題。 不過,若要暫時解決此問題,請將通訊協定指定為「IPsec」 (網際網路通訊協定安全性) 。

  • 問題 4:如果您在網路控制器管理的網路上設定 NAT) 閘道 (,但未指定外部地址集區 (用來設定 NAT) 的外部 IP 位址,則閘道設定會失敗。

  • 問題 5:如果 VMM Server 安裝在非英文作業系統上,則儲存空間直接存取 (S2D) 叢集 (透過 VMM 匯總和超融合) 的部署失敗。

    若要解決此問題,請使用 PowerShell 來部署和 S2D 叢集,並略過叢集驗證,如下列範例所示。

    針對 SOFS S2D 叢集:

    Install-SCStorageFileServer – 叢集 名稱 -ScaleoutFileServerName 名稱 -RunAsAccount RunAsAccount -AddExistingComputer Listofnodes -RunAsynchronously -DASModeEnabled –SkipClusterValidation
    for a Hyper-converged S2D 叢集:

    Install-SCVMHostCluster - ClusterName 名稱 -JobGroup JobGroup -RunAsynchously -EnableSpaces -Credential AdminRunAsAccount -VMHost VMHosts –SkipValidation

  • 問題 6:在不受信任的網路或周邊網路上,在受保護的主機上建立受保護的 VM 失敗。

  • 問題 7:當您將「軟體定義的網路 (SDN) 閘道,並將其登入 VMM 中的網路控制器時,閘道 VM 與租使用者 VM 之間會發生連線問題。

    此累積更新已修正此問題。 不過,若要暫時解決此問題,請中斷閘道網路介面卡的連線,再將其連線回開關。 或者,重新開機主機。

已知問題

嘗試在 Technical Preview 5 (或 Technical Preview 5) ) (環境中安裝 System Center 2016 的累積更新 2 Virtual Machine Manager Technical Preview 5,可能會導致下列問題:

  • 下列錯誤的邏輯參數合規性問題:

    錯誤 (26809)
    虛擬切換設定與邏輯參數中 UplinkMode 的預期上連結模式設定不符。

    建議的動作
    在 VMM 中,補救 Hyper-V 主機上此虛擬開關的合規性。


  • 邏輯切換部署失敗


若要解決這些問題,請在 VMM 資料庫上執行下列腳本:

-- TP5 contains SET switches as 'Team' uplink mode with NC managed
-- SET without NC support adds a new 'Embedded Team' uplink mode
-- Convert the uplink mode from 'Team' to 'Embedded Team' for NC managed switches
UPDATE [dbo].[tbl_NetMan_LogicalSwitch]
SET
UplinkMode = 3 -- Embedded Team
WHERE UplinkMode = 2 AND ID IN (
-- Find logical switches with MS Azure VFP Extension (MS Network Controller)
SELECT ls.LogicalSwitchID
FROM [dbo].[tbl_NetMan_LogicalSwitchToVsemExtension] ls
INNER JOIN
[dbo].[tbl_NetMan_VirtualSwitchExtension] vse
ON ls.VsemExtensionId = vse.ID
WHERE vse.DriverNetCfgInstanceID = 'E9B59CFA-2BE1-4B21-828F-B6FBDBDDC017' -- Microsoft Azure VFP Extension
)
GO


如何取得及安裝 System Center 2016 的累積更新 2 Virtual Machine Manager Technical Preview 5

下載資訊

Virtual Machine Manager的更新套件可透過手動下載取得。

手動下載更新套件

移至下列網站,從 Microsoft 下載中心手動下載更新套件:

下載 立即下載伺服器更新套件。

下載 立即下載系統管理員主控台 (amd64) 更新套件。

下載 立即下載 i386) 系統管理員主控台 (更新套件。

若要手動安裝更新套件,請從提升許可權的命令提示字元執行下列命令:

msiexec.exe /update packagename

例如,若要安裝 System Center 2016 的累積更新 2 套件,Virtual Machine Manager Technical Preview 5 伺服器 (KB3160164) ,請執行下列命令:

msiexec.exe /update kb3160164_vmmserver_amd64.msp
注意 當您在 VMM 伺服器上執行累積更新的更新時,更新需要同時安裝 VMM 伺服器和系統管理員主控台更新。 如需詳細資訊,請參閱 Microsoft 知識庫中的下列文章:

3066343 如何安裝、移除或驗證Virtual Machine Manager的更新套件

此更新彙總套件套件中更新的檔案

系統管理員主控台 KB3160165

已變更的檔案

檔案大小

版本

語言識別項

Platform

Errors.dll

5198600

4.0.1381.0

0

x86

Errors.dll

5198600

4.0.1381.0

0

x64

ImgLibEngine.dll

5124872

4.0.1381.0

0

Microsoft.SystemCenter.VirtualMachineManager.dll

2232072

4.0.1381.0

0

Microsoft.VirtualManager.UI.Dialogs.dll

3650312

4.0.1381.0

0

Microsoft.VirtualManager.UI.Pages.Datacenter.dll

3665160

4.0.1381.0

0

Microsoft.VirtualManager.UI.VmmControls.dll

936200

4.0.1381.0

0

Remoting.dll

1185032

4.0.1381.0

0

x86

Remoting.dll

1185032

4.0.1381.0

0

x64

Errors.resources.dll

1788168

4.0.1381.0

4

x86

Errors.resources.dll

1788168

4.0.1381.0

4

x64

Microsoft.SystemCenter.VirtualMachineManager.resources.dll

33032

4.0.1381.0

4

x86

Microsoft.SystemCenter.VirtualMachineManager.resources.dll

33032

4.0.1381.0

4

x64

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1145608

4.0.1381.0

4

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1357576

4.0.1381.0

4

Microsoft.VirtualManager.UI.VmmControls.resources.dll

296200

4.0.1381.0

4

Remoting.resources.dll

131848

4.0.1381.0

4

x86

Remoting.resources.dll

131848

4.0.1381.0

4

x64

Errors.resources.dll

2100488

4.0.1381.0

5

x86

Errors.resources.dll

2100488

4.0.1381.0

5

x64

Microsoft.SystemCenter.VirtualMachineManager.resources.dll

34056

4.0.1381.0

5

x86

Microsoft.SystemCenter.VirtualMachineManager.resources.dll

34056

4.0.1381.0

5

x64

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1178376

4.0.1381.0

5

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1387784

4.0.1381.0

5

Microsoft.VirtualManager.UI.VmmControls.resources.dll

301320

4.0.1381.0

5

Remoting.resources.dll

141576

4.0.1381.0

5

x86

Remoting.resources.dll

141576

4.0.1381.0

5

x64

Errors.resources.dll

2248456

4.0.1381.0

7

x86

Errors.resources.dll

2248456

4.0.1381.0

7

x64

Microsoft.SystemCenter.VirtualMachineManager.resources.dll

34056

4.0.1381.0

7

x86

Microsoft.SystemCenter.VirtualMachineManager.resources.dll

34056

4.0.1381.0

7

x64

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1179912

4.0.1381.0

7

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1388808

4.0.1381.0

7

Microsoft.VirtualManager.UI.VmmControls.resources.dll

301320

4.0.1381.0

7

Remoting.resources.dll

137992

4.0.1381.0

7

x86

Remoting.resources.dll

137992

4.0.1381.0

7

x64

Errors.resources.dll

2158856

4.0.1381.0

10

x86

Errors.resources.dll

2158856

4.0.1381.0

10

x64

Microsoft.SystemCenter.VirtualMachineManager.resources.dll

34056

4.0.1381.0

10

x86

Microsoft.SystemCenter.VirtualMachineManager.resources.dll

34056

4.0.1381.0

10

x64

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1179912

4.0.1381.0

10

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1388808

4.0.1381.0

10

Microsoft.VirtualManager.UI.VmmControls.resources.dll

301832

4.0.1381.0

10

Remoting.resources.dll

141064

4.0.1381.0

10

x86

Remoting.resources.dll

141064

4.0.1381.0

10

x64

Errors.resources.dll

2220808

4.0.1381.0

12

x86

Errors.resources.dll

2220808

4.0.1381.0

12

x64

Microsoft.SystemCenter.VirtualMachineManager.resources.dll

34056

4.0.1381.0

12

x86

Microsoft.SystemCenter.VirtualMachineManager.resources.dll

34056

4.0.1381.0

12

x64

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1187080

4.0.1381.0

12

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1397000

4.0.1381.0

12

Microsoft.VirtualManager.UI.VmmControls.resources.dll

303368

4.0.1381.0

12

Remoting.resources.dll

141064

4.0.1381.0

12

x86

Remoting.resources.dll

141064

4.0.1381.0

12

x64

Errors.resources.dll

2260744

4.0.1381.0

14

x86

Errors.resources.dll

2260744

4.0.1381.0

14

x64

Microsoft.SystemCenter.VirtualMachineManager.resources.dll

34056

4.0.1381.0

14

x86

Microsoft.SystemCenter.VirtualMachineManager.resources.dll

34056

4.0.1381.0

14

x64

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1185032

4.0.1381.0

14

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1394440

4.0.1381.0

14

Microsoft.VirtualManager.UI.VmmControls.resources.dll

302856

4.0.1381.0

14

Remoting.resources.dll

142600

4.0.1381.0

14

x86

Remoting.resources.dll

142600

4.0.1381.0

14

x64

Errors.resources.dll

2096904

4.0.1381.0

16

x86

Errors.resources.dll

2096904

4.0.1381.0

16

x64

Microsoft.SystemCenter.VirtualMachineManager.resources.dll

34056

4.0.1381.0

16

x86

Microsoft.SystemCenter.VirtualMachineManager.resources.dll

34056

4.0.1381.0

16

x64

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1173768

4.0.1381.0

16

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1383176

4.0.1381.0

16

Microsoft.VirtualManager.UI.VmmControls.resources.dll

301320

4.0.1381.0

16

Remoting.resources.dll

139016

4.0.1381.0

16

x86

Remoting.resources.dll

139016

4.0.1381.0

16

x64

Errors.resources.dll

2482440

4.0.1381.0

17

x86

Errors.resources.dll

2482440

4.0.1381.0

17

x64

Microsoft.SystemCenter.VirtualMachineManager.resources.dll

34568

4.0.1381.0

17

x86

Microsoft.SystemCenter.VirtualMachineManager.resources.dll

34568

4.0.1381.0

17

x64

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1201928

4.0.1381.0

17

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1410312

4.0.1381.0

17

Microsoft.VirtualManager.UI.VmmControls.resources.dll

305416

4.0.1381.0

17

Remoting.resources.dll

142600

4.0.1381.0

17

x86

Remoting.resources.dll

142600

4.0.1381.0

17

x64

Errors.resources.dll

2196232

4.0.1381.0

18

x86

Errors.resources.dll

2196232

4.0.1381.0

18

x64

Microsoft.SystemCenter.VirtualMachineManager.resources.dll

34056

4.0.1381.0

18

x86

Microsoft.SystemCenter.VirtualMachineManager.resources.dll

34056

4.0.1381.0

18

x64

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1175816

4.0.1381.0

18

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1384712

4.0.1381.0

18

Microsoft.VirtualManager.UI.VmmControls.resources.dll

300296

4.0.1381.0

18

Remoting.resources.dll

137480

4.0.1381.0

18

x86

Remoting.resources.dll

137480

4.0.1381.0

18

x64

Errors.resources.dll

2065160

4.0.1381.0

19

x86

Errors.resources.dll

2065160

4.0.1381.0

19

x64

Microsoft.SystemCenter.VirtualMachineManager.resources.dll

34056

4.0.1381.0

19

x86

Microsoft.SystemCenter.VirtualMachineManager.resources.dll

34056

4.0.1381.0

19

x64

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1171720

4.0.1381.0

19

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1380616

4.0.1381.0

19

Microsoft.VirtualManager.UI.VmmControls.resources.dll

300296

4.0.1381.0

19

Remoting.resources.dll

137992

4.0.1381.0

19

x86

Remoting.resources.dll

137992

4.0.1381.0

19

x64

Errors.resources.dll

2169608

4.0.1381.0

21

x86

Errors.resources.dll

2169608

4.0.1381.0

21

x64

Microsoft.SystemCenter.VirtualMachineManager.resources.dll

34056

4.0.1381.0

21

x86

Microsoft.SystemCenter.VirtualMachineManager.resources.dll

34056

4.0.1381.0

21

x64

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1175816

4.0.1381.0

21

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1385736

4.0.1381.0

21

Microsoft.VirtualManager.UI.VmmControls.resources.dll

301320

4.0.1381.0

21

Remoting.resources.dll

141064

4.0.1381.0

21

x86

Remoting.resources.dll

141064

4.0.1381.0

21

x64

Errors.resources.dll

2965768

4.0.1381.0

25

x86

Errors.resources.dll

2965768

4.0.1381.0

25

x64

Microsoft.SystemCenter.VirtualMachineManager.resources.dll

36104

4.0.1381.0

25

x86

Microsoft.SystemCenter.VirtualMachineManager.resources.dll

36104

4.0.1381.0

25

x64

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1260808

4.0.1381.0

25

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1465608

4.0.1381.0

25

Microsoft.VirtualManager.UI.VmmControls.resources.dll

317704

4.0.1381.0

25

Remoting.resources.dll

158472

4.0.1381.0

25

x86

Remoting.resources.dll

158472

4.0.1381.0

25

x64

Errors.resources.dll

2014472

4.0.1381.0

29

x86

Errors.resources.dll

2014472

4.0.1381.0

29

x64

Microsoft.SystemCenter.VirtualMachineManager.resources.dll

33544

4.0.1381.0

29

x86

Microsoft.SystemCenter.VirtualMachineManager.resources.dll

33544

4.0.1381.0

29

x64

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1165576

4.0.1381.0

29

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1377032

4.0.1381.0

29

Microsoft.VirtualManager.UI.VmmControls.resources.dll

299272

4.0.1381.0

29

Remoting.resources.dll

137480

4.0.1381.0

29

x86

Remoting.resources.dll

137480

4.0.1381.0

29

x64

Errors.resources.dll

2038536

4.0.1381.0

31

x86

Errors.resources.dll

2038536

4.0.1381.0

31

x64

Microsoft.SystemCenter.VirtualMachineManager.resources.dll

33544

4.0.1381.0

31

x86

Microsoft.SystemCenter.VirtualMachineManager.resources.dll

33544

4.0.1381.0

31

x64

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1170184

4.0.1381.0

31

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1381128

4.0.1381.0

31

Microsoft.VirtualManager.UI.VmmControls.resources.dll

300296

4.0.1381.0

31

Remoting.resources.dll

138504

4.0.1381.0

31

x86

Remoting.resources.dll

138504

4.0.1381.0

31

x64

Errors.resources.dll

1814792

4.0.1381.0

1028

x86

Errors.resources.dll

1814792

4.0.1381.0

1028

x64

Microsoft.SystemCenter.VirtualMachineManager.resources.dll

33032

4.0.1381.0

1028

x86

Microsoft.SystemCenter.VirtualMachineManager.resources.dll

33032

4.0.1381.0

1028

x64

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1148168

4.0.1381.0

1028

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1360648

4.0.1381.0

1028

Microsoft.VirtualManager.UI.VmmControls.resources.dll

296712

4.0.1381.0

1028

Remoting.resources.dll

132360

4.0.1381.0

1028

x86

Remoting.resources.dll

132360

4.0.1381.0

1028

x64

Errors.resources.dll

2107144

4.0.1381.0

1046

x86

Errors.resources.dll

2107144

4.0.1381.0

1046

x64

Microsoft.SystemCenter.VirtualMachineManager.resources.dll

34056

4.0.1381.0

1046

x86

Microsoft.SystemCenter.VirtualMachineManager.resources.dll

34056

4.0.1381.0

1046

x64

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1175816

4.0.1381.0

1046

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1384200

4.0.1381.0

1046

Microsoft.VirtualManager.UI.VmmControls.resources.dll

301320

4.0.1381.0

1046

Remoting.resources.dll

139528

4.0.1381.0

1046

x86

Remoting.resources.dll

139528

4.0.1381.0

1046

x64

Errors.resources.dll

2129160

4.0.1381.0

2070

x86

Errors.resources.dll

2129160

4.0.1381.0

2070

x64

Microsoft.SystemCenter.VirtualMachineManager.resources.dll

34056

4.0.1381.0

2070

x86

Microsoft.SystemCenter.VirtualMachineManager.resources.dll

34056

4.0.1381.0

2070

x64

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1178376

4.0.1381.0

2070

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1387784

4.0.1381.0

2070

Microsoft.VirtualManager.UI.VmmControls.resources.dll

301320

4.0.1381.0

2070

Remoting.resources.dll

140552

4.0.1381.0

2070

x86

Remoting.resources.dll

140552

4.0.1381.0

2070

x64



Virtual Machine Manager Server KB3160164

已變更的檔案

檔案大小

版本

語言識別項

Platform

DBUpdate.dll

1333512

4.0.1381.0

0

Engine.Adhc.Operations.dll

1727240

4.0.1381.0

0

Engine.VmOperations.dll

1593096

4.0.1381.0

0

Errors.dll

5198600

4.0.1381.0

0

x86

Errors.dll

5198600

4.0.1381.0

0

x64

Errors.dll

5198600

4.0.1381.0

0

x86

Errors.dll

5198600

4.0.1381.0

0

x64

ImgLibEngine.dll

5124872

4.0.1381.0

0

x86

ImgLibEngine.dll

5124872

4.0.1381.0

0

x64

NetworkControllerPlugin.dll

198408

4.0.1381.0

0

Remoting.dll

1185032

4.0.1381.0

0

x86

Remoting.dll

1185032

4.0.1381.0

0

x64

ValHyperVImplementation.dll

520456

4.0.1381.0

0

Errors.resources.dll

1788168

4.0.1381.0

4

x86

Errors.resources.dll

1788168

4.0.1381.0

4

x64

Remoting.resources.dll

131848

4.0.1381.0

4

x86

Remoting.resources.dll

131848

4.0.1381.0

4

x64

Errors.resources.dll

2100488

4.0.1381.0

5

x86

Errors.resources.dll

2100488

4.0.1381.0

5

x64

Remoting.resources.dll

141576

4.0.1381.0

5

x86

Remoting.resources.dll

141576

4.0.1381.0

5

x64

Errors.resources.dll

2248456

4.0.1381.0

7

x86

Errors.resources.dll

2248456

4.0.1381.0

7

x64

Remoting.resources.dll

137992

4.0.1381.0

7

x86

Remoting.resources.dll

137992

4.0.1381.0

7

x64

Errors.resources.dll

2158856

4.0.1381.0

10

x86

Errors.resources.dll

2158856

4.0.1381.0

10

x64

Remoting.resources.dll

141064

4.0.1381.0

10

x86

Remoting.resources.dll

141064

4.0.1381.0

10

x64

Errors.resources.dll

2220808

4.0.1381.0

12

x86

Errors.resources.dll

2220808

4.0.1381.0

12

x64

Remoting.resources.dll

141064

4.0.1381.0

12

x86

Remoting.resources.dll

141064

4.0.1381.0

12

x64

Errors.resources.dll

2260744

4.0.1381.0

14

x86

Errors.resources.dll

2260744

4.0.1381.0

14

x64

Remoting.resources.dll

142600

4.0.1381.0

14

x86

Remoting.resources.dll

142600

4.0.1381.0

14

x64

Errors.resources.dll

2096904

4.0.1381.0

16

x86

Errors.resources.dll

2096904

4.0.1381.0

16

x64

Remoting.resources.dll

139016

4.0.1381.0

16

x86

Remoting.resources.dll

139016

4.0.1381.0

16

x64

Errors.resources.dll

2482440

4.0.1381.0

17

x86

Errors.resources.dll

2482440

4.0.1381.0

17

x64

Remoting.resources.dll

142600

4.0.1381.0

17

x86

Remoting.resources.dll

142600

4.0.1381.0

17

x64

Errors.resources.dll

2196232

4.0.1381.0

18

x86

Errors.resources.dll

2196232

4.0.1381.0

18

x64

Remoting.resources.dll

137480

4.0.1381.0

18

x86

Remoting.resources.dll

137480

4.0.1381.0

18

x64

Errors.resources.dll

2065160

4.0.1381.0

19

x86

Errors.resources.dll

2065160

4.0.1381.0

19

x64

Remoting.resources.dll

137992

4.0.1381.0

19

x86

Remoting.resources.dll

137992

4.0.1381.0

19

x64

Errors.resources.dll

2169608

4.0.1381.0

21

x86

Errors.resources.dll

2169608

4.0.1381.0

21

x64

Remoting.resources.dll

141064

4.0.1381.0

21

x86

Remoting.resources.dll

141064

4.0.1381.0

21

x64

Errors.resources.dll

2965768

4.0.1381.0

25

x86

Errors.resources.dll

2965768

4.0.1381.0

25

x64

Remoting.resources.dll

158472

4.0.1381.0

25

x86

Remoting.resources.dll

158472

4.0.1381.0

25

x64

Errors.resources.dll

2014472

4.0.1381.0

29

x86

Errors.resources.dll

2014472

4.0.1381.0

29

x64

Remoting.resources.dll

137480

4.0.1381.0

29

x86

Remoting.resources.dll

137480

4.0.1381.0

29

x64

Errors.resources.dll

2038536

4.0.1381.0

31

x86

Errors.resources.dll

2038536

4.0.1381.0

31

x64

Remoting.resources.dll

138504

4.0.1381.0

31

x86

Remoting.resources.dll

138504

4.0.1381.0

31

x64

Errors.resources.dll

1814792

4.0.1381.0

1028

x86

Errors.resources.dll

1814792

4.0.1381.0

1028

x64

Remoting.resources.dll

132360

4.0.1381.0

1028

x86

Remoting.resources.dll

132360

4.0.1381.0

1028

x64

vmmAgent.exe

3825416

4.0.1381.0

1033

x86

vmmAgentPE.exe

2131208

4.0.1381.0

1033

x64

Errors.resources.dll

2107144

4.0.1381.0

1046

x86

Errors.resources.dll

2107144

4.0.1381.0

1046

x64

Remoting.resources.dll

139528

4.0.1381.0

1046

x86

Remoting.resources.dll

139528

4.0.1381.0

1046

x64

Errors.resources.dll

2129160

4.0.1381.0

2070

x86

Errors.resources.dll

2129160

4.0.1381.0

2070

x64

Remoting.resources.dll

140552

4.0.1381.0

2070

x86

Remoting.resources.dll

140552

4.0.1381.0

2070

x64



適用于此文章適用于下列專案:

  • Microsoft System Center 2016 Virtual Machine Manager Technical Preview 5

Need more help?

Want more options?

探索訂閱權益、瀏覽訓練課程、瞭解如何保護您的裝置等等。

社群可協助您詢問並回答問題、提供意見反應,以及聆聽來自具有豐富知識的專家意見。

Was this information helpful?

How satisfied are you with the translation quality?
What affected your experience?
By pressing submit, your feedback will be used to improve Microsoft products and services. Your IT admin will be able to collect this data. Privacy Statement.

Thank you for your feedback!

×