Pendahuluan
Artikel ini menjelaskan masalah yang diperbaiki dalam Update Rollup 3 untuk Microsoft System Center 2012 Paket Layanan 1 (SP1). Selain itu, artikel ini berisi petunjuk instalasi Update Rollup 3 untuk System Center 2012 SP1.
Masalah yang diperbaiki dalam Batal pemutakhiran ini
Pengendali aplikasi Update (KB2853227)
Masalah 1
Ketika Anda mencoba untuk menambah sambungan Microsoft System Center 2012 Virtual Machine Manager (VMM) dengan menggunakan UI atau perintah Windows PowerShell, sambungan tidak berhasil. Selain itu, Anda menerima pesan galat berikut:
Alamat sambungan harus nama domain yang memenuhi syarat.
Masalah ini dapat terjadi jika memenuhi syarat domain name (FQDN) berisi tanda hubung (-) di bagian belakang nama.
Masalah 2
Ketika langganan Microsoft Azure berisi memori tinggi (A6 atau A7) mesin virtual Microsoft Azure, Azure fungsionalitas tidak tersedia di Microsoft System Center 2012 pengendali aplikasi. Selain itu, Anda menerima pesan galat berikut:
Data yang diperoleh tidak lengkap.
Ketika Anda mengklik rincian lebih lanjut, Anda menerima pesan "Layanan tidak tersedia". Anda mungkin juga menerima pesan "diminta nilai 'A6' tidak ditemukan".
Masalah 3
Ketika Anda mencoba untuk menggunakan pengendali aplikasi bersama-sama dengan proxy server, Anda menerima pesan galat berikut:
otentikasi (407) yang diperlukan.
Catatan Pengendali aplikasi tidak dikonfigurasi menggunakan pengaturan proxy.
Masalah 4
Ketika Anda melihat properti jaringan mesin virtual disebarkan dan kemudian klik OK, sambungan jaringan disetel ke tidak ada. Sebagai contoh, kolom sambungan jaringan kosong dan tidak menampilkan adaptor jaringan saat ini.
Masalah 5
Ketika Anda dengan cepat memindahkan antara mesin virtual di daftar dan kemudian klik properti tugas, halaman properti untuk mesin virtual yang sebelumnya dipilih akan ditampilkan.
Masalah 6
Bila Anda menggunakan mesin virtual Azure ketika pengguna harus mengubah sandi pada logon berikutnya opsi yang dipilih, Anda menerima pesan galat berikut:
Permintaan buruk
Pengendali aplikasi penataan Update (KB2823452)
Masalah 1
Pengendali aplikasi tidak dapat diinstal jika nama server Microsoft SQL Server database dimulai dengan angka.
Lihat instalasi pengendali aplikasi ke SQL Server jauh gagal dengan kode galat pengecualian: 0x80131500 untuk informasi lebih lanjut.
Masalah 2
Penataan salah melaporkan bahwa pangkalan data SQL Server memiliki ruang disk tidak cukup.
Masalah 3
Penataan di sistem operasi non-bahasa Inggris gagal saat mencoba untuk mengaktifkan layanan informasi Internet (IIS).
Pembaruan Data Protection Manager (KB2877075)
Masalah 1
Ketika Anda mencoba mengatur berbagi perpustakaan saat Anda menggunakan Data Protection Manager SP1 Batal pemutakhiran 2, Anda menerima pesan galat berikut:
Gagal mengeksekusi RBACRolePermissionOnStoredProcScript.sql pada DPMServer\Database
Masalah 2
Ketika Anda menjalankan skrip Windows PowerShell yang mengambil grup perlindungan, konsol lumpuh.
Masalah 3
Layanan pembantu VMM berhenti merespons, dan tidak ada mesin virtual yang didukung. Mulai ulang memungkinkan cadangan untuk melanjutkan.
Catatan Jika Anda memiliki grup perlindungan yang memiliki Data Protection Manager Azure konfigurasi backup diaktifkan, dan jika Anda menyebarkan Data Protection Manager 2012 SP1 Update Rollup 3 (KB 2877075), Anda harus mengikuti langkah-langkah berikut setelah Anda menginstal Update Rollup 3:
-
Salin skrip berikut ke berkas, dan kemudian simpan berkas sebagai "Regneratejobdefscloud.ps1" di Manajer Perlindungan Data folder \DPM\DPM\Bin:
#Get installed path of Data Protection Manager. try{ $DPMInstalledPathProp = Get-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Microsoft Data Protection Manager\Setup" $DPMInstalledPath = $DPMInstalledPathProp.InstallPath } catch { TraceMessage("Unable to read DPM registry key. Make sure DPM is installed on this machine ") exit 1 } $logDir = $DPMInstalledPath+"\Temp" $logfilename = $logDir+"\ReGenerateJobDefs-Cloud.log" # Logs Message to log file function TraceMessage($message) { $timestamp = Get-Date $timestamp.ToString() +":"+ $message >> $logfilename Write-Host $message } # This function prints name of passed datasources. function PrintDSList($DSList) { if($DSList -ne $null) { foreach($item in $DSList) { TraceMessage( $item.ProductionServerName+"/"+ $item.DataSourceName) } } } try { $dpmservername = &"hostname" $dpmsrv = connect-dpmserver $dpmservername if (!$dpmsrv) { TraceMessage("Unable to connect to $dpmservername") exit 1 } } catch{ TraceMessage("Unable to connect to $dpmservername") exit 1 } #PG translation TraceMessage("############################################################################") TraceMessage("Going to generate job definitions") $err = $($pgList = @(Get-DPMProtectionGroup)) 2>&1 if($err) { TraceMessage(" Failed to get PGList of $dpmservername") TraceMessage($err) exit 1 } $failedPgList = New-Object System.Collections.ArrayList if($pgList -ne $null) { foreach($pg in $pgList) { TraceMessage( "------------------------------------------") TraceMessage("PG $($pg.FriendlyName) PGId : $($pg.ProtectionGroupId)- Regenerating jobs and schedules"); try { if($pg.IsCloudLongTerm -eq $true) { $pgToModify = Get-DPMProtectionGroup | Where{$_.ProtectionGroupId -eq $pg.ProtectionGroupId} $mpg = Get-DPMModifiableProtectionGroup $pgToModify $err = $($dsList = Get-DPMDatasource $pg) 2>&1 if($err) { TraceMessage("PG $($pg.FriendlyName) PGId : $($pg.ProtectionGroupId) - Failed to get datasource list ") TraceMessage($err) throw $err } TraceMessage("PG $($pg.FriendlyName) PGId : $($pg.ProtectionGroupId) - Doing force translation for all datasources"); PrintDSList($dsList); $err = $(Set-DPMProtectionGroup -ProtectionGroup $mpg -TranslateDSList $dsList) 2>&1 if($err) { TraceMessage("PG $($pg.FriendlyName) PGId : $($pg.ProtectionGroupId) - Failed to translate PG ") TraceMessage($err) throw $err } TraceMessage( "PG $($pg.FriendlyName) PGId : $($pg.ProtectionGroupId) - Successfully regenerated jobs and schedules") } else { TraceMessage("PG $($pg.FriendlyName) - is not Cloud Protected.") } } Catch { TraceMessage( "PG $($pg.FriendlyName) PGId : $($pg.ProtectionGroupId) - Failed to regenerate jobs") if($_.Exception -ne $null) { TraceMessage( "ExceptionMessage is " + $_.Exception.Message) } $failedPgList.Add($pg.FriendlyName) } Finally { TraceMessage( "------------------------------------------") } }#end of foreach }#end of if($pgList -ne $null) if($failedPgList.Count -eq 0) { TraceMessage( "Script execution Completed Successfully") TraceMessage( "############################################################") exit 0 } else { TraceMessage( "Script execution Completed , List of Failed PG: "+ $failedPgList) TraceMessage( "############################################################") exit 1 } -
Buka Manajer Perlindungan Data management shell, dan kemudian menjalankan skrip pada berkas Regneratejobdefscloud.ps1 yang Anda buat pada langkah 1.
-
Buka Manajer Perlindungan Data UI.
-
Untuk setiap grup perlindungan yang memiliki perlindungan online, ikuti langkah-langkah berikut:
-
Klik PG, dan kemudian klik Ubah perlindungan grup.
-
Klik Pilih metode perlindungan data, klik untuk mengosongkan kotak centang saya ingin perlindungan daring , dan kemudian klik berikutnya untuk melanjutkan dengan Wisaya.
-
Klik Update grup untuk menyimpan perubahan.
-
Sekali lagi, klik PG, dan kemudian klik Ubah perlindungan grup.
-
Klik Pilih metode perlindungan data, klik untuk memilih kotak centang saya ingin perlindungan daring , dan kemudian klik berikutnya untuk melanjutkan dengan Wisaya.
-
-
Klik Grup pembaruan untuk menyimpan grup perlindungan. Semua cadangan akan tetap berjalan seperti biasa.
Masalah lainnya
Masalah berikut ini terjadi ketika Anda menggunakan Manajer Perlindungan Data konfigurasi backup Azure:
-
Saat Anda menambahkan atau menghapus perlindungan daring untuk sumber data dalam grup perlindungan yang memiliki perlindungan online diaktifkan, pekerjaan pembuatan cadangan terjadwal online dari sumber data lain di grup perlindungan akan dihapus.
-
Saat Anda menambahkan perlindungan online kembali ke sumber data dalam grup perlindungan yang memiliki perlindungan online diaktifkan dan apabila sumber data dalam keadaan dijeda online-dilindungi, sumber data yang tidak dilindungi online. Namun, replika untuk sumber data masih dipertahankan di Azure. Jika sumber data dalam keadaan "tidak aktif Online replika" ini, pekerjaan pembuatan cadangan terjadwal daring untuk sumber data tidak dibuat.
-
Setelah Anda mengaktifkan kembali perlindungan daring untuk grup perlindungan yang berada dalam keadaan "tidak aktif Online replika" untuk beberapa sumber data, jika perlindungan online tidak diaktifkan untuk sumber data yang berada dalam keadaan "tidak aktif Online replika", Mesin Data Protection Manager lumpuh.
Manajer operasi pembaruan (KB2852565)
Masalah 1
Tabel dtPrincipal Layanan pengumpulan Audit (ACS) kadang-kadang hilang nama domain pengguna.
Masalah 2
Jika Anda memutuskan untuk melihat lebih dari dua hari nilai data dalam tampilan layanan tingkat Dashboard, data ditampilkan dari data yang dikumpulkan harian dan tidak berisi dua hari terakhir nilai data.
Masalah 3
Layanan Kesehatan berhenti pengumpulan data kinerja di Windows Server 2008 R2.
Masalah 4
Konsol web lumpuh saat melihat peringatan aktif dan tampilan Windows komputer status Diakses pada saat yang sama saat menggunakan Internet Explorer 9.
Masalah 5
Kebocoran memori mungkin terjadi di konsol saat kinerja widget dashboard dibiarkan terbuka.
Masalah 6
Ketika Operator peran yang digunakan, banyak peristiwa 26319 dibuat. Hal ini menyebabkan masalah kinerja.
Masalah 7
Kesehatan Layanan ketersediaan laporan tidak benar karena entri duplikat dalam tabel HealthServiceOutage.
Masalah 8
Setelah paket integrasi pengelola di bawah skenario beban tinggi, perangkat lunak (SDK) kit pengembangan proses kemogokan mungkin terjadi.
Masalah 9
Pemutakhiran ini menyertakan perbaikan untuk masalah konektor Advisor berikut ini:
-
Grup ikut
-
Manajer operasional Microsoft System Center 2012 gateway dan pemantauan Microsoft
-
Cmdlets Windows PowerShell
-
Status kesehatan
-
Link artikel Pangkalan Pengetahuan Microsoft di konsol manajer operasional peringatan
Manajer operasional - UNIX dan Linux pemantauan (manajemen paket pembaruan)
Masalah 1
Agen Solaris tidak dapat diinstal pada Solaris 11.1 karena tidak menemukan prasyarat OpenSSL paket.
Masalah 2
Pengetahuan mengedit halaman tidak ditampilkan saat monitor yang dibuat oleh perintah Shell template diedit.
Masalah 3
Berkas log yang disandikan dengan skema selain ASCII tidak dipantau.
Pemutakhiran konsol administrasi Virtual Machine Manager (KB2858509), pemutakhiran Server Virtual Machine Manager (KB2858510), dan manajer Mesin Virtual tamu agen pemutakhiran (KB2858511)
Masalah 1
Anda menerima pesan galat tidak valid awalan panjang dan tidak dapat menetapkan subnet migrasi jika awalan panjang tidak antara 4 dan 30 karakter untuk IPv4 atau antara 64 dan 126 karakter untuk IPv6.
Masalah 2
Migrasi subnet cluster dan node cluster harus baca-saja.
Masalah 3
Virtual Machine Manager (VMM) tidak dapat mengambil tindakan pemulihan Mesin Virtual (VM) pasca-kegagalan tanpa reverse replikasi.
Masalah 4
Dalam beberapa kasus, mesin virtual di SMB berbagi berkas yang terdaftar dengan menggunakan nama NetBIOS di kluster akan dalam keadaan konfigurasi cluster tidak didukung di VMM. Masalah ini dapat terjadi meskipun mesin virtual sehat dan berjalan. Selain itu, status mesin virtual tidak dapat diperbarui setelah itu.
Masalah 5
Penyegaran mesin virtual dengan benar memutakhirkan status mesin virtual bahkan setelah masalah konfigurasi cluster tidak didukung dikoreksi.
Masalah 6
Di penataan logam telanjang, Layanan VMM lumpuh saat keluar dari kisaran alamat IP yang ditetapkan.
Masalah 7
Setiap kali menginisialisasi DRA terjadi dalam Layanan VMM, pengecualian kerusakan pangkalan data yang diterima.
Masalah 8
Anda menerima "tidak dapat menyambung ke VMM DB" pengecualian ketika Anda mencoba untuk menerbitkan data jaringan host dan mesin virtual untuk layanan pelaporan SQL Server.
Masalah 9
Ketika Anda mencoba mengimpor Linux template dari VMware di Manajer Mesin Virtual 2012 Paket Layanan 1, Anda menerima galat 22723.
Masalah 10
Cmdlet Get-SCVirtualMachine tidak mengembalikan mesin virtual dengan ID mereka saat mesin virtual yang berisi cakram kluster kirim langsung.
Masalah 11
Pengguna tidak dapat menetapkan nama domain dalam pengaturan layanan.
Masalah 12
Layanan VMM lumpuh sewaktu-waktu.
Masalah 13
Nilai subkunci registri VMM ID diatur ke nilai null setelah Batal pemutakhiran 1 diterapkan.
Masalah 14
Pemutakhiran ini memperbaiki masalah beberapa teks UI di konsol manajer Mesin Virtual 2012 Paket Layanan 1 untuk pemulihan bencana dan HRM Azure layanan.
Masalah 15
Pemutakhiran ini memperbaiki beberapa laporan yang tidak bekerja dengan SQL Server 2012.
Masalah 16
Jika mesin virtual memiliki alamat IP statis, kegagalan uji tidak menetapkan alamat IP pada mesin virtual uji.
Masalah 17
Mesin virtual Rekam Jepret operasi mungkin gagal jika banyak snapshot dipulihkan pada saat yang sama dan memiliki nama yang sama.
Masalah 18
VMM server mungkin macet ketika Anda membuat template mesin virtual dari mesin virtual yang memiliki data checkpoint gagal tugas sebelumnya.
Masalah 19
Nomor unit logis (LUNs) untuk penyimpanan EMC tidak ditetapkan ke kluster di VMM.
Masalah 20
Layanan VMM lumpuh jika VMWare cluster atau host ditambahkan dengan menggunakan akun akar atau administrator lokal.
Masalah 21
Beberapa informasi log dicatat beberapa kali dalam berkas log tamu.
Masalah 22
Pemutakhiran ini memperbaiki beberapa masalah kinerja di penginstalan logam telanjang.
Masalah 23
Penempatan cluster Network Load Balancing (NLB) dalam lingkungan jaringan tidak bekerja untuk NLB penyeimbang beban dan grup bersarang host.
Masalah 24
Layanan VMM dapat menghentikan sementara VMWare vSphere 4.1 diperbarui.
Masalah 25
Jika uji kegagalan dimulai saat VMM restart, sisi pemulihan VMM lumpuh.
Cara mendapatkan dan menginstal Update Rollup 3 untuk System Center 2012
Informasi unduhan
Paket pemutakhiran untuk pengendali aplikasi, Data Protection Manager, manajer operasional dan manajer Mesin Virtual tersedia dari Microsoft Update.
-
Untuk mendapatkan dan menginstal pembaruan dari Microsoft Update, ikuti langkah-langkah ini pada sistem yang memiliki satu atau lebih komponen tersebut diinstal:
-
Klik Mulai, lalu klik Panel Kontrol.
-
Di Panel kontrol, klik dua kali Windows Update.
-
Di jendela pembaruan Windows, klik Periksa daring untuk pembaruan dari Pembaruan Microsoft.
-
Klik pemutakhiran penting tersedia.
-
Pilih paket Batal pemutakhiran 3 , dan kemudian klik OK.
-
Klik instal pembaruan untuk menginstal paket pembaruan.
-
-
Untuk mengunduh paket pemutakhiran secara manual dari Katalog Pembaruan Microsoft, kunjungi situs web Microsoft berikut ini:
Pengendali aplikasi Update (KB2853227)Unduh paket pemutakhiran kontroler aplikasi sekarang.Pengendali aplikasi penataan Update (KB2823452)
Unduh paket pembaruan penataan kontroler aplikasi sekarang.Pembaruan Data Protection Manager (KB2877075)
Unduh paket pemutakhiran Data Protection Manager sekarang.Manajer operasi pembaruan (KB2852565)
Unduh paket pemutakhiran manajer operasi sekarang.Konsol administrasi Virtual Machine Manager Update (KB2858509)
Unduh paket pemutakhiran konsol administrasi sekarang.Pemutakhiran Server Virtual Machine Manager (KB2858510)
Unduh paket Server pembaruan sekarang.Manajer mesin virtual tamu agen pembaruan (KB2858511)
Unduh paket pemutakhiran agen tamu sekarang.
Untuk secara manual menginstal paket, pembaruan ini jalankan perintah berikut ini dari wantian perintah yang ditampilkan:msiexec.exe /update packagenameMisalnya, untuk menginstal pembaruan Server manajer Mesin Virtual (KB2858510), jalankan perintah berikut ini:
msiexec.exe /update KB2858510_vmmServer_amd64.msp
Petunjuk pemasangan
Petunjuk penginstalan penataan pengendali aplikasi
Untuk mendapatkan dan menginstal paket pembaruan dari Microsoft Update, ikuti langkah-langkah berikut di server di mana Anda mencoba untuk menginstal pengendali aplikasi:
-
Jalankan penataan pengendali aplikasi.
-
Pada layar penginstalan awal, klik untuk memilih kotak centang Gunakan Microsoft Update untuk memeriksa pemutakhiran untuk aplikasi pengendali penataan .
Catatan Jika Anda menginstal dari baris perintah, menggunakan parameter /SelfUpdate true . -
Klik Instal.
Jika Anda menginstal pengendali aplikasi di server yang tidak memiliki akses Internet, Anda dapat secara manual menginstal pembaruan penataan. Untuk melakukannya, ikuti langkah-langkah berikut. (Pengendali aplikasi penataan tidak dapat memeriksa Windows Server Update Services (WSUS) pemutakhiran.)
Catatan Langkah-langkah ini berlaku hanya jika Anda tidak dapat menginstal pengendali aplikasi.
-
Jalankan SC2012_SP1_SCAC.exe ekstraktor diri untuk menyalin berkas aplikasi pengendali 2012 penataan Paket Layanan 1 ke jalur berkas.
-
Download KB2823452_AppControllerSetup_amd64.exe dari Katalog pembaruan Windows.
-
Dari wantian perintah yang ditinggikan, jalankan perintah berikut ini:
KB2823452_AppControllerSetup_amd64.exe /C/t: "\setup\amd64jalur berkas yang diekstrak pada langkah 1"
Klik ya untuk semua saat Anda diminta untuk menimpa berkas. -
Untuk menentukan apakah pemasangan berhasil, periksa versi berkas berikut ini:
-
Microsoft.SystemCenter.SetupFramework.dll
-
SetupConsole.exe
Berkas tersebut harus memiliki nomor versi 1.0.1603.0 dan terletak di folder berikut ini setelah penginstalan dimulai:%ProgramData%\Microsoft\System Center\App pengendali penataan
-
-
Jalankan Setup.exe dari lintasan berkas yang diekstrak pada langkah 1 dan kemudian instal seperti biasa.
Petunjuk penginstalan manajer perlindungan data
Untuk menginstal pembaruan untuk Data Protection Manager, ikuti langkah-langkah berikut:
-
Sebelum Anda menginstal pembaruan ini, membuat cadangan Pangkalan Data Protection Manager.
-
Menginstal paket Batal di server yang menjalankan System Center 2012 Data Protection Manager SP1. Untuk melakukannya, jalankan Microsoft Update pada server.
Catatan Sebelum Anda menginstal pembaruan ini melalui Microsoft Update, konsol manajer Perlindungan Data harus ditutup. Anda mungkin harus me-restart server manajer Perlindungan Data setelah Anda menginstal paket Batal pembaruan ini. -
Di konsol manajer Perlindungan Data Administrator, memperbarui agen perlindungan. Untuk melakukannya, gunakan salah satu metode berikut.
Metode 1: Pemutakhiran agen perlindungan dari konsol Administrator manajer Perlindungan Data-
Buka konsol Administrator manajer Perlindungan Data.
-
Klik tab manajemen , dan kemudian klik tab agen .
-
Di Komputer yang dilindungi daftar, pilih komputer, dan kemudian klik Update di panel tindakan .
-
Klik ya, dan kemudian klik Pemutakhiran agen.
Catatan Mulai ulang mungkin diperlukan untuk agen upgrade.
Metode 2: Pemutakhiran agen perlindungan pada komputer yang dilindungi-
Dapatkan paket pemutakhiran perlindungan agen dari direktori berikut ini di server System Center 2012 Data Protection Manager SP1:
Manajer perlindungan data lokasi instalasi\DPM\DPM\Agents\RA\4.1.3415.0
Paket tersebut adalah sebagai berikut:-
Pembaruan berbasis x86: i386\1033\DPMAgentInstaller_KB2877075.exe
-
Pembaruan berbasis x64: amd64\1033\DPMAgentInstaller_KB2877075_AMD64.exe
-
-
Jalankan paket DPMAgentInstaller.exe yang sesuai di setiap komputer dilindungi, berdasarkan arsitektur agen.
-
Buka konsol Data Protection Manager Administrator di server System Center 2012 Data Protection Manager SP1.
-
Klik tab manajemen , dan kemudian klik tab agen .
-
Pilih komputer dilindungi, memperbarui informasi tersebut, dan kemudian Verifikasikan bahwa nomor versi agen 4.1.3415.0.
-
Petunjuk penginstalan manajer operasi
Masalah ini upda yang diketahui te
-
Setelah Anda menginstal paket Batal pemutakhiran di semua peran di server yang menjalankan System Center Operations Manager 2012 Paket Layanan 1 (kecuali agen dan gerbang peran), pembaruan tidak ditampilkan di item Tambah atau Hapus Program di Panel kontrol.
-
Setelah Anda menerapkan Batal pemutakhiran 3, konsol manajer operasional telah dibuka kembali untuk menerapkan paket manajemen lampiran peringatan perbaikan.
-
Setelah Anda menginstal paket Batal pemutakhiran, nomor versi konsol tidak berubah.
-
Jika Paket Layanan pengumpulan Audit pembaruan diinstal, membongkar, dan kemudian ulang, skrip peningkatan pangkalan data yang disertakan dalam pemutakhiran ini tidak akan berjalan. Masalah ini terjadi karena versi database diubah selama penginstalan paket layanan pengumpulan Audit pemutakhiran pertama. Ini dapat menyebabkan server lumpuh apabila partisi ulang sementara partisi masih di tempat.
Untuk menutup partisi secara manual dengan menggunakan Microsoft SQL Server Management Studio, temukan database pemutakhiran Layanan pengumpulan Audit, dan menjalankan skrip berikut di jendela Editor kueri:begin tran
-- mark all active partitions for closing
if (select count(*) from dtPartition where Status = 0) > 0
update dtPartition set Status = 1 where Status = 0
commit tran
Untuk membuat partisi baru, ikuti langkah-langkah berikut:-
Hentikan Layanan pengumpulan Audit Server (AdtServer).
-
Menjalankan skrip.
-
Mulai ulang layanan AdtServer.
-
-
Setelah Anda menginstal paket Batal pemutakhiran di konsol web, Anda menerima pesan galat berikut ini di Internet Explorer:
Kesalahan Server di ' / OperationsManager' aplikasi.
Untuk mengatasi masalah ini, tutup, dan kemudian restart Internet Explorer.
Catatan pemasangan
-
Paket Batal pemutakhiran ini tersedia dari Microsoft Update dalam bahasa berikut:
-
China sederhana (Bab)
-
Jepang (JPN)
-
Prancis (FRA)
-
Jerman (UL)
-
Rusia (RUS)
-
Italia (GER)
-
Bahasa Spanyol (ESN)
-
Portugis (Brasil) (PTB)
-
Cina tradisional (CHT)
-
Korea (KOR)
-
Ceko (CSY)
-
Bahasa Belanda (NLD)
-
Bahasa Polandia (POL)
-
Portugis (Portugal) (PTG)
-
Bahasa Swedia (SWE)
-
Turki (TUR)
-
Bahasa Hongaria (mereka)
-
Bahasa Inggris (ENU)
-
Cina Hong Kong (HK)
-
-
Beberapa komponen multibahasa, dan pembaruan untuk komponen-komponen ini tidak dilokalisasi.
-
Anda harus menjalankan rollup pembaruan sebagai administrator.
-
Jika Anda tidak ingin me-restart komputer setelah Anda menerapkan pembaruan konsol, tutup konsol sebelum Anda menerapkan pembaruan untuk peran konsol.
-
Untuk memulai contoh baru Microsoft Silverlight, kosongkan tembolok peramban di Silverlight, dan kemudian restart Silverlight.
-
Tidak menginstal paket Batal pemutakhiran segera setelah Anda menginstal server System Center 2012 SP1. Jika tidak, kondisi kesehatan Layanan tidak dapat dijalankan.
-
Jika kontrol akun pengguna diaktifkan, jalankan berkas .msp pembaruan dari wantian perintah yang ditampilkan.
-
Anda harus memiliki hak Administrator sistem pada contoh database untuk operasional pangkalan data dan gudang Data untuk menerapkan pemutakhiran ini pangkalan data.
-
Microsoft.SystemCenter.IntelliTraceProfiling.mpb disertakan dalam Batal pemutakhiran 1 tetapi tidak berisi perbaikan baru. Jangan impor file ini.
-
Untuk mengaktifkan konsol web perbaikan, tambahkan baris berikut ke berkas %windir%\Microsoft.NET\Framework64\v2.0.50727\CONFIG\web.config:
< machineKey validationKey = "AutoGenerate, IsolateApps" decryptionKey = "AutoGenerate, IsolateApps" validasi = "3DES" dekripsi = "3DES" / >
Catatan Tambahkan baris di bawah bagian < system.web > seperti diuraikan pada Anda mungkin menerima pesan galat ketika Anda mengakses halaman ASP.NET Web yang memiliki ViewState diaktifkan setelah Anda meng-upgrade dari ASP.NET 1.1 ASP.NET 2.0. -
Konektor Advisor .mpb berkas yang akan diperbarui secara Update Rollup 3 (UR3) memerlukan Operations Manager 2012 SP1 UR3 pemutakhiran dipasang. Instalasi UR3 .mpb berkas pada instalasi Operations Manager 2012 SP1 Batal pemutakhiran 2 (UR2) tidak didukung.
Urutan pemasangan yang didukung
Kami menyarankan Anda menginstal paket Batal pemutakhiran dengan urutan berikut ini:
-
Menginstal paket Batal pemutakhiran pada infrastruktur server berikut ini:
-
Server manajemen atau server
-
Server gateway
-
Server pelaporan
-
Komputer peran server konsol web
-
Konsol operasi peran komputer
-
-
Secara manual impor paket manajemen.
-
Terapkan pemutakhiran agen untuk agen yang diinstal secara manual. Atau, tekan penginstalan dari Pending melihat di konsol operasi.
Catatan
-
Menginstal paket Batal pemutakhiran agen sebelum atau setelah Anda menginstal paket Batal pemutakhiran pada infrastruktur server.
-
Jika fitur tersambung MG/Tiering diaktifkan, pertama-tama memperbarui tingkat atas fitur tersambung MG/Tiering.
-
File Update Rollup 3 memiliki versi nomor 9538.1068, kecuali file di dalam pembaruan layanan pengumpulan Audit. Berkas ini memiliki nomor versi 9538.1069.
Informasi penginstalan
Untuk men-download paket Batal pemutakhiran dan mengekstrak berkas yang disertakan dalam paket Batal pemutakhiran, ikuti langkah-langkah berikut:
-
Unduh paket pemutakhiran yang menyediakan Microsoft Update untuk setiap komputer. Microsoft Update menyediakan pembaruan yang sesuai berdasarkan komponen yang diinstal di setiap komputer.
-
Menerapkan berkas .msp yang sesuai di setiap komputer.
-
Menjalankan skrip SQL berikut ini di server gudang data terhadap OperationsManagerDW database:
-
UR_Datawarehouse.sql
Catatan Jalur skrip adalah sebagai berikut:%SystemDrive%\Program Files\System pusat 2012 SP1\Operations Manager\Server\SQL skrip untuk Batal pemutakhiran
-
-
Impor paket manajemen berikut ini:
-
Microsoft.SystemCenter.AlertAttachment.mpb
-
Microsoft.SystemCenter.IntelliTraceProfiling.mpb
Paket ini memiliki ketergantungan berikut ini:-
Microsoft.SystemCenter.IntelliTraceCollectorInstallation.mpb harus diinstal dari System Center Operations Manager 2012 Paket Layanan 1.
-
Microsoft.Windows.InternetInformationServices.Common.mpb harus diinstal dari Katalog online.
-
-
Microsoft.SystemCenter.Visualization.Library.mpb
-
Microsoft.SystemCenter.Image.Library.mpb
-
Lihat bagaimana cara mengimpor paket manajemen manajer operasi untuk informasi tentang cara mengimpor paket manajemen dari disk.
Catatan Paket manajemen yang disertakan dalam pemutakhiran komponen Server di lintasan berikut:
Paket SP1\Operations Manager\Server\Management %SystemDrive%\Program Files\System Center 2012 untuk Batal pemutakhiran
Penghapusaninformasi
Untuk menghapus pembaruan, jalankan perintah berikut ini:
msiexec / bongkar PatchCodeGuid/paket RTMProductCodeGuid
Catatan Dalam perintah ini, tempat RTMProductCodeGuid mewakili GUID berikut ini.
Komponen |
RTMProductCodeGuid |
Server |
{8070C91C-7D7C-4DAD-88B1-0966EEA9A8FE} |
Konsol (AMD64) |
{5142AB0B-73E3-4AD3-9D0F-65B3D9026769} |
Konsol (x86) |
{358C8AF0-25BB-425A-A4E6-7ADE54ED4736} |
Pelaporan |
{A2D27C0E-181D-4955-B95D-D3FB651E6AF7} |
WebConsole (AMD64) |
{5ED945BA-2BDD-4567-804E-8D3D2DB5CC9B} |
ACS |
{3E7464F7-A468-44E1-9A95-58349E022EAE} |
Agen (AMD64) |
{8B21425D-02F3-4B80-88CE-8F79B320D330} |
Agen (x86) |
{387306D9-78CE-4E0E-B952-28A50CC8B3EE} |
Agen (IA-64) |
{F3DDB021-89BC-464F-9107-69E2547D08FD} |
Gateway |
{80C2A57A-4193-4800-AA27-CD79553FE9DF} |
ASF-ACS (AMD64) |
{B30F4F71-2AF3-4542-855B-E1C7A31AC9A5} |
ASF-ACS (x86) |
{B30F4F71-2AF3-4542-855B-E1C7A31AC9A5} |
Selain itu, tempat PatchCodeGuid mewakili GUID berikut ini.
PatchCode |
Komponen |
CPU |
Lokal |
{D154E2E1-9A65-4229-9D80-E0E3024BC810} |
Agen |
AMD64 |
id |
{6C7440B8-7121-4A86-B110-13EF5496483A} |
Server |
AMD64 |
id |
{7D7FCCF6-498A-4C52-84E4-4A6CF7BF142D} |
Gateway |
AMD64 |
id |
{EDE39D87-2031-4BB9-85CF-DA4D5CC60E62} |
WebConsole |
AMD64 |
id |
{51573384-18AF-4F02-A234-159F87189BE2} |
Konsol |
AMD64 |
id |
ACS |
AMD64 |
id |
|
{84120BBF-60A6-4D36-8715-A30439C44303} |
Agen |
IA-64 |
id |
{D5F05640-DBE7-4C4C-B26B-45F718851972} |
Agen |
x86 |
id |
{2E46DFE1-C2AD-457E-9D29-E6995B816288} |
Konsol |
x86 |
id |
{407BA30F-44B3-48FB-B387-13C3E7B43EF3} |
Konsol |
AMD64 |
CN |
{53F0F0ED-1BD2-4C8F-A97C-2C5883058AAE} |
WebConsole |
AMD64 |
CN |
{016C9C4D-F0AD-4294-95B7-B362328D792B} |
ACS |
AMD64 |
CN |
{08DFFED6-FBDC-45FA-8C2E-E69C366EDD1B} |
WebConsole |
AMD64 |
CS |
{142A41C0-31F1-48F6-9DF5-F820FCBD9650} |
Konsol |
AMD64 |
CS |
{107745AB-A35C-4E04-831E-DC740E935EB8} |
ACS |
AMD64 |
CS |
{88A877D1-5636-4ABD-80ED-CFB86DCF7206} |
Konsol |
AMD64 |
DE |
{9EE433ED-AFD1-4A74-9D49-7D71CAEE4414} |
WebConsole |
AMD64 |
DE |
{295A0AEA-3F7A-4DEC-8F4F-9D18F138C2FC} |
ACS |
AMD64 |
DE |
{6156ACB9-3C6D-4B2C-A79A-D65B372B12F0} |
Konsol |
AMD64 |
ES |
{02DBC1C1-1F76-4A85-A6D2-05B04BD23312} |
WebConsole |
AMD64 |
ES |
{B999DF65-47FE-49C5-9039-A6B1198932C9} |
ACS |
AMD64 |
ES |
{47C23519-937F-43F8-BE2F-9A38D2E73B95} |
Konsol |
AMD64 |
FR |
{ECC3634F-3C79-465B-BFBF-ACB529289103} |
WebConsole |
AMD64 |
FR |
{1DBE7810-D1BD-4D7F-B742-1D46FE5D44C9} |
ACS |
AMD64 |
FR |
{279895BC-1249-4067-A09C-01C37D6A330E} |
Konsol |
AMD64 |
HU |
{3472F246-4781-4CA2-A6F9-D3ACC7F450D5} |
WebConsole |
AMD64 |
HU |
{EF7271B1-B341-4706-B382-15312EF3D343} |
ACS |
AMD64 |
HU |
{BCA9454A-A2C0-44A3-A457-EFD603F085EA} |
Konsol |
AMD64 |
IT |
{F9AF9CE4-C3DE-4A71-8EF2-25CB0D9B22BE} |
WebConsole |
AMD64 |
INI |
{6EA78074-7F0B-454B-BA34-3F865ED0E289} |
ACS |
AMD64 |
IT |
{66350179-CF0D-4788-AB86-847CEA2EEAA7} |
Konsol |
AMD64 |
JA |
{14DDC92B-169A-4DB9-8BD2-1407247AEEF8} |
WebConsole |
AMD64 |
JA |
{5A536E8F-3485-4047-ACDF-D0F2F50E8367} |
ACS |
AMD64 |
JA |
{944B0604-3FDF-4274-AEC5-4E440C7C471D} |
Konsol |
AMD64 |
KO |
{39FFBB7B-DF63-4318-AC78-B2E48FD534CC} |
WebConsole |
AMD64 |
KO |
{6DAA05FE-8459-48E0-902C-29A88BC40516} |
ACS |
AMD64 |
KO |
{F3DEC4D8-BE92-4E63-8B2B-E517B488D8D1} |
Konsol |
AMD64 |
NL |
{7D4C18E4-6933-4674-ABCF-73FDF6E86D13} |
WebConsole |
AMD64 |
NL |
{448B3C24-F86F-493E-845F-76143D86EBC6} |
ACS |
AMD64 |
NL |
{14D8B89B-4BB8-4957-B63F-3093A389D7E0} |
Konsol |
AMD64 |
PL |
{D307FAC7-411B-44DE-9C0E-D7ED5C7B84B5} |
WebConsole |
AMD64 |
PL |
{BB68B59B-0661-4F4B-8C0E-37ECC92FC19B} |
ACS |
AMD64 |
PL |
{88E06D9A-4AA6-4A32-A799-24AA4D5AA41E} |
Konsol |
AMD64 |
PT-BR |
{3503B91F-A46B-4823-BCBC-29B18DFB66EF} |
WebConsole |
AMD64 |
PT-BR |
{0053BF4F-F8FC-487A-B4C2-5C5AA3E44333} |
ACS |
AMD64 |
PT-BR |
{6E07D642-276B-435E-A553-9C67FCC341AE} |
Konsol |
AMD64 |
PT-PT |
{AF4508F0-3F7C-4409-81FE-EEF0F8FC38E0} |
WebConsole |
AMD64 |
PT-PT |
{AEC6D4A0-1DFE-46EC-949F-96B288E32C7F} |
ACS |
AMD64 |
PT-PT |
{EA7EDD78-8250-46E2-A9F4-5A786C3676A0} |
ACS |
AMD64 |
JALAN |
{4B812C92-753A-42A4-8545-798ED84102CC} |
Konsol |
AMD64 |
JALAN |
{3B44791F-8E1D-4716-A2B7-FD6A1E7BA9AD} |
WebConsole |
AMD64 |
JALAN |
{DD3FFEF9-5BD8-490A-B995-27425F5DDAF6} |
ACS |
AMD64 |
SV |
{6688CE64-867E-4B71-8FDC-4CE4EC2F50B7} |
Konsol |
AMD64 |
SV |
{96DE2DFF-257F-4719-8169-A77B09EE4201} |
WebConsole |
AMD64 |
SV |
{7DE2DB39-2650-4E2F-B6A3-4DFD3A15E6F7} |
Konsol |
AMD64 |
TR |
{6C602A22-5768-4238-B8EB-D7D72E966891} |
WebConsole |
AMD64 |
TR |
{9178BBF5-181A-497E-96A0-7D1A9A61378A} |
ACS |
AMD64 |
TR |
{F0CEC17E-A121-4811-8E46-C1A9012989AE} |
Konsol |
AMD64 |
TW |
{6EA1B46A-069B-49EA-861C-64A0DFC0EAAA} |
WebConsole |
AMD64 |
TW |
{6CD3D625-376F-4166-9F25-4431EFBCE492} |
ACS |
AMD64 |
TW |
{619C10BA-50D3-4A37-A650-E1FD6A3EF2BD} |
Konsol |
AMD64 |
ID-ZK |
{E7076F38-2E82-4CF6-ADFD-A83C0B79F472} |
WebConsole |
AMD64 |
ID-ZK |
{707D5170-2B9D-489B-8D5C-6ECAD1F5D10F} |
ACS |
AMD64 |
ID-ZK |
{EF070153-1AA9-4EA3-A0AE-3ACE90A3DEC8} |
Konsol |
x86 |
CN |
{E4E3CC15-C757-4352-88EC-936A1D83A4D1} |
Konsol |
x86 |
CS |
{6AFDC390-6B4C-444B-85E5-15BDAD3D4A87} |
Konsol |
x86 |
DE |
{BD82B95F-3207-40D2-8354-8235D2C6D265} |
Konsol |
x86 |
ES |
{49A20079-6FD2-4476-890A-D428480B99DA} |
Konsol |
x86 |
FR |
{601C5873-A4BC-46E3-8E78-7F00F220C631} |
Konsol |
x86 |
HU |
{3D5D5947-7358-408E-8002-3621DD0C4304} |
Konsol |
x86 |
INI |
{F3ABED6F-85EE-4085-8B45-C9DB0BA1866F} |
Konsol |
x86 |
JA |
{E5A8B3F4-AB8F-410D-A2D2-25DD03B4ACD6} |
Konsol |
x86 |
KO |
{EBDA3EE9-7247-4ADD-BBF9-4F133BD4E325} |
Konsol |
x86 |
NL |
{D2C44532-A546-41AA-A4A8-D632DB4875F6} |
Konsol |
x86 |
PL |
{29FDA7C0-E7C8-45A6-82C5-246E3961E448} |
Konsol |
x86 |
PT-BR |
{079FCA89-AB6B-4923-94F3-427A036BC897} |
Konsol |
x86 |
PT-PT |
{C605041A-13B3-4859-BDEE-D8778029C6A5} |
Konsol |
x86 |
JALAN |
{BF166F81-F9C3-4DBA-B792-7872BF4CB40E} |
Konsol |
x86 |
SV |
{DA5C926C-E1FA-4D16-B7EE-9144238453C9} |
Konsol |
x86 |
TR |
{9954A0F1-9267-408E-BF23-A7951B0CA4AC} |
Konsol |
x86 |
TW |
{859B0691-3127-49C3-9777-7B3682D0D697} |
Konsol |
x86 |
ID-ZK |
Operations Manager UNIX dan Linux pemantauan petunjuk penginstalan paket dan agen
Untuk menginstal paket pemantauan diperbarui dan agen untuk UNIX dan Linux sistem operasi, ikuti langkah-langkah berikut:
-
Download paket manajemen yang telah dimutakhirkan dari website Microsoft berikut:
Pusat sistem pemantauan paket untuk UNIX dan sistem operasi Linux
-
Instal paket pemutakhiran paket manajemen untuk mengekstrak berkas paket manajemen.
-
Impor berikut ini:
-
Paket manajemen Microsoft.Unix.Library mutakhir (dari \2012 SP1\ folder)
-
Bundel Paket manajemen Microsoft.ShellCommand.Library Diperbarui
-
Bundel Paket manajemen Process.Library Diperbarui
-
Paket Manajemen Perpustakaan platform terbaru yang relevan dengan platform Linux atau UNIX yang Anda pemantauan di lingkungan Anda
Catatan Paket manajemen Microsoft.Linux.Universal juga terdapat dalam \2012 SP1\ folder. -
-
Impor paket manajemen yang telah dimutakhirkan untuk setiap versi Linux atau UNIX yang Anda pemantauan di lingkungan Anda.
-
Meningkatkan setiap agen ke versi terbaru menggunakan cmdlet Windows PowerShell SCXAgent pembaruan atau Wisaya peningkatan UNIX Linux agen di panel administrasi konsol operasi.
Petunjuk penginstalan manajer mesin virtual
Masalah yang diketahui untuk pemutakhiran ini
Anda tidak dapat menerapkan pemutakhiran kumulatif ini ke komputer yang menjalankan Batal pemutakhiran 1 untuk System Center 2012 Service Pack 1. Untuk menginstal Update Rollup 3 untuk System Center 2012 Service Pack 1 Virtual Machine Manager, Anda harus membongkar Batal pemutakhiran 1 untuk System Center 2012 Service Pack 1 Virtual Machine Manager dari sistem Anda. Untuk informasi selengkapnya, lihat blog pusat sistem pada website Microsoft berikut:
http://blogs.technet.com/b/scvmm/archive/2013/04/23/update-on-system-center-2012-sp1-update-rollup-2-ur2-for-virtual-machine-manager.aspx
Catatan Ada tidak ada masalah yang diketahui ketika Anda menerapkan Batal pemutakhiran 3 untuk sistem yang menjalankan Batal pemutakhiran 2 untuk System Center 2012 Service Pack 1.
Informasi penginstalan
Untuk menginstal paket pemutakhiran secara manual, jalankan perintah berikut ini dari wantian perintah yang ditampilkan:
msiexec.exe /update packagename
Misalnya, untuk menginstal pembaruan manajer Mesin Virtual (KB2858510), jalankan perintah berikut ini:
msiexec.exe /update KB2858510-AMD64-Server.msp
Berkas yang akan diperbarui secara Update Rollup 3 paket
Pengendali aplikasi (KB2853227)
Berkas yang diubah |
Ukuran file |
Versi |
%PROGRAMFILES%\Microsoft system Center 2012\App Controller\api\bin\Microsoft.SystemCenter.CloudManager.Providers.Vmm.exe |
499,448 |
1.0.1604.0 |
%PROGRAMFILES%\Microsoft system Center 2012\App Controller\api\bin\ Microsoft.SystemCenter.CloudManager.Providers.Azure.exe |
751,864 |
1.0.1604.0 |
%PROGRAMFILES%\Microsoft system Center 2012\App Controller\api\bin\ Microsoft.SystemCenter.CloudManager.Providers.Spfvmm.exe |
685,816 |
1.0.1604.0 |
%PROGRAMFILES%\Microsoft system Center 2012\App Controller\api\bin\ Microsoft.SystemCenter.CloudManager.Providers.System.exe |
185,592 |
1.0.1604.0 |
%PROGRAMFILES%\Microsoft system Center 2012\App Controller\api\bin\ Microsoft.SystemCenter.CloudManager.Providers.System.Common.dll |
170,744 |
1.0.1604.0 |
%PROGRAMFILES%\Microsoft system Center 2012\App Controller\wwwroot\Default.htm |
3,098 |
Tidak dapat diterapkan |
%PROGRAMFILES%\Microsoft system Center 2012\App Controller\wwwroot\Configuration\ModulesCatalog.xaml |
14,456 |
Tidak dapat diterapkan |
%PROGRAMFILES%\Microsoft system Center 2012\App Controller\wwwroot\ClientBin\1.0.1.8\SelfServiceUser.xap |
761,228 |
Tidak dapat diterapkan |
%PROGRAMFILES%\Microsoft system Center 2012\App Controller\wwwroot\ClientBin\1.0.1.8\UI. Administrator.xap |
242,279 |
Tidak dapat diterapkan |
%PROGRAMFILES%\Microsoft system Center 2012\App Controller\wwwroot\ClientBin\1.0.1.8\UI. Jobs.xap |
216,628 |
Tidak dapat diterapkan |
%PROGRAMFILES%\Microsoft system Center 2012\App Controller\wwwroot\ClientBin\1.0.1.8\Management.Core.xap |
220,759 |
Tidak dapat diterapkan |
%PROGRAMFILES%\Microsoft system Center 2012\App Controller\wwwroot\ClientBin\1.0.1.8\UI. ProductOverview.xap |
322,790 |
Tidak dapat diterapkan |
%PROGRAMFILES%\Microsoft system Center 2012\App Controller\wwwroot\ClientBin\1.0.1.8\UI. RBAC.xap |
230,688 |
Tidak dapat diterapkan |
%PROGRAMFILES%\Microsoft system Center 2012\App Controller\wwwroot\ClientBin\1.0.1.8\UI. Shell.xap |
2,874,673 |
Tidak dapat diterapkan |
Penataan pengendali aplikasi (KB2823452)
Berkas yang diubah |
Ukuran file |
Versi |
%ProgramData%\Microsoft\System Center\App kontroler Setup\SetupConsole.exe |
709,880 |
1.0.1603.0 |
%ProgramData%\Microsoft\System Center\App Controller Setup\SetupFramework.dll |
624,888 |
1.0.1603.0 |
Pembaruan Data Protection Manager (KB2877075)
Nama file |
Versi |
Ukuran file |
acreg.dll |
4.1.3415.0 |
310,984 |
AgentProxy.dll |
4.1.3415.0 |
215,752 |
AutoHeal.dll |
4.1.3415.0 |
72,392 |
CloudEngineProxyWrapper.dll |
4.1.3415.0 |
51,912 |
CPWrapper.dll |
4.1.3415.0 |
1,145,544 |
DataProtectionManager.psd1 |
4.1.3415.0 |
19,544 |
DataProtectionManager.psm1 |
4.1.3415.0 |
25,250 |
dpmac.exe |
4.1.3415.0 |
2,122,952 |
DPMClientService.exe |
4.1.3415.0 |
608,968 |
DPMLA.exe |
4.1.3415.0 |
2,932,424 |
DPMRA.exe |
4.1.3415.0 |
6,424,264 |
EngineServiceProxyWrapper.dll |
4.1.3415.0 |
174,792 |
FilterWrapper.dll |
4.1.3415.0 |
156,872 |
GenericDatasourceWriterHelperPlugin.dll |
4.1.3415.0 |
836,808 |
INTENTTRANSLATOR.dll |
4.1.3415.0 |
572,104 |
Microsoft.EnterpriseStorage.Dls.Prm.MbcParser.dll |
4.1.3415.0 |
495,816 |
msdpmdll.dll |
4.1.3415.0 |
559,304 |
msdpmPS.dll |
4.1.3415.0 |
37,064 |
pruneshadowcopiesDpm2010.ps1 |
4.1.3415.0 |
27,750 |
ServiceProxy.dll |
4.1.3415.0 |
356,552 |
SetDpmServer.exe |
4.1.3415.0 |
124,104 |
SQLWriterHelperPlugin.dll |
4.1.3415.0 |
1,117,384 |
UICommon.dll |
4.1.3415.0 |
109,256 |
VmmHelperService.dll |
4.1.3415.0 |
25,288 |
VmmHelperServiceClient.dll |
4.1.3415.0 |
35,528 |
VssRequestorWin8.dll |
4.1.3415.0 |
391,368 |
WSS4Cmdlets.dll |
4.1.3415.0 |
129,736 |
WSSCmdlets.dll |
4.1.3415.0 |
150,216 |
WSSWriterHelperPlugin.dll |
4.1.3415.0 |
878,280 |
1033\AlertHealthProvider.dll |
4.1.3415.0 |
146,120 |
1033\AMTE.dll |
4.1.3415.0 |
289,480 |
1033\CBEngineServiceProxy.dll |
4.1.3415.0 |
113,352 |
1033\CloudBackupActivationWizard.dll |
4.1.3415.0 |
142,024 |
1033\CloudUtils.dll |
4.1.3415.0 |
461,512 |
1033\ConfigurationPage.dll |
4.1.3415.0 |
690,888 |
1033\DataProtectionWizard.dll |
4.1.3415.0 |
1,854,152 |
1033\Inspect.dll |
4.1.3415.0 |
170,696 |
1033\InstallAgentsWizard.dll |
4.1.3415.0 |
658,120 |
1033\ManagedContainer.dll |
4.1.3415.0 |
1,583,816 |
1033\Microsoft.Internal.EnterpriseStorage.Dls.UI.ObjectModel.ClientDatasource.dll |
4.1.3415.0 |
60,104 |
1033\Microsoft.Internal.EnterpriseStorage.Dls.UI.ObjectModel.SQL.dll |
4.1.3415.0 |
64,200 |
1033\ObjectModel.dll |
4.1.3415.0 |
1,223,368 |
1033\ObjectModelCmdlet.dll |
4.1.3415.0 |
400,072 |
1033\ProtectionView.dll |
4.1.3415.0 |
903,880 |
1033\Utils.dll |
4.1.3415.0 |
1,227,464 |
1028\zh-TW\CloudBackupActivationWizard.resources.dll |
4.1.3415.0 |
101,064 |
1028\zh-TW\ConfigurationPage.resources.dll |
4.1.3415.0 |
375,496 |
1028\zh-TW\DataProtectionWizard.resources.dll |
4.1.3415.0 |
1,145,544 |
1028\zh-TW\ManagedContainer.resources.dll |
4.1.3415.0 |
236,232 |
1028\zh-TW\ProtectionView.resources.dll |
4.1.3415.0 |
617,160 |
1028\zh-TW\Utils.resources.dll |
4.1.3415.0 |
584,392 |
1028\zh-TW\ViewAdhocJobs.resources.dll |
4.1.3415.0 |
47,816 |
1029\cs-CZ\CloudBackupActivationWizard.resources.dll |
4.1.3415.0 |
105,160 |
1029\cs-CZ\ConfigurationPage.resources.dll |
4.1.3415.0 |
379,592 |
1029\cs-CZ\DataProtectionWizard.resources.dll |
4.1.3415.0 |
1,153,736 |
1029\cs-CZ\ManagedContainer.resources.dll |
4.1.3415.0 |
236,232 |
1029\cs-CZ\ProtectionView.resources.dll |
4.1.3415.0 |
621,256 |
1029\cs-CZ\Utils.resources.dll |
4.1.3415.0 |
686,792 |
1029\cs-CZ\ViewAdhocJobs.resources.dll |
4.1.3415.0 |
47,816 |
1031\de-DE\CloudBackupActivationWizard.resources.dll |
4.1.3415.0 |
105,160 |
1031\de-DE\ConfigurationPage.resources.dll |
4.1.3415.0 |
383,688 |
1031\de-DE\DataProtectionWizard.resources.dll |
4.1.3415.0 |
1,157,832 |
1031\de-DE\ManagedContainer.resources.dll |
4.1.3415.0 |
236,232 |
1031\de-DE\ProtectionView.resources.dll |
4.1.3415.0 |
621,256 |
1031\de-DE\Utils.resources.dll |
4.1.3415.0 |
735,944 |
1031\de-DE\ViewAdhocJobs.resources.dll |
4.1.3415.0 |
47,816 |
1036\fr-FR\CloudBackupActivationWizard.resources.dll |
4.1.3415.0 |
105,160 |
1036\fr-FR\ConfigurationPage.resources.dll |
4.1.3415.0 |
383,688 |
1036\fr-FR\DataProtectionWizard.resources.dll |
4.1.3415.0 |
1,157,832 |
1036\fr-FR\ManagedContainer.resources.dll |
4.1.3415.0 |
236,232 |
1036\fr-FR\ProtectionView.resources.dll |
4.1.3415.0 |
621,256 |
1036\fr-FR\Utils.resources.dll |
4.1.3415.0 |
727,752 |
1036\fr-FR\ViewAdhocJobs.resources.dll |
4.1.3415.0 |
47,816 |
1038\hu-HU\CloudBackupActivationWizard.resources.dll |
4.1.3415.0 |
105,160 |
1038\hu-HU\ConfigurationPage.resources.dll |
4.1.3415.0 |
383,688 |
1038\hu-HU\DataProtectionWizard.resources.dll |
4.1.3415.0 |
1,161,928 |
1038\hu-HU\ManagedContainer.resources.dll |
4.1.3415.0 |
236,232 |
1038\hu-HU\ProtectionView.resources.dll |
4.1.3415.0 |
621,256 |
1038\hu-HU\Utils.resources.dll |
4.1.3415.0 |
752,328 |
1038\hu-HU\ViewAdhocJobs.resources.dll |
4.1.3415.0 |
47,816 |
1040\it-IT\CloudBackupActivationWizard.resources.dll |
4.1.3415.0 |
105,160 |
1040\it-IT\ConfigurationPage.resources.dll |
4.1.3415.0 |
383,688 |
1040\it-IT\DataProtectionWizard.resources.dll |
4.1.3415.0 |
1,153,736 |
1040\it-IT\ManagedContainer.resources.dll |
4.1.3415.0 |
236,232 |
1040\it-IT\ProtectionView.resources.dll |
4.1.3415.0 |
621,256 |
1040\it-IT\Utils.resources.dll |
4.1.3415.0 |
694,984 |
1040\it-IT\ViewAdhocJobs.resources.dll |
4.1.3415.0 |
47,816 |
1041\ja-JP\CloudBackupActivationWizard.resources.dll |
4.1.3415.0 |
105,160 |
1041\ja-JP\ConfigurationPage.resources.dll |
4.1.3415.0 |
387,784 |
1041\ja-JP\DataProtectionWizard.resources.dll |
4.1.3415.0 |
1,166,024 |
1041\ja-JP\ManagedContainer.resources.dll |
4.1.3415.0 |
228,040 |
1041\ja-JP\ProtectionView.resources.dll |
4.1.3415.0 |
625,352 |
1041\ja-JP\Utils.resources.dll |
4.1.3415.0 |
830,152 |
1041\ja-JP\ViewAdhocJobs.resources.dll |
4.1.3415.0 |
47,816 |
1042\ko-KR\CloudBackupActivationWizard.resources.dll |
4.1.3415.0 |
101,064 |
1042\ko-KR\ConfigurationPage.resources.dll |
4.1.3415.0 |
383,688 |
1042\ko-KR\DataProtectionWizard.resources.dll |
4.1.3415.0 |
1,153,736 |
1042\ko-KR\ManagedContainer.resources.dll |
4.1.3415.0 |
236,232 |
1042\ko-KR\ProtectionView.resources.dll |
4.1.3415.0 |
621,256 |
1042\ko-KR\Utils.resources.dll |
4.1.3415.0 |
727,752 |
1042\ko-KR\ViewAdhocJobs.resources.dll |
4.1.3415.0 |
47,816 |
1043\nl-NL\CloudBackupActivationWizard.resources.dll |
4.1.3415.0 |
105,160 |
1043\nl-NL\ConfigurationPage.resources.dll |
4.1.3415.0 |
379,592 |
1043\nl-NL\DataProtectionWizard.resources.dll |
4.1.3415.0 |
1,153,736 |
1043\nl-NL\ManagedContainer.resources.dll |
4.1.3415.0 |
236,232 |
1043\nl-NL\ProtectionView.resources.dll |
4.1.3415.0 |
621,256 |
1043\nl-NL\Utils.resources.dll |
4.1.3415.0 |
662,216 |
1043\nl-NL\ViewAdhocJobs.resources.dll |
4.1.3415.0 |
47,816 |
1045\pl-PL\CloudBackupActivationWizard.resources.dll |
4.1.3415.0 |
105,160 |
1045\pl-PL\ConfigurationPage.resources.dll |
4.1.3415.0 |
379,592 |
1045\pl-PL\DataProtectionWizard.resources.dll |
4.1.3415.0 |
1,157,832 |
1045\pl-PL\ManagedContainer.resources.dll |
4.1.3415.0 |
236,232 |
1045\pl-PL\ProtectionView.resources.dll |
4.1.3415.0 |
621,256 |
1045\pl-PL\Utils.resources.dll |
4.1.3415.0 |
723,656 |
1045\pl-PL\ViewAdhocJobs.resources.dll |
4.1.3415.0 |
47,816 |
1046\pt-BR\CloudBackupActivationWizard.resources.dll |
4.1.3415.0 |
105,160 |
1046\pt-BR\ConfigurationPage.resources.dll |
4.1.3415.0 |
379,592 |
1046\pt-BR\DataProtectionWizard.resources.dll |
4.1.3415.0 |
1,157,832 |
1046\pt-BR\ManagedContainer.resources.dll |
4.1.3415.0 |
236,232 |
1046\pt-BR\ProtectionView.resources.dll |
4.1.3415.0 |
621,256 |
1046\pt-BR\Utils.resources.dll |
4.1.3415.0 |
686,792 |
1046\pt-BR\ViewAdhocJobs.resources.dll |
4.1.3415.0 |
47,816 |
1049\ru-RU\CloudBackupActivationWizard.resources.dll |
4.1.3415.0 |
105,160 |
1049\ru-RU\ConfigurationPage.resources.dll |
4.1.3415.0 |
391,880 |
1049\ru-RU\DataProtectionWizard.resources.dll |
4.1.3415.0 |
1,182,408 |
1049\ru-RU\ManagedContainer.resources.dll |
4.1.3415.0 |
236,232 |
1049\ru-RU\ProtectionView.resources.dll |
4.1.3415.0 |
633,544 |
1049\ru-RU\Utils.resources.dll |
4.1.3415.0 |
1,034,952 |
1049\ru-RU\ViewAdhocJobs.resources.dll |
4.1.3415.0 |
47,816 |
1053\sv-SE\CloudBackupActivationWizard.resources.dll |
4.1.3415.0 |
105,160 |
1053\sv-SE\ConfigurationPage.resources.dll |
4.1.3415.0 |
379,592 |
1053\sv-SE\DataProtectionWizard.resources.dll |
4.1.3415.0 |
1,153,736 |
1053\sv-SE\ManagedContainer.resources.dll |
4.1.3415.0 |
236,232 |
1053\sv-SE\ProtectionView.resources.dll |
4.1.3415.0 |
621,256 |
1053\sv-SE\Utils.resources.dll |
4.1.3415.0 |
658,120 |
1053\sv-SE\ViewAdhocJobs.resources.dll |
4.1.3415.0 |
47,816 |
1055\tr-TR\CloudBackupActivationWizard.resources.dll |
4.1.3415.0 |
101,064 |
1055\tr-TR\ConfigurationPage.resources.dll |
4.1.3415.0 |
379,592 |
1055\tr-TR\DataProtectionWizard.resources.dll |
4.1.3415.0 |
1,153,736 |
1055\tr-TR\ManagedContainer.resources.dll |
4.1.3415.0 |
236,232 |
1055\tr-TR\ProtectionView.resources.dll |
4.1.3415.0 |
621,256 |
1055\tr-TR\Utils.resources.dll |
4.1.3415.0 |
678,600 |
1055\tr-TR\ViewAdhocJobs.resources.dll |
4.1.3415.0 |
47,816 |
2052\zh-CN\CloudBackupActivationWizard.resources.dll |
4.1.3415.0 |
101,064 |
2052\zh-CN\ConfigurationPage.resources.dll |
4.1.3415.0 |
379,592 |
2052\zh-CN\DataProtectionWizard.resources.dll |
4.1.3415.0 |
1,145,544 |
2052\zh-CN\ManagedContainer.resources.dll |
4.1.3415.0 |
236,232 |
2052\zh-CN\ProtectionView.resources.dll |
4.1.3415.0 |
613,064 |
2052\zh-CN\Utils.resources.dll |
4.1.3415.0 |
572,104 |
2052\zh-CN\ViewAdhocJobs.resources.dll |
4.1.3415.0 |
47,816 |
2070\pt-PT\CloudBackupActivationWizard.resources.dll |
4.1.3415.0 |
105,160 |
2070\pt-PT\ConfigurationPage.resources.dll |
4.1.3415.0 |
379,592 |
2070\pt-PT\DataProtectionWizard.resources.dll |
4.1.3415.0 |
1,157,832 |
2070\pt-PT\ManagedContainer.resources.dll |
4.1.3415.0 |
236,232 |
2070\pt-PT\ProtectionView.resources.dll |
4.1.3415.0 |
621,256 |
2070\pt-PT\Utils.resources.dll |
4.1.3415.0 |
703,176 |
2070\pt-PT\ViewAdhocJobs.resources.dll |
4.1.3415.0 |
47,816 |
3076\zh-HK\CloudBackupActivationWizard.resources.dll |
4.1.3415.0 |
101,064 |
3076\zh-HK\ConfigurationPage.resources.dll |
4.1.3415.0 |
375,496 |
3076\zh-HK\DataProtectionWizard.resources.dll |
4.1.3415.0 |
1,145,544 |
3076\zh-HK\ManagedContainer.resources.dll |
4.1.3415.0 |
236,232 |
3076\zh-HK\ProtectionView.resources.dll |
4.1.3415.0 |
617,160 |
3076\zh-HK\Utils.resources.dll |
4.1.3415.0 |
584,392 |
3076\zh-HK\ViewAdhocJobs.resources.dll |
4.1.3415.0 |
47,816 |
3082\es-ES\CloudBackupActivationWizard.resources.dll |
4.1.3415.0 |
105,160 |
3082\es-ES\ConfigurationPage.resources.dll |
4.1.3415.0 |
379,592 |
3082\es-ES\DataProtectionWizard.resources.dll |
4.1.3415.0 |
1,157,832 |
3082\es-ES\InstallAgentsWizard.resources.dll |
4.1.3415.0 |
264,904 |
3082\es-ES\ManagedContainer.resources.dll |
4.1.3415.0 |
236,232 |
3082\es-ES\ProtectionView.resources.dll |
4.1.3415.0 |
621,256 |
3082\es-ES\Utils.resources.dll |
4.1.3415.0 |
719,560 |
3082\es-ES\ViewAdhocJobs.resources.dll |
4.1.3415.0 |
47,816 |
1028\ObjectModelCmdlet.dll-Help.xml |
4.1.3415.0 |
1,222,388 |
1029\ObjectModelCmdlet.dll-Help.xml |
4.1.3415.0 |
1,222,388 |
1031\ObjectModelCmdlet.dll-Help.xml |
4.1.3415.0 |
1,222,388 |
1033\ObjectModelCmdlet.dll-Help.xml |
4.1.3415.0 |
1,222,388 |
1036\ObjectModelCmdlet.dll-Help.xml |
4.1.3415.0 |
1,222,388 |
1038\ObjectModelCmdlet.dll-Help.xml |
4.1.3415.0 |
1,222,388 |
1040\ObjectModelCmdlet.dll-Help.xml |
4.1.3415.0 |
1,222,388 |
1041\ObjectModelCmdlet.dll-Help.xml |
4.1.3415.0 |
1,222,388 |
1042\ObjectModelCmdlet.dll-Help.xml |
4.1.3415.0 |
1,222,388 |
1043\ObjectModelCmdlet.dll-Help.xml |
4.1.3415.0 |
1,222,388 |
1045\ObjectModelCmdlet.dll-Help.xml |
4.1.3415.0 |
1,222,388 |
1046\ObjectModelCmdlet.dll-Help.xml |
4.1.3415.0 |
1,222,388 |
1049\ObjectModelCmdlet.dll-Help.xml |
4.1.3415.0 |
1,222,388 |
1053\ObjectModelCmdlet.dll-Help.xml |
4.1.3415.0 |
1,222,388 |
1055\ObjectModelCmdlet.dll-Help.xml |
4.1.3415.0 |
1,222,388 |
2052\ObjectModelCmdlet.dll-Help.xml |
4.1.3415.0 |
1,222,388 |
2070\ObjectModelCmdlet.dll-Help.xml |
4.1.3415.0 |
1,222,388 |
3076\ObjectModelCmdlet.dll-Help.xml |
4.1.3415.0 |
1,222,388 |
3082\ObjectModelCmdlet.dll-Help.xml |
4.1.3415.0 |
1,222,388 |
Manajer operasional (KB2852565)
Berkas yang diubah |
Ukuran file |
Versi |
AdtPerf.dll |
78,552 byte |
7.0.9538.1069 |
AdtServer.exe |
101,080 byte |
7.0.9538.1069 |
AdtSrvDll.dll |
480,472 byte |
7.0.9538.1069 |
AdvisorConnector.dll |
315,608 byte |
7.0.9538.1068 |
ClientShared.dll |
192,728 byte |
7.0.9538.1068 |
ConnectorBridge_x64.dll |
78,552 byte |
7.0.9538.1068 |
/amd64/HealthServiceRuntime.dll |
319,192 byte |
7.0.9538.1068 |
/ia64/HealthServiceRuntime.dll |
753,880 byte |
7.0.9538.1068 |
/x86/HealthServiceRuntime.dll |
254,680 byte |
7.0.9538.1068 |
Microsoft.EnterpriseManagement.Management.DataProviders.dll |
589,016 byte |
7.0.9538.1068 |
Microsoft.EnterpriseManagement.Modules.PowerShell.dll |
88,792 byte |
7.0.9538.1068 |
Microsoft.EnterpriseManagement.Monitoring.Components.dll |
1,135,832 byte |
7.0.9538.1068 |
/Silverlight/Microsoft.EnterpriseManagement.Monitoring.Components.dll |
829,656 byte) |
7.0.9538.1068 |
Microsoft.EnterpriseManagement.Monitoring.Console.exe |
4,666,584 byte |
7.0.9538.1068 |
Microsoft.EnterpriseManagement.Monitoring.DataProviders.dll |
415,960 byte |
7.0.9538.1068 |
Microsoft.EnterpriseManagement.OperationsManager.MonitoringViews.dll |
1,810,136 byte |
7.0.9538.1068 |
Microsoft.EnterpriseManagement.Presentation.Controls.dll |
1,772,760 byte |
7.0.9538.1068 |
/Silverlight/Microsoft.EnterpriseManagement.Presentation.Controls.dll |
1,639,640 byte |
7.0.9538.1068 |
Microsoft.EnterpriseManagement.Presentation.Core.dll |
496,856 byte |
7.0.9538.1068 |
/Silverlight/Microsoft.EnterpriseManagement.Presentation.Core.dll |
303,320 byte |
7.0.9538.1068 |
Microsoft.EnterpriseManagement.Presentation.DataProviders.Library.dll |
108,248 byte |
7.0.9538.1068 |
Microsoft.EnterpriseManagement.Presentation.WebConsole.dll |
98,520 byte |
7.0.9538.1068 |
Microsoft.EnterpriseManagement.RuntimeService.dll |
395,992 byte |
7.0.9538.1068 |
Microsoft.EnterpriseManagement.UI.Administration.dll |
4,467,416 byte |
7.0.9538.1068 |
Microsoft.EnterpriseManagement.UI.Authoring.dll |
9,906,904 byte |
7.0.9538.1068 |
Microsoft.EnterpriseManagement.UI.ConsoleFramework.dll |
2,809,560 byte |
7.0.9538.1068 |
Microsoft.ManagementServices.AppDiagnostics.IntelliTraceConvertor.dll |
70,360 byte |
7.0.9538.1068 |
Microsoft.Mom.Modules.ClientMonitoring.dll |
457,432 byte |
7.0.9538.1068 |
/amd64/Microsoft.Mom.ServiceCommon.dll |
27,864 byte |
7.0.9538.1068 |
/x86/Microsoft.Mom.ServiceCommon.dll |
24,792 byte |
7.0.9538.1068 |
/ia64/Microsoft.Mom.ServiceCommon.dll |
52,440 byte |
7.0.9538.1068 |
Microsoft.MOM.UI.Components.dll |
6,142,680 byte |
7.0.9538.1068 |
Microsoft.SystemCenter.OperationsManagerV10.Commands.dll |
647,384 byte |
7.0.9538.1068 |
MOMAdvisorMsgs.dll |
31,448 byte |
7.0.9538.1068 |
/amd64/MOMAgentInstaller.exe |
365,272 byte |
7.0.9538.1068 |
/x86/MOMAgentInstaller.exe |
337,112 byte |
7.0.9538.1068 |
/ia64/MOMAgentInstaller.exe |
634,584 byte |
7.0.9538.1068 |
/amd64/MOMAgentInstallerPS.dll |
52,952 byte |
7.0.9538.1068 |
/x86/MOMAgentInstallerPS.dll |
46,296 byte |
7.0.9538.1068 |
/ia64/MOMAgentInstallerPS.dll |
101,592 byte |
7.0.9538.1068 |
/amd64/MOMModules.dll |
2,609,368 byte |
7.0.9538.1068 |
/x86/MOMModules.dll |
2,006,232 byte |
7.0.9538.1068 |
/ia64/MOMModules.dll |
5,704,408 byte |
7.0.9538.1068 |
/amd64/MOMPerfSnapshotHelper.exe |
50,392 byte |
7.0.9538.1068 |
/x86/MOMPerfSnapshotHelper.exe |
41,176 byte |
7.0.9538.1068 |
/ia64/MOMPerfSnapshotHelper.exe |
100,568 byte |
7.0.9538.1068 |
/amd64/MOMPerfSnapshotHelperProxy.dll |
18,648 byte |
7.0.9538.1068 |
/x86/MOMPerfSnapshotHelperProxy.dll |
16,600 byte |
7.0.9538.1068 |
/ia64/MOMPerfSnapshotHelperProxy.dll |
24,792 byte |
7.0.9538.1068 |
OMTraceTMFVer.Dll |
7.0.9538.1068 |
|
OMVersion.dll |
8,920 byte |
7.0.9538.1068 |
OpsMgrTraceTMFVer.Dll |
7.0.9538.1068 |
|
/amd64/silverlightclientconfiguration.exe |
3,598,552 byte |
7.0.9538.1068 |
/x86/silverlightclientconfiguration.exe |
3,577,560 byte |
7.0.9538.1068 |
/ia64/silverlightclientconfiguration.exe |
3,577,560 byte |
7.0.9538.1068 |
/amd64/TraceFmtSM.exe |
447,192 byte |
7.0.9538.1068 |
/x86/TraceFmtSM.exe |
372,952 byte |
7.0.9538.1068 |
/ia64/TraceFmtSM.exe |
665,304 byte |
7.0.9538.1068 |
/amd64/TraceLogSM.exe |
107,224 byte |
7.0.9538.1068 |
/x86/TraceLogSM.exe |
95,448 byte |
7.0.9538.1068 |
/ia64/TraceLogSM.exe |
223,960 byte |
7.0.9538.1068 |
AdtAgent.exe |
408,264 byte |
7.0.9538.1047 |
ConnectorBridge_x86.dll |
106,496 byte |
7.0.9538.1047 |
DashboardViewer.xap |
413,2864 byte |
Tidak dapat diterapkan |
Microsoft.Deployment.Compression.Cab.dll |
49,152 byte |
3.5.2519.0 |
Microsoft.Deployment.Compression.dll |
36,864 byte |
3.5.2519.0 |
Microsoft.EnterpriseManagement.Core.dll |
404,6848 byte |
7.5.2905.103 |
Microsoft.SystemCenter.IntelliTraceProfiling.mpb |
131,072 byte |
Tidak dapat diterapkan |
MomAdvisorMsg.dll |
28,672 byte |
7.0.9538.1047 |
MonitoringPortal.xap |
419,8400 byte |
Tidak dapat diterapkan |
Konsol Administrator manajer mesin virtual (KB2858509)
versi 32-bit
Berkas yang diubah |
Ukuran file |
Versi |
ID bahasa |
AxVMwareRemoteConsoleTypeLib.dll |
31488 |
5.1.0.0 |
|
Engine.Common.dll |
204072 |
3.1.6027.0 |
|
Engine.Deployment.dll |
548648 |
3.1.6027.0 |
|
Errors.dll |
3849000 |
3.1.6027.0 |
|
Errors.resources.dll |
1327400 |
3.1.6027.0 |
2052 |
Errors.resources.dll |
1646888 |
3.1.6027.0 |
1036 |
Errors.resources.dll |
1674536 |
3.1.6027.0 |
1031 |
Errors.resources.dll |
1554216 |
3.1.6027.0 |
1040 |
Errors.resources.dll |
1841448 |
3.1.6027.0 |
1041 |
Errors.resources.dll |
1561384 |
3.1.6027.0 |
1046 |
Errors.resources.dll |
2202408 |
3.1.6027.0 |
1049 |
Errors.resources.dll |
1603368 |
3.1.6027.0 |
3082 |
Errors.resources.dll |
1345840 |
3.1.6027.0 |
1028 |
Errors.resources.dll |
1634600 |
3.1.6027.0 |
1042 |
Errors.resources.dll |
1345840 |
3.1.6027.0 |
3076 |
Errors.resources.dll |
1556264 |
3.1.6027.0 |
1029 |
Errors.resources.dll |
1526568 |
3.1.6027.0 |
1043 |
Errors.resources.dll |
1685800 |
3.1.6027.0 |
1038 |
Errors.resources.dll |
1610536 |
3.1.6027.0 |
1045 |
Errors.resources.dll |
1578792 |
3.1.6027.0 |
2070 |
Errors.resources.dll |
1494312 |
3.1.6027.0 |
1053 |
Errors.resources.dll |
1513264 |
3.1.6027.0 |
1055 |
ImgLibEngine.dll |
3146024 |
3.1.6027.0 |
|
Microsoft.SystemCenter.VirtualMachineManager.dll |
1796392 |
3.1.6027.0 |
|
Microsoft.SystemCenter.VirtualMachineManger.PowerShell.CmdletWrappers.dll |
1494696 |
3.1.6018.0 |
|
Microsoft.VirtualManager.UI.AddIns.Management.dll |
96424 |
3.1.6018.0 |
|
Microsoft.VirtualManager.UI.Dialogs.dll |
2944304 |
3.1.6027.0 |
|
Microsoft.VirtualManager.UI.Dialogs.resources.dll |
963888 |
3.1.6027.0 |
2052 |
Microsoft.VirtualManager.UI.Dialogs.resources.dll |
995624 |
3.1.6027.0 |
1036 |
Microsoft.VirtualManager.UI.Dialogs.resources.dll |
989488 |
3.1.6027.0 |
1031 |
Microsoft.VirtualManager.UI.Dialogs.resources.dll |
985896 |
3.1.6027.0 |
1040 |
Microsoft.VirtualManager.UI.Dialogs.resources.dll |
1006384 |
3.1.6027.0 |
1041 |
Microsoft.VirtualManager.UI.Dialogs.resources.dll |
986928 |
3.1.6027.0 |
1046 |
Microsoft.VirtualManager.UI.Dialogs.resources.dll |
1053480 |
3.1.6027.0 |
1049 |
Microsoft.VirtualManager.UI.Dialogs.resources.dll |
989992 |
3.1.6027.0 |
3082 |
Microsoft.VirtualManager.UI.Dialogs.resources.dll |
965416 |
3.1.6027.0 |
1028 |
Microsoft.VirtualManager.UI.Dialogs.resources.dll |
987432 |
3.1.6027.0 |
1042 |
Microsoft.VirtualManager.UI.Dialogs.resources.dll |
965416 |
3.1.6027.0 |
3076 |
Microsoft.VirtualManager.UI.Dialogs.resources.dll |
988456 |
3.1.6027.0 |
1029 |
Microsoft.VirtualManager.UI.Dialogs.resources.dll |
983336 |
3.1.6027.0 |
1043 |
Microsoft.VirtualManager.UI.Dialogs.resources.dll |
995112 |
3.1.6027.0 |
1038 |
Microsoft.VirtualManager.UI.Dialogs.resources.dll |
986928 |
3.1.6027.0 |
1045 |
Microsoft.VirtualManager.UI.Dialogs.resources.dll |
988464 |
3.1.6027.0 |
2070 |
Microsoft.VirtualManager.UI.Dialogs.resources.dll |
979240 |
3.1.6027.0 |
1053 |
Microsoft.VirtualManager.UI.Dialogs.resources.dll |
982312 |
3.1.6027.0 |
1055 |
Microsoft.VirtualManager.UI.HardwareProperties.dll |
707368 |
3.1.6027.0 |
|
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll |
452904 |
3.1.6027.0 |
2052 |
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll |
456488 |
3.1.6027.0 |
1036 |
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll |
459560 |
3.1.6027.0 |
1031 |
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll |
457008 |
3.1.6027.0 |
1040 |
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll |
457000 |
3.1.6027.0 |
1041 |
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll |
460584 |
3.1.6027.0 |
1046 |
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll |
467760 |
3.1.6027.0 |
1049 |
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll |
457008 |
3.1.6027.0 |
3082 |
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll |
453416 |
3.1.6027.0 |
1028 |
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll |
454952 |
3.1.6027.0 |
1042 |
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll |
453416 |
3.1.6027.0 |
3076 |
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll |
455464 |
3.1.6027.0 |
1029 |
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll |
459560 |
3.1.6027.0 |
1043 |
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll |
455976 |
3.1.6027.0 |
1038 |
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll |
454952 |
3.1.6027.0 |
1045 |
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll |
455464 |
3.1.6027.0 |
2070 |
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll |
459048 |
3.1.6027.0 |
1053 |
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll |
459560 |
3.1.6027.0 |
1055 |
Microsoft.VirtualManager.UI.NewVmWizard.dll |
817960 |
3.1.6027.0 |
|
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll |
551216 |
3.1.6027.0 |
2052 |
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll |
559920 |
3.1.6027.0 |
1036 |
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll |
561448 |
3.1.6027.0 |
1031 |
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll |
559408 |
3.1.6027.0 |
1040 |
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll |
559912 |
3.1.6027.0 |
1041 |
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll |
562984 |
3.1.6027.0 |
1046 |
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll |
573232 |
3.1.6027.0 |
1049 |
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll |
559400 |
3.1.6027.0 |
3082 |
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll |
552752 |
3.1.6027.0 |
1028 |
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll |
555304 |
3.1.6027.0 |
1042 |
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll |
552744 |
3.1.6027.0 |
3076 |
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll |
555816 |
3.1.6027.0 |
1029 |
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll |
562984 |
3.1.6027.0 |
1043 |
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll |
556336 |
3.1.6027.0 |
1038 |
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll |
555304 |
3.1.6027.0 |
1045 |
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll |
555304 |
3.1.6027.0 |
2070 |
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll |
561960 |
3.1.6027.0 |
1053 |
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll |
561968 |
3.1.6027.0 |
1055 |
Microsoft.VirtualManager.UI.Pages.Datacenter.dll |
2929960 |
3.1.6027.0 |
|
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll |
1076016 |
3.1.6027.0 |
2052 |
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll |
1104680 |
3.1.6027.0 |
1036 |
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll |
1098032 |
3.1.6027.0 |
1031 |
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll |
1094960 |
3.1.6027.0 |
1040 |
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll |
1112872 |
3.1.6027.0 |
1041 |
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll |
1095464 |
3.1.6027.0 |
1046 |
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll |
1154864 |
3.1.6027.0 |
1049 |
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll |
1098544 |
3.1.6027.0 |
3082 |
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll |
1078576 |
3.1.6027.0 |
1028 |
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll |
1095464 |
3.1.6027.0 |
1042 |
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll |
1078568 |
3.1.6027.0 |
3076 |
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll |
1098024 |
3.1.6027.0 |
1029 |
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll |
1092392 |
3.1.6027.0 |
1043 |
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll |
1102120 |
3.1.6027.0 |
1038 |
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll |
1095984 |
3.1.6027.0 |
1045 |
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll |
1098024 |
3.1.6027.0 |
2070 |
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll |
1090344 |
3.1.6027.0 |
1053 |
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll |
1093416 |
3.1.6027.0 |
1055 |
Microsoft.VirtualManager.UI.Pages.Settings.dll |
168240 |
3.1.6027.0 |
|
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll |
84784 |
3.1.6027.0 |
2052 |
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll |
86824 |
3.1.6027.0 |
1036 |
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll |
86312 |
3.1.6027.0 |
1031 |
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll |
86312 |
3.1.6027.0 |
1040 |
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll |
86824 |
3.1.6027.0 |
1041 |
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll |
86312 |
3.1.6027.0 |
1046 |
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll |
88872 |
3.1.6027.0 |
1049 |
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll |
86312 |
3.1.6027.0 |
3082 |
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll |
84776 |
3.1.6027.0 |
1028 |
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll |
85800 |
3.1.6027.0 |
1042 |
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll |
84776 |
3.1.6027.0 |
3076 |
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll |
86312 |
3.1.6027.0 |
1029 |
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll |
86312 |
3.1.6027.0 |
1043 |
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll |
86312 |
3.1.6027.0 |
1038 |
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll |
85800 |
3.1.6027.0 |
1045 |
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll |
85808 |
3.1.6027.0 |
2070 |
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll |
85800 |
3.1.6027.0 |
1053 |
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll |
85808 |
3.1.6027.0 |
1055 |
Microsoft.VirtualManager.UI.VMWizards.dll |
213160 |
3.1.6018.0 |
|
Microsoft.VirtualManager.UI.VMWizards.resources.dll |
65728 |
3.1.6018.0 |
2052 |
Microsoft.VirtualManager.UI.VMWizards.resources.dll |
67752 |
3.1.6018.0 |
1036 |
Microsoft.VirtualManager.UI.VMWizards.resources.dll |
67264 |
3.1.6018.0 |
1031 |
Microsoft.VirtualManager.UI.VMWizards.resources.dll |
67776 |
3.1.6018.0 |
1040 |
Microsoft.VirtualManager.UI.VMWizards.resources.dll |
68288 |
3.1.6018.0 |
1041 |
Microsoft.VirtualManager.UI.VMWizards.resources.dll |
67264 |
3.1.6018.0 |
1046 |
Microsoft.VirtualManager.UI.VMWizards.resources.dll |
71352 |
3.1.6018.0 |
1049 |
Microsoft.VirtualManager.UI.VMWizards.resources.dll |
67240 |
3.1.6018.0 |
3082 |
Microsoft.VirtualManager.UI.VMWizards.resources.dll |
65704 |
3.1.6018.0 |
1028 |
Microsoft.VirtualManager.UI.VMWizards.resources.dll |
67240 |
3.1.6018.0 |
1042 |
Microsoft.VirtualManager.UI.VMWizards.resources.dll |
65704 |
3.1.6018.0 |
3076 |
Microsoft.VirtualManager.UI.VMWizards.resources.dll |
67776 |
3.1.6018.0 |
1029 |
Microsoft.VirtualManager.UI.VMWizards.resources.dll |
67240 |
3.1.6018.0 |
1043 |
Microsoft.VirtualManager.UI.VMWizards.resources.dll |
67776 |
3.1.6018.0 |
1038 |
Microsoft.VirtualManager.UI.VMWizards.resources.dll |
67240 |
3.1.6018.0 |
1045 |
Microsoft.VirtualManager.UI.VMWizards.resources.dll |
67240 |
3.1.6018.0 |
2070 |
Microsoft.VirtualManager.UI.VMWizards.resources.dll |
66728 |
3.1.6018.0 |
1053 |
Microsoft.VirtualManager.UI.VMWizards.resources.dll |
66752 |
3.1.6018.0 |
1055 |
Remoting.dll |
832296 |
3.1.6027.0 |
|
Pemberitahuan tambahan untuk SC 2012 SP1 - manajer Mesin Virtual Update Rollup 3 docx |
26067 |
||
TraceWrapper.dll |
67880 |
3.1.6027.0 |
|
Utils.dll |
751912 |
3.1.6027.0 |
|
Utils.resources.dll |
88360 |
3.1.6027.0 |
2052 |
Utils.resources.dll |
91432 |
3.1.6027.0 |
1036 |
Utils.resources.dll |
90920 |
3.1.6027.0 |
1031 |
Utils.resources.dll |
91944 |
3.1.6027.0 |
1040 |
Utils.resources.dll |
95528 |
3.1.6027.0 |
1041 |
Utils.resources.dll |
92456 |
3.1.6027.0 |
1046 |
Utils.resources.dll |
106792 |
3.1.6027.0 |
1049 |
Utils.resources.dll |
92968 |
3.1.6027.0 |
3082 |
Utils.resources.dll |
88360 |
3.1.6027.0 |
1028 |
Utils.resources.dll |
91432 |
3.1.6027.0 |
1042 |
Utils.resources.dll |
88368 |
3.1.6027.0 |
3076 |
Utils.resources.dll |
92968 |
3.1.6027.0 |
1029 |
Utils.resources.dll |
90408 |
3.1.6027.0 |
1043 |
Utils.resources.dll |
92456 |
3.1.6027.0 |
1038 |
Utils.resources.dll |
92456 |
3.1.6027.0 |
1045 |
Utils.resources.dll |
92456 |
3.1.6027.0 |
2070 |
Utils.resources.dll |
89904 |
3.1.6027.0 |
1053 |
Utils.resources.dll |
91440 |
3.1.6027.0 |
1055 |
VirtualizationInterfaces.dll |
86696 |
3.1.6018.0 |
|
VMConsoleLib.dll |
58624 |
3.1.6020.0 |
|
VMWareImplementation.dll |
2052392 |
3.1.6027.0 |
|
VMwareRemoteConsoleTypeLib.dll |
48896 |
5.1.0.0 |
|
VMwareViewer.exe |
26880 |
3.1.6020.0 |
|
VSImplementation.dll |
99496 |
3.1.6018.0 |
|
WSManAutomation.dll |
35112 |
3.1.6027.0 |
|
WsManWrappers.dll |
3209000 |
3.1.6027.0 |
versi 64-bit
Berkas yang diubah |
Ukuran file |
Versi |
ID bahasa |
AxVMwareRemoteConsoleTypeLib.dll |
31488 |
5.1.0.0 |
|
Engine.Common.dll |
204072 |
3.1.6027.0 |
|
Engine.Deployment.dll |
548648 |
3.1.6027.0 |
|
Errors.dll |
3849000 |
3.1.6027.0 |
|
Errors.resources.dll |
1327408 |
3.1.6027.0 |
2052 |
Errors.resources.dll |
1646888 |
3.1.6027.0 |
1036 |
Errors.resources.dll |
1674536 |
3.1.6027.0 |
1031 |
Errors.resources.dll |
1554224 |
3.1.6027.0 |
1040 |
Errors.resources.dll |
1841456 |
3.1.6027.0 |
1041 |
Errors.resources.dll |
1561384 |
3.1.6027.0 |
1046 |
Errors.resources.dll |
2202416 |
3.1.6027.0 |
1049 |
Errors.resources.dll |
1603376 |
3.1.6027.0 |
3082 |
Errors.resources.dll |
1345832 |
3.1.6027.0 |
1028 |
Errors.resources.dll |
1634600 |
3.1.6027.0 |
1042 |
Errors.resources.dll |
1345832 |
3.1.6027.0 |
3076 |
Errors.resources.dll |
1556264 |
3.1.6027.0 |
1029 |
Errors.resources.dll |
1526568 |
3.1.6027.0 |
1043 |
Errors.resources.dll |
1685800 |
3.1.6027.0 |
1038 |
Errors.resources.dll |
1610536 |
3.1.6027.0 |
1045 |
Errors.resources.dll |
1578792 |
3.1.6027.0 |
2070 |
Errors.resources.dll |
1494320 |
3.1.6027.0 |
1053 |
Errors.resources.dll |
1513264 |
3.1.6027.0 |
1055 |
ImgLibEngine.dll |
3146024 |
3.1.6027.0 |
|
Microsoft.SystemCenter.VirtualMachineManager.dll |
1796400 |
3.1.6027.0 |
|
Microsoft.SystemCenter.VirtualMachineManger.PowerShell.CmdletWrappers.dll |
1494720 |
3.1.6018.0 |
|
Microsoft.VirtualManager.UI.AddIns.Management.dll |
96424 |
3.1.6018.0 |
|
Microsoft.VirtualManager.UI.Dialogs.dll |
2944296 |
3.1.6027.0 |
|
Microsoft.VirtualManager.UI.Dialogs.resources.dll |
963880 |
3.1.6027.0 |
2052 |
Microsoft.VirtualManager.UI.Dialogs.resources.dll |
995624 |
3.1.6027.0 |
1036 |
Microsoft.VirtualManager.UI.Dialogs.resources.dll |
989480 |
3.1.6027.0 |
1031 |
Microsoft.VirtualManager.UI.Dialogs.resources.dll |
985896 |
3.1.6027.0 |
1040 |
Microsoft.VirtualManager.UI.Dialogs.resources.dll |
1006376 |
3.1.6027.0 |
1041 |
Microsoft.VirtualManager.UI.Dialogs.resources.dll |
986920 |
3.1.6027.0 |
1046 |
Microsoft.VirtualManager.UI.Dialogs.resources.dll |
1053480 |
3.1.6027.0 |
1049 |
Microsoft.VirtualManager.UI.Dialogs.resources.dll |
989992 |
3.1.6027.0 |
3082 |
Microsoft.VirtualManager.UI.Dialogs.resources.dll |
965416 |
3.1.6027.0 |
1028 |
Microsoft.VirtualManager.UI.Dialogs.resources.dll |
987432 |
3.1.6027.0 |
1042 |
Microsoft.VirtualManager.UI.Dialogs.resources.dll |
965416 |
3.1.6027.0 |
3076 |
Microsoft.VirtualManager.UI.Dialogs.resources.dll |
988456 |
3.1.6027.0 |
1029 |
Microsoft.VirtualManager.UI.Dialogs.resources.dll |
983336 |
3.1.6027.0 |
1043 |
Microsoft.VirtualManager.UI.Dialogs.resources.dll |
995112 |
3.1.6027.0 |
1038 |
Microsoft.VirtualManager.UI.Dialogs.resources.dll |
986920 |
3.1.6027.0 |
1045 |
Microsoft.VirtualManager.UI.Dialogs.resources.dll |
988456 |
3.1.6027.0 |
2070 |
Microsoft.VirtualManager.UI.Dialogs.resources.dll |
979240 |
3.1.6027.0 |
1053 |
Microsoft.VirtualManager.UI.Dialogs.resources.dll |
982312 |
3.1.6027.0 |
1055 |
Microsoft.VirtualManager.UI.HardwareProperties.dll |
707368 |
3.1.6027.0 |
|
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll |
452904 |
3.1.6027.0 |
2052 |
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll |
456488 |
3.1.6027.0 |
1036 |
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll |
459560 |
3.1.6027.0 |
1031 |
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll |
457000 |
3.1.6027.0 |
1040 |
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll |
457000 |
3.1.6027.0 |
1041 |
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll |
460584 |
3.1.6027.0 |
1046 |
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll |
467752 |
3.1.6027.0 |
1049 |
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll |
457000 |
3.1.6027.0 |
3082 |
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll |
453416 |
3.1.6027.0 |
1028 |
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll |
454952 |
3.1.6027.0 |
1042 |
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll |
453416 |
3.1.6027.0 |
3076 |
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll |
455464 |
3.1.6027.0 |
1029 |
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll |
459560 |
3.1.6027.0 |
1043 |
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll |
455976 |
3.1.6027.0 |
1038 |
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll |
454952 |
3.1.6027.0 |
1045 |
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll |
455464 |
3.1.6027.0 |
2070 |
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll |
459048 |
3.1.6027.0 |
1053 |
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll |
459560 |
3.1.6027.0 |
1055 |
Microsoft.VirtualManager.UI.NewVmWizard.dll |
817960 |
3.1.6027.0 |
|
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll |
551208 |
3.1.6027.0 |
2052 |
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll |
559912 |
3.1.6027.0 |
1036 |
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll |
561456 |
3.1.6027.0 |
1031 |
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll |
559400 |
3.1.6027.0 |
1040 |
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll |
559912 |
3.1.6027.0 |
1041 |
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll |
562984 |
3.1.6027.0 |
1046 |
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll |
573224 |
3.1.6027.0 |
1049 |
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll |
559400 |
3.1.6027.0 |
3082 |
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll |
552744 |
3.1.6027.0 |
1028 |
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll |
555304 |
3.1.6027.0 |
1042 |
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll |
552744 |
3.1.6027.0 |
3076 |
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll |
555816 |
3.1.6027.0 |
1029 |
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll |
562984 |
3.1.6027.0 |
1043 |
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll |
556328 |
3.1.6027.0 |
1038 |
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll |
555304 |
3.1.6027.0 |
1045 |
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll |
555312 |
3.1.6027.0 |
2070 |
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll |
561960 |
3.1.6027.0 |
1053 |
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll |
561960 |
3.1.6027.0 |
1055 |
Microsoft.VirtualManager.UI.Pages.Datacenter.dll |
2929960 |
3.1.6027.0 |
|
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll |
1076008 |
3.1.6027.0 |
2052 |
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll |
1104680 |
3.1.6027.0 |
1036 |
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll |
1098032 |
3.1.6027.0 |
1031 |
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll |
1094952 |
3.1.6027.0 |
1040 |
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll |
1112872 |
3.1.6027.0 |
1041 |
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll |
1095464 |
3.1.6027.0 |
1046 |
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll |
1154856 |
3.1.6027.0 |
1049 |
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll |
1098536 |
3.1.6027.0 |
3082 |
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll |
1078568 |
3.1.6027.0 |
1028 |
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll |
1095464 |
3.1.6027.0 |
1042 |
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll |
1078568 |
3.1.6027.0 |
3076 |
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll |
1098024 |
3.1.6027.0 |
1029 |
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll |
1092392 |
3.1.6027.0 |
1043 |
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll |
1102120 |
3.1.6027.0 |
1038 |
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll |
1095976 |
3.1.6027.0 |
1045 |
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll |
1098024 |
3.1.6027.0 |
2070 |
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll |
1090344 |
3.1.6027.0 |
1053 |
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll |
1093416 |
3.1.6027.0 |
1055 |
Microsoft.VirtualManager.UI.Pages.Settings.dll |
168232 |
3.1.6027.0 |
|
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll |
84776 |
3.1.6027.0 |
2052 |
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll |
86824 |
3.1.6027.0 |
1036 |
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll |
86312 |
3.1.6027.0 |
1031 |
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll |
86312 |
3.1.6027.0 |
1040 |
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll |
86824 |
3.1.6027.0 |
1041 |
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll |
86312 |
3.1.6027.0 |
1046 |
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll |
88872 |
3.1.6027.0 |
1049 |
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll |
86312 |
3.1.6027.0 |
3082 |
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll |
84776 |
3.1.6027.0 |
1028 |
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll |
85800 |
3.1.6027.0 |
1042 |
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll |
84776 |
3.1.6027.0 |
3076 |
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll |
86312 |
3.1.6027.0 |
1029 |
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll |
86312 |
3.1.6027.0 |
1043 |
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll |
86312 |
3.1.6027.0 |
1038 |
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll |
85800 |
3.1.6027.0 |
1045 |
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll |
85800 |
3.1.6027.0 |
2070 |
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll |
85800 |
3.1.6027.0 |
1053 |
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll |
85800 |
3.1.6027.0 |
1055 |
Microsoft.VirtualManager.UI.VMWizards.dll |
213160 |
3.1.6018.0 |
|
Microsoft.VirtualManager.UI.VMWizards.resources.dll |
65720 |
3.1.6018.0 |
2052 |
Microsoft.VirtualManager.UI.VMWizards.resources.dll |
67776 |
3.1.6018.0 |
1036 |
Microsoft.VirtualManager.UI.VMWizards.resources.dll |
67264 |
3.1.6018.0 |
1031 |
Microsoft.VirtualManager.UI.VMWizards.resources.dll |
67776 |
3.1.6018.0 |
1040 |
Microsoft.VirtualManager.UI.VMWizards.resources.dll |
68264 |
3.1.6018.0 |
1041 |
Microsoft.VirtualManager.UI.VMWizards.resources.dll |
67264 |
3.1.6018.0 |
1046 |
Microsoft.VirtualManager.UI.VMWizards.resources.dll |
71336 |
3.1.6018.0 |
1049 |
Microsoft.VirtualManager.UI.VMWizards.resources.dll |
67240 |
3.1.6018.0 |
3082 |
Microsoft.VirtualManager.UI.VMWizards.resources.dll |
65704 |
3.1.6018.0 |
1028 |
Microsoft.VirtualManager.UI.VMWizards.resources.dll |
67240 |
3.1.6018.0 |
1042 |
Microsoft.VirtualManager.UI.VMWizards.resources.dll |
65704 |
3.1.6018.0 |
3076 |
Microsoft.VirtualManager.UI.VMWizards.resources.dll |
67752 |
3.1.6018.0 |
1029 |
Microsoft.VirtualManager.UI.VMWizards.resources.dll |
67240 |
3.1.6018.0 |
1043 |
Microsoft.VirtualManager.UI.VMWizards.resources.dll |
67752 |
3.1.6018.0 |
1038 |
Microsoft.VirtualManager.UI.VMWizards.resources.dll |
67264 |
3.1.6018.0 |
1045 |
Microsoft.VirtualManager.UI.VMWizards.resources.dll |
67240 |
3.1.6018.0 |
2070 |
Microsoft.VirtualManager.UI.VMWizards.resources.dll |
66728 |
3.1.6018.0 |
1053 |
Microsoft.VirtualManager.UI.VMWizards.resources.dll |
66728 |
3.1.6018.0 |
1055 |
Remoting.dll |
832296 |
3.1.6027.0 |
|
Pemberitahuan tambahan untuk SC 2012 SP1 - manajer Mesin Virtual Update Rollup 3 docx |
26067 |
||
TraceWrapper.dll |
67880 |
3.1.6027.0 |
|
Utils.dll |
751912 |
3.1.6027.0 |
|
Utils.resources.dll |
88360 |
3.1.6027.0 |
2052 |
Utils.resources.dll |
91432 |
3.1.6027.0 |
1036 |
Utils.resources.dll |
90928 |
3.1.6027.0 |
1031 |
Utils.resources.dll |
91944 |
3.1.6027.0 |
1040 |
Utils.resources.dll |
95536 |
3.1.6027.0 |
1041 |
Utils.resources.dll |
92456 |
3.1.6027.0 |
1046 |
Utils.resources.dll |
106800 |
3.1.6027.0 |
1049 |
Utils.resources.dll |
92968 |
3.1.6027.0 |
3082 |
Utils.resources.dll |
88360 |
3.1.6027.0 |
1028 |
Utils.resources.dll |
91440 |
3.1.6027.0 |
1042 |
Utils.resources.dll |
88368 |
3.1.6027.0 |
3076 |
Utils.resources.dll |
92968 |
3.1.6027.0 |
1029 |
Utils.resources.dll |
90408 |
3.1.6027.0 |
1043 |
Utils.resources.dll |
92456 |
3.1.6027.0 |
1038 |
Utils.resources.dll |
92464 |
3.1.6027.0 |
1045 |
Utils.resources.dll |
92456 |
3.1.6027.0 |
2070 |
Utils.resources.dll |
89904 |
3.1.6027.0 |
1053 |
Utils.resources.dll |
91432 |
3.1.6027.0 |
1055 |
VirtualizationInterfaces.dll |
86696 |
3.1.6018.0 |
|
VMConsoleLib.dll |
58640 |
3.1.6020.0 |
|
VMWareImplementation.dll |
2052400 |
3.1.6027.0 |
|
VMwareRemoteConsoleTypeLib.dll |
48896 |
5.1.0.0 |
|
VMwareViewer.exe |
26880 |
3.1.6020.0 |
|
VSImplementation.dll |
99520 |
3.1.6018.0 |
|
WSManAutomation.dll |
35112 |
3.1.6027.0 |
|
WsManWrappers.dll |
3209000 |
3.1.6027.0 |
Server manajer mesin virtual (KB2858510)
Berkas yang diubah |
Ukuran file |
Versi |
ID bahasa |
Engine.Adhc.Operations.dll |
1065768 |
3.1.6027.0 |
|
Engine.BitBos.dll |
235816 |
3.1.6027.0 |
|
Engine.Common.dll |
204072 |
3.1.6027.0 |
|
Engine.Deployment.dll |
548648 |
3.1.6027.0 |
|
Engine.IndigoAccessLayer.dll |
383760 |
3.1.6020.0 |
|
Engine.Placement.dll |
260904 |
3.1.6027.0 |
|
Engine.Placement.ResourceModel.dll |
307496 |
3.1.6027.0 |
|
Engine.VmOperations.dll |
1135400 |
3.1.6027.0 |
|
Errors.dll |
3849000 |
3.1.6027.0 |
|
Errors.resources.dll |
1327400 |
3.1.6027.0 |
2052 |
Errors.resources.dll |
1646888 |
3.1.6027.0 |
1036 |
Errors.resources.dll |
1674536 |
3.1.6027.0 |
1031 |
Errors.resources.dll |
1554216 |
3.1.6027.0 |
1040 |
Errors.resources.dll |
1841448 |
3.1.6027.0 |
1041 |
Errors.resources.dll |
1561384 |
3.1.6027.0 |
1046 |
Errors.resources.dll |
2202408 |
3.1.6027.0 |
1049 |
Errors.resources.dll |
1603368 |
3.1.6027.0 |
3082 |
Errors.resources.dll |
1345832 |
3.1.6027.0 |
1028 |
Errors.resources.dll |
1634600 |
3.1.6027.0 |
1042 |
Errors.resources.dll |
1345832 |
3.1.6027.0 |
3076 |
Errors.resources.dll |
1556264 |
3.1.6027.0 |
1029 |
Errors.resources.dll |
1526568 |
3.1.6027.0 |
1043 |
Errors.resources.dll |
1685800 |
3.1.6027.0 |
1038 |
Errors.resources.dll |
1610536 |
3.1.6027.0 |
1045 |
Errors.resources.dll |
1578792 |
3.1.6027.0 |
2070 |
Errors.resources.dll |
1494312 |
3.1.6027.0 |
1053 |
Errors.resources.dll |
1513256 |
3.1.6027.0 |
1055 |
GoalState.dll |
58664 |
3.1.6027.0 |
|
ImgLibEngine.dll |
3146024 |
3.1.6027.0 |
|
msiInstaller.dat |
12 |
||
msiInstaller.exe |
275112 |
3.1.6011.0 |
|
msiInstaller.exe |
327856 |
3.1.6011.0 |
|
Remoting.dll |
832296 |
3.1.6027.0 |
|
Pemberitahuan tambahan untuk SC 2012 SP1 - manajer Mesin Virtual Update Rollup 3 docx |
26067 |
||
TraceWrapper.dll |
67880 |
3.1.6027.0 |
|
Utils.dll |
751912 |
3.1.6027.0 |
|
Utils.resources.dll |
88360 |
3.1.6027.0 |
2052 |
Utils.resources.dll |
91432 |
3.1.6027.0 |
1036 |
Utils.resources.dll |
90920 |
3.1.6027.0 |
1031 |
Utils.resources.dll |
91944 |
3.1.6027.0 |
1040 |
Utils.resources.dll |
95528 |
3.1.6027.0 |
1041 |
Utils.resources.dll |
92456 |
3.1.6027.0 |
1046 |
Utils.resources.dll |
106792 |
3.1.6027.0 |
1049 |
Utils.resources.dll |
92968 |
3.1.6027.0 |
3082 |
Utils.resources.dll |
88360 |
3.1.6027.0 |
1028 |
Utils.resources.dll |
91432 |
3.1.6027.0 |
1042 |
Utils.resources.dll |
88360 |
3.1.6027.0 |
3076 |
Utils.resources.dll |
92968 |
3.1.6027.0 |
1029 |
Utils.resources.dll |
90408 |
3.1.6027.0 |
1043 |
Utils.resources.dll |
92456 |
3.1.6027.0 |
1038 |
Utils.resources.dll |
92456 |
3.1.6027.0 |
1045 |
Utils.resources.dll |
92456 |
3.1.6027.0 |
2070 |
Utils.resources.dll |
89896 |
3.1.6027.0 |
1053 |
Utils.resources.dll |
91432 |
3.1.6027.0 |
1055 |
ViridianImplementation.dll |
218920 |
3.1.6027.0 |
|
ViridianImplementationV2.dll |
360232 |
3.1.6027.0 |
|
VirtualizationInterfaces.dll |
86696 |
3.1.6018.0 |
|
VMGuestAgent.iso |
126812160 |
||
vmmAgent.exe |
6113064 |
3.1.6027.0 |
|
vmmAgent.msi |
6983680 |
||
vmmAgent.msi |
7950336 |
||
vmmGuestAgent.msi |
2674688 |
||
vmmGuestAgent.msi |
2760704 |
||
vmmservice.exe |
46376 |
3.1.6027.0 |
|
VMWareImplementation.dll |
2052392 |
3.1.6027.0 |
|
VSImplementation.dll |
99520 |
3.1.6018.0 |
|
WSManAutomation.dll |
35112 |
3.1.6027.0 |
|
WsManMIWrappers.dll |
133824 |
3.1.6018.0 |
|
WsManWrappers.dll |
3209000 |
3.1.6027.0 |
|
XenImplementation.dll |
173248 |
3.1.6018.0 |
Manajer mesin virtual tamu agen (KB2858511)
versi 32-bit
Berkas yang diubah |
Ukuran file |
Versi |
Errors.dll |
3849000 |
3.1.6027.0 |
gceManagement.dll |
171816 |
3.1.6027.0 |
GoalState.dll |
58664 |
3.1.6027.0 |
GuestAgent.AIFactory.dll |
31528 |
3.1.6027.0 |
GuestAgent.AppDownloader.dll |
44328 |
3.1.6027.0 |
GuestAgent.Common.dll |
64296 |
3.1.6027.0 |
GuestAgent.Fetcher.dll |
41256 |
3.1.6027.0 |
GuestAgent.GCEProcessor.dll |
31528 |
3.1.6027.0 |
GuestAgent.GSC.dll |
74024 |
3.1.6027.0 |
GuestAgent.GSM.dll |
34600 |
3.1.6027.0 |
GuestAgent.QueueManager.dll |
39208 |
3.1.6027.0 |
GuestAgent.SqlProfileProcessor.dll |
31528 |
3.1.6027.0 |
GuestAgent.StateManager.dll |
23336 |
3.1.6027.0 |
GuestAgent.Upgrade.dll |
44840 |
3.1.6027.0 |
ScvmmGuestService.exe |
26408 |
3.1.6027.0 |
Pemberitahuan tambahan untuk SC 2012 SP1 - manajer Mesin Virtual Update Rollup 3 docx |
26067 |
|
TraceWrapper.dll |
67880 |
3.1.6027.0 |
vmmApplicationManager.Common.dll |
31016 |
3.1.6027.0 |
vmmApplicationManager.dll |
59176 |
3.1.6027.0 |
WebDeployV2.dll |
29992 |
3.1.6027.0 |
WebDeployV3.dll |
29992 |
3.1.6027.0 |
versi 64-bit
Berkas yang diubah |
Ukuran file |
Versi |
Errors.dll |
3849000 |
3.1.6027.0 |
gceManagement.dll |
214824 |
3.1.6027.0 |
GoalState.dll |
58664 |
3.1.6027.0 |
GuestAgent.AIFactory.dll |
48424 |
3.1.6027.0 |
GuestAgent.AppDownloader.dll |
44336 |
3.1.6027.0 |
GuestAgent.Common.dll |
64304 |
3.1.6027.0 |
GuestAgent.Fetcher.dll |
41256 |
3.1.6027.0 |
GuestAgent.GCEProcessor.dll |
31528 |
3.1.6027.0 |
GuestAgent.GSC.dll |
74024 |
3.1.6027.0 |
GuestAgent.GSM.dll |
34600 |
3.1.6027.0 |
GuestAgent.QueueManager.dll |
39216 |
3.1.6027.0 |
GuestAgent.SqlProfileProcessor.dll |
31528 |
3.1.6027.0 |
GuestAgent.StateManager.dll |
23344 |
3.1.6027.0 |
GuestAgent.Upgrade.dll |
44840 |
3.1.6027.0 |
ScvmmGuestService.exe |
26408 |
3.1.6027.0 |
Pemberitahuan tambahan untuk SC 2012 SP1 - manajer Mesin Virtual Update Rollup 3 docx |
26067 |
|
TraceWrapper.dll |
67880 |
3.1.6027.0 |
vmmApplicationManager.Common.dll |
31016 |
3.1.6027.0 |
vmmApplicationManager.dll |
59176 |
3.1.6027.0 |
WebDeployV2.dll |
29992 |
3.1.6027.0 |
WebDeployV3.dll |
30000 |
3.1.6027.0 |