Workaround to Run eMule in Windows Vista Solusi untuk Jalankan eMule pada Windows Vista

eMule is a popular peer-to-peer (p2p) file sharing application in Windows platform for eDonkey and Kad networks. eMule adalah populer peer-to-peer (P2P) file sharing aplikasi pada Windows platform untuk jaringan eDonkey dan Kad. Due to tighten security and permission control in Windows Vista, coupled with new virtualization system, although eMule can install properly in Vista, eMule users may run into some problems such as unable to find finished downloaded incoming files, low ID, slow download speed, no minimize to tray button, downloads stuck incomplete at 99% and the famous “EventID 4226: TCP/IP has reached the security limit imposed on the number of concurrent TCP connect attempts” in Event Viewer error. Karena untuk memperketat keamanan dan pengendalian izin pada Windows Vista, ditambah dengan sistem virtualisasi baru, meskipun eMule dapat memasang dengan baik di Vista, eMule pengguna dapat menjalankan ke dalam beberapa masalah seperti tidak dapat menemukan yang masuk selesai download file, ID rendah, kecepatan download yang lambat, tidak meminimalkan ke tombol nampan, download terjebak tidak lengkap pada 99% dan yang terkenal "EventID 4.226: TCP / IP telah mencapai batas keamanan yang dikenakan pada jumlah konkuren koneksi TCP upaya" di Event Viewer kesalahan. Here's a few tricks to avoid all these problems. Berikut adalah beberapa trik untuk menghindari semua masalah ini.

Update: Update: eMule 0.48a eMule 0.48a has fixed some of these problems. tetap memiliki beberapa masalah ini.

  1. Download latest version of Download versi terbaru eMule eMule (currently at v0.47c or later). (saat ini di v0.47c atau lambat). All future version of eMule later than version 0.47c will automatically support Windows Vista with full compatibility. Semua versi masa depan dari versi eMule 0.47c kemudian secara otomatis akan mendukung Windows Vista dengan kompatibilitas penuh.
  2. Install eMule out of the protected “Program Files” directory. Install eMule keluar dari dilindungi "Program Files" directory. By default, “Program Files” directory where all the programs normally are stored is protected against unauthorized write access, and Vista will redirect any write access to a virtual directory. Secara default, "Program Files" direktori di mana semua program biasanya disimpan dilindungi terhadap akses tulis tidak sah, dan Vista akan mengarahkan setiap akses tulis ke direktori virtual. This mechanism will affect eMule as its configuration files as well as downloads are stored there. Mekanisme ini akan mempengaruhi eMule sebagai file konfigurasi serta download yang tersimpan di sana. The easy way out is by installing eMule in another folder outside to “Program Files”, such as “C:\eMule”. Jalan keluar yang mudah adalah dengan menginstal eMule di folder lain di luar untuk "Program Files", seperti "C: \ eMule". To do this, change the path installer suggest. Untuk melakukan hal ini, mengubah jalan installer menyarankan.
  3. If you don't want to install eMule in different location, the alternative is to change the folders storing incoming files and temporary files to an unprotected location. Jika Anda tidak ingin menginstal eMule di lokasi yang berbeda, alternatif adalah mengubah folder masuk file dan menyimpan file-file sementara untuk sebuah lokasi yang tidak dilindungi. Vista has a default Downloads folder which is suitable to be assigned to eMule. Vista memiliki Downloads default folder yang sesuai untuk ditugaskan untuk eMule. To do so, open the Options page in eMule, select “Directories”, and then change “Incoming files” (or browse to the location or any place you like) to C:\Users\User Name\Downloads\ and “Temporary files” to C:\Users\User Name\Downloads\Temp. Untuk melakukannya, buka halaman Pilihan di eMule, pilih "Direktori", dan kemudian mengubah "Incoming file" (atau browse ke lokasi atau tempat yang Anda sukai) ke C: \ Users \ User Name \ Downloads \ dan "Temporary file "ke C: \ Users \ User Name \ Downloads \ Temp. Replace User Name with the user ID used to log on to Vista. Ganti User Name dengan user ID yang digunakan untuk log on ke Vista.
  4. To solve the issue eMule hitting the maximum half open concurrent connection limit in Vista, open the Options page in eMule, select “Extended” and then change “Max. Untuk mengatasi masalah memukul eMule setengah terbuka maksimum batas koneksi concurrent di Vista, buka halaman Pilihan di eMule, pilih "Extended" dan kemudian mengubah "Max. half open connections” from 50 to any value between 1 to 9. koneksi setengah terbuka "dari 50 ke nilai apapun antara 1 sampai 9. Alternatively, download the Atau, download tcpip.sys patch tcpip.sys patch for Vista to unlock the limit. untuk Vista untuk membuka batas.
  5. If you can't see the minimize to tray button on some themes, it's still possible to minimize eMule window to tray by clicking on system menu (the eMule icon on the top left corner of program window), and then select “Minimize to system tray”. Jika Anda tidak dapat melihat nampan meminimalkan untuk tombol di beberapa tema, masih mungkin untuk meminimalkan jendela eMule untuk nampan dengan mengklik pada menu sistem (yang eMule ikon pada sudut kiri atas jendela program), dan kemudian pilih "Minimize sistem nampan ".

    EMule untuk meminimalkan system tray di Vista

    Alternatively, open Options page, select Display, and then enable (tick) the “Minimize to tray” setting to make all minimize action on standard button automatically minimize eMule to system tray. Atau, buka halaman Pilihan, pilih Tampilan, dan kemudian mengaktifkan (centang) pada "Minimalkan untuk nampan" pengaturan untuk membuat semua tindakan meminimalkan tombol standar secara otomatis eMule untuk meminimalkan system tray.

  6. It's also possible to force eMule to run with highest execution level with full administrator's rights so that eMule is allowed to write files to where it wants to without restriction. Ada juga kemungkinan untuk memaksa eMule untuk berjalan dengan tingkat eksekusi tertinggi dengan hak administrator penuh sehingga eMule diperbolehkan untuk menulis file ke mana ia ingin tanpa pembatasan. To do so, copy and paste the below code to a text editor (ie Notepad), and save the file as emule.exe.manifest inside the same directory with installed location of eMule.exe. Untuk melakukannya, copy dan paste kode di bawah ini ke editor teks (misalnya Notepad), dan menyimpan file sebagai emule.exe.manifest di dalam direktori yang sama dengan lokasi eMule.exe diinstal.

    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <!-- Copyright © 1981-2001 Microsoft Corporation -->
    <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
    <assemblyIdentity
    processorArchitecture="x86"
    version="5.1.0.0"
    name="eMule"
    type="win32"
    />
    <description>eMule</description>
    <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
    <security>
    <requestedPrivileges>
    <requestedExecutionLevel
    level="highestAvailable"
    uiAccess="false"
    />
    </requestedPrivileges>
    </security>
    </trustInfo>
    </assembly>

