Accedi con Microsoft
Accedi o crea un account.
Salve,
Seleziona un altro account.
Hai più account
Scegli l'account con cui vuoi accedere.


Visualizzare i prodotti a cui si applica questo articolo.

Introduzione

Questo articolo descrive i problemi risolti nell'aggiornamento cumulativo 2 per Microsoft System Center 2016 Virtual Machine Manager (VMM) Technical Preview 5. Sono disponibili due aggiornamenti per l'aggiornamento cumulativo 2 per System Center 2016 Virtual Machine Manager Technical Preview 5: uno per il server VMM e uno per la console di amministrazione. Inoltre, questo articolo contiene le istruzioni di installazione per questo aggiornamento cumulativo.

Scenari abilitati in questo aggiornamento cumulativo

Scenario 1: supporto per distribuzioni bare metal di host

Hyper-V basati su Nano Server Con questo aggiornamento cumulativo, è possibile eseguire distribuzioni bare metal di host Hyper-V basati su Nano Server usando VMM.

Nota: la distribuzione Bare metal dei cluster & Archiviazione Nano Server-based Compute non è attualmente supportata con VMM, ma sarà supportata a breve.

Se non hai installato questo aggiornamento cumulativo e stai tentando di eseguire una distribuzione bare metal di host Hyper-V basati su Nano Server utilizzando VMM, riscontrerai problemi. Se si è verificato questo scenario, è consigliabile distribuire Nano Server in computer bare metal all'esterno di VMM e quindi portare i nodi alla gestione delle macchine virtuali.

Scenario 2: supporto per Switch Embedded Teaming (SET) per host

non gestiti da controller di rete Con questo aggiornamento cumulativo, è possibile configurare SET su host non gestiti da controller di rete. Prima di questo aggiornamento, SET era supportato solo per gli host gestiti dal controller di rete.

Problemi risolti in questo aggiornamento cumulativo

  • Problema 1: un amministratore delegato (DA) quando si tenta di configurare il bilanciamento del carico nel servizio controller di rete, il servizio si arresta in modo anomalo con un'eccezione del puntatore NULL.

    Questo problema è stato risolto in questo aggiornamento cumulativo. Tuttavia, per risolvere temporaneamente il problema, usare l'amministratore infrastruttura per configurare il bilanciamento del carico.

  • Problema 2: quando tenti di configurare connessioni VPN in esecuzione su un gateway gestito da controller di rete, VMM non visualizza l'oggetto VPNServerAddress nella console VMM.

    Se tenti di configurare una connessione VPN da Windows Azure Pack (WAP), la connessione non riesce con un errore. Ciò potrebbe impedire agli utenti di configurare endpoint remoti per la connessione.

    Questo problema è stato risolto in questo aggiornamento cumulativo. Tuttavia, per ovviare temporaneamente a questo problema, è possibile ottenere l'oggetto VPNServerAddress dal JSON del controller di rete.

  • Problema 3: quando tenti di configurare le connessioni VPN in esecuzione su un gateway gestito dal controller di rete e specifichi "IKEV2" come protocollo, la configurazione non riesce e viene visualizzato il messaggio di errore seguente:

    Plug-in per il servizio di rete 'Network Controller' ha generato un'eccezione: 'Uno o più parametri specificati per l'operazione non sono validi. Specificare parametri validi.

    Collabora con il fornitore del servizio di rete per risolvere il problema.

    ID: 50124


    Ciò potrebbe impedire agli utenti di Windows Azure Pack (WAP) di creare una connessione VPN da sito a sito con l'infrastruttura del controller di rete. Questo problema è stato risolto in questo aggiornamento cumulativo. Tuttavia, per ovviare temporaneamente a questo problema, specificare il protocollo come "IPsec" (Internet Protocol Security).

  • Problema 4: se si configura un Gateway (per NAT) in una rete gestita da controller di rete senza specificare un pool di indirizzi esterni (che verrà utilizzato per configurare l'indirizzo IP esterno per NAT), la configurazione del gateway non riesce.

  • Problema 5: se il server VMM è installato in un sistema operativo non inglese, la distribuzione di cluster Spazi di archiviazione diretta (S2D) (sia aggregati che iper-convergenti) tramite VMM ha esito negativo.

    Per risolvere il problema, usare PowerShell per distribuire e cluster S2D e ignorare la convalida del cluster, come illustrato negli esempi seguenti.

    Per un cluster SOFS S2D:

    Install-SCStorageFileServer –ClusterName - ScaleoutFileServerName name -RunAsAccount RunAsAccount -AddExistingComputer Listofnodes -RunAsynchronously -DASModeEnabled –SkipClusterValidation
    for a Hyper-converged S2D cluster:

    Install-SCVMHostCluster -ClusterName name -JobGroup JobGroup -RunAsynchronously -EnableSpaces -Credential AdminRunAsAccount -VMHost VMHosts –SkipValidation

  • Problema 6: la creazione di macchine virtuali schermate in host protetti in una rete non attendibile o in una rete perimetrale non riesce.

  • Problema 7: quando si distribuisce il gateway SDN (Software Defined Networking) e lo si esegue l'onboarding al controller di rete in VMM, si verificano problemi di connettività tra la macchina virtuale del gateway e la macchina virtuale tenant.

    Questo problema è stato risolto in questo aggiornamento cumulativo. Tuttavia, per risolvere temporaneamente il problema, disconnettere la scheda di rete del gateway e ricollegarla all'interruttore. In alternativa, riavvia l'host.

Problemi noti

Se si prova a installare l'aggiornamento cumulativo 2 per System Center 2016 Virtual Machine Manager Technical Preview 5 in un ambiente Technical Preview 5 (o nell'aggiornamento cumulativo 1 per Technical Preview 5) con un commutatore logico (controller di rete gestito) con modalità uplink come Team, potrebbero verificarsi i problemi seguenti:

  • Problema di conformità del parametro logico con l'errore seguente:

    Errore (26809)
    La configurazione del commutatore virtuale non corrisponde all'impostazione prevista della modalità uplinkMode dall'opzione logica.

    Azione
    consigliata In VMM, correggere la conformità di questo interruttore virtuale nell'host Hyper-V.


  • Errore di distribuzione del parametro logico