If you install eMule using default installation option, and now cannot find your downloaded files, check out Jika Anda menginstal eMule menggunakan pilihan instalasi default, dan sekarang tidak dapat menemukan file yang Anda download, check out solution here solusi di sini . .

IMPORTANT : The page is machine translated and provided "as is" without warranty. PENTING: Halaman ini adalah mesin diterjemahkan dan diberikan "sebagaimana adanya" tanpa jaminan. Machine translation may be difficult to understand. Terjemahan mesin mungkin sulit untuk mengerti. Please refer to Silakan merujuk ke original English article artikel asli bahasa Inggris whenever possible. bila memungkinkan.


12 Responses to “Workaround to Run eMule in Windows Vista” 12 Responses to "Workaround to Run eMule pada Windows Vista"

  1. Daniel Daniel
    November 9th, 2008 08:38 9 November 2008 08:38
    12 12

    A dica deu certo, agradeço pois já havia tentado várias outras dicas e nada. A dica deu certo, já agradeço POIs havia tentado várias Aplikasi e dicas nada. Obrigado. Obrigado.

  2. RockyFan RockyFan
    May 6th, 2008 14:47 6 Mei 2008 14:47
    11 11

    When trying to run Emule in Vista I get “Addresses.dat does not contain a valid…. Ketika mencoba untuk menjalankan Emule di Vista saya mendapatkan "Addresses.dat tidak berisi yang valid ....

  3. eMule 0.48a for Windows Vista Free Download » My Digital Life eMule 0.48a untuk Windows Vista Gratis Download »My Digital Life
    May 21st, 2007 16:19 21 Mei 2007 16:19
    10 10

    [...] various glitches and problems when run in Vista, which has new security protection, and requires various workarounds to solve the issues. [...] Berbagai gangguan dan masalah ketika berjalan di Vista, yang memiliki perlindungan keamanan baru, dan membutuhkan berbagai workarounds untuk memecahkan masalah. eMule 0.48a fixes some of these errors and improves support for Vista. eMule 0.48a perbaikan beberapa kesalahan ini dan meningkatkan dukungan untuk Vista. [...] [...]

  4. BlogGiando » Blog Archive » Soluzione per far girare eMule su Windows Vista BlogGiando »Blog Archive» jauh Soluzione per girare su eMule Windows Vista
    May 3rd, 2007 21:09 3 Mei 2007 21:09
    9 9

    [...] MyDigitalLife troverete una lista delle operazioni per utilizzare al meglio eMule anche sul nuovo sistema [...] [...] MyDigitalLife troverete una lista delle operazioni per utilizzare al Meglio eMule nuovo anche sul sistema [...]

  5. WinVista.it il Blog su Windows Vista » Blog Archive » Emule su Windows Vista WinVista.it il Blog su Windows Vista »Blog Archive» Emule su Windows Vista
    May 3rd, 2007 19:55 3 Mei 2007 19:55
    8 8

    [...] MyDigitalLife troverete una lista delle operazioni per utilizzare al meglio eMule su [...] [...] MyDigitalLife troverete una lista delle operazioni per utilizzare al Meglio eMule su [...]

  6. Windows Vista: eMule con Vista Vista Windows un Blog su Windows Vista Windows Vista: eMule con un Vista Windows Vista Blog su Windows Vista
    May 2nd, 2007 03:07 2 Mei 2007 03:07
    7 7

    [...] MyDigitalLife troverete una lista delle operazioni per utilizzare al meglio eMule anche su Windows Vista: le operazioni riguardano la posizione in cui [...] [...] MyDigitalLife troverete una lista delle operazioni per utilizzare al Meglio emule anche su Windows Vista: riguardano le operazioni di cui la posizione [...]

  7. Far decollare eMule su Vista « Re Riccardo Decollare Jauh eMule su Vista «Re Riccardo
    May 2nd, 2007 00:48 2 Mei 2007 00:48
    6 6

    [...] MyDigitalLife troverete una lista delle operazioni per utilizzare al meglio eMule anche sul nuovo sistema operativo di Microsoft: le operazioni [...] [...] MyDigitalLife troverete una lista delle operazioni per utilizzare al Meglio eMule nuovo anche sul sistema operativo di Microsoft: le operazioni [...]

  8. Installare Emule funzionante con Windows Vista come SO « La Tartaruga Tecnologica Funzionante Emule Installare con Windows Vista datang SO «La Tartaruga Tecnológica
    May 1st, 2007 20:27 1 Mei 2007 20:27
    5 5

    [...] trovato adesso un articolo su My digital life in cui si spiega(in inglese) come ottimizzare Emule per l'utilizzo con l'ultimo SO di [...] Adesso trovato un [...] Articolo su kehidupan digital saya di cui si spiega (in inglese) datang ottimizzare Emule per l'utilizzo con l'ultimo SO di [...]

  9. Easy Solution to Unable to Find Downloaded or Created Compatibility Files in Windows Vista » My Digital Life Solusi untuk Tidak mudah untuk Menemukan Downloaded atau Dibuat Kompatibilitas File pada Windows Vista »My Digital Life
    May 1st, 2007 01:45 1 Mei 2007 01:45
    4 4

    [...] FileseMuleTemp” folders. [...] FileseMuleTemp "folder. If you use eMule version 0.47c or earlier and doesn't follow these procedures, when downloading, eMule doesn't have permissions to write to these folders, the write will [...] Jika Anda menggunakan versi eMule 0.47c atau sebelumnya dan tidak mengikuti prosedur ini, saat men-download, eMule tidak memiliki izin untuk menulis ke folder tersebut, yang tulis akan [...]

  10. Come far funzionare eMule su Windows Vista « Il Blog di Andrea Guida Datang dari jauh funzionare emule su Windows Vista «Il Blog di Andrea Guida
    April 30th, 2007 21:09 30 April 2007 21:09
    3 3

    [...] MyDigitalLife troverete una lista delle operazioni per utilizzare al meglio eMule anche sul nuovo sistema operativo di Microsoft: le operazioni [...] [...] MyDigitalLife troverete una lista delle operazioni per utilizzare al Meglio eMule nuovo anche sul sistema operativo di Microsoft: le operazioni [...]

  11. Come far funzionare eMule correttamente su Vista Datang dari jauh funzionare su eMule correttamente Vista
    April 30th, 2007 17:24 30 April 2007 17:24
    2 2

    [...] MyDigitalLife troverete una lista delle operazioni per utilizzare al meglio eMule anche sul nuovo sistema operativo di Microsoft: le operazioni [...] [...] MyDigitalLife troverete una lista delle operazioni per utilizzare al Meglio eMule nuovo anche sul sistema operativo di Microsoft: le operazioni [...]

  12. kay kay
    April 30th, 2007 16:13 30 April 2007 16:13
    1 1

    thanks, started using limewire instead, thanks for this, will try yhis out! terima kasih, mulai menggunakan limewire sebaliknya, terima kasih untuk ini, akan mencoba yhis keluar!

Leave a Reply Leave a Reply

You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> Anda dapat menggunakan tag ini: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime = ""> <em> <i> <q cite=""> <strike> <strong>

Subscribe to comments feature has been disabled. Berlangganan ke fitur komentar telah dinonaktifkan. To receive notification of latest comments posted, subscribe to Untuk menerima pemberitahuan dari komentar terbaru diposting, untuk berlangganan My Digital Life Comments RSS feed My Digital Life Komentar RSS feed or atau register to receive mendaftar untuk menerima new comments in daily email digest. komentar baru di email digest harian.
Custom Search

New Articles Artikel Baru

Incoming Search Terms for the Article Cari Syarat masuk untuk Artikel

emule windows 7 emule windows 7 - -- emule vista emule vista - -- emule vista problem emule masalah vista - -- emule for vista emule untuk vista - -- My Digital Life My Digital Life - -- mydigitallife mydigitallife - -- emule low id vista id rendah vista emule - -- emule windows vista emule windows vista - -- emule vista 64 emule vista 64 - -- windows 7 emule windows 7 emule - -- install emule on vista instal emule on vista - -- emule for windows vista emule for windows vista - -- low id emule vista id rendah emule vista - -- emule on windows 7 emule on windows 7 - -- mydigitallife emule mydigitallife emule - -- emule for windows 7 emule untuk windows 7 - -- emule installation code crack crack emule kode instalasi - -- emule "windows 7" emule "windows 7" - -- emule for vista 64 emule untuk vista 64 - -- emule free download windows vista emule free download windows vista - -- emule vista problems masalah vista emule - -- emule vista low id emule vista id rendah - -- emule per vista emule per vista - -- emule emule - -- emule for vista download emule for vista download - -- emule addresses.dat emule addresses.dat - -- vista emule problem vista masalah emule - -- lowid emule vista emule lowid vista - -- Vista Emule low id Vista Emule id rendah - -- emule and windows 7 emule dan windows 7 - -- emule for win 7 emule untuk menang 7 - -- emule en windows vista en emule windows vista - -- EMULE + SLOW BROWSING VISTA EMule + SLOW BROWSING VISTA - -- emule per windows7 emule per windows7 - -- vista emule vista emule - -- windows vista emule windows vista emule - -- Jeyo Mobile Extender 2.5 crack Jeyo Mobile Extender 2,5 retak - -- emule vista download emule vista download - -- emule window vista emule window vista - -- emule win 7 emule menang 7 - -- vista compatibility+emule vista compatibility + emule - -- emule installation vista emule instalasi vista - -- how to install emule in vista cara menginstal emule di vista - -- emule for vista free emule for vista gratis - -- how to run emule on vista bagaimana menjalankan emule on vista - -- emule vista compatible emule vista kompatibel - -- installing emule on vista menginstal emule on vista - -- emule windows vista permissions emule windows vista perizinan - -- emule not working on vista emule tidak bekerja pada vista - -- installer emule windows vista emule windows vista installer - --