Per risolvere questi problemi, eseguire lo script seguente nel database 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


Come ottenere e installare l'aggiornamento cumulativo 2 per System Center 2016 Virtual Machine Manager Technical Preview 5

Informazioni sul download

I pacchetti di aggiornamento per Virtual Machine Manager sono disponibili tramite download manuale.

Download manuale dei pacchetti di aggiornamento

Vai ai siti Web seguenti per scaricare manualmente i pacchetti di aggiornamento dall'Area download Microsoft:

Scaricare Scarica subito il pacchetto di aggiornamento del server.

Scaricare Scarica subito il pacchetto di aggiornamento della console di amministrazione (amd64).

Scaricare Scarica subito il pacchetto di aggiornamento della console di amministrazione (i386).

Per installare manualmente i pacchetti di aggiornamento, eseguire il comando seguente da un prompt dei comandi con privilegi elevati:

msiexec.exe /update nome package

Ad esempio, per installare il pacchetto di aggiornamento cumulativo 2 per un server di System Center 2016 Virtual Machine Manager Technical Preview 5 (KB3160164), eseguire il comando seguente:

msiexec.exe /update kb3160164_vmmserver_amd64.msp
Nota Quando si esegue un aggiornamento cumulativo sul server VMM, l'aggiornamento richiede l'installazione degli aggiornamenti del server VMM e della console di amministrazione. Per ulteriori informazioni, fare clic sul numero dell'articolo seguente per visualizzare l'articolo nella Microsoft Knowledge Base:

3066343 Come installare, rimuovere o verificare i pacchetti di aggiornamento per Virtual Machine Manager

File aggiornati in questo aggiornamento cumulativo

Console di amministrazione KB3160165

File modificati

Dimensione file

Versione

ID lingua

Piattaforma

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

File modificati

Dimensione file

Versione

ID lingua

Piattaforma

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



Si applica aQuesto articolo si applica a quanto segue:

  • Microsoft System Center 2016 Virtual Machine Manager Technical Preview 5

Serve aiuto?

Vuoi altre opzioni?

Esplorare i vantaggi dell'abbonamento e i corsi di formazione, scoprire come proteggere il dispositivo e molto altro ancora.

Le community aiutano a porre e a rispondere alle domande, a fornire feedback e ad ascoltare gli esperti con approfondite conoscenze.

Queste informazioni sono risultate utili?

Come valuti la qualità della lingua?
Cosa ha influito sulla tua esperienza?
Premendo Inviare, il tuo feedback verrà usato per migliorare i prodotti e i servizi Microsoft. L'amministratore IT potrà raccogliere questi dati. Informativa sulla privacy.

Grazie per il feedback!

×