16 June 2013

Dekompilasi (decompile) file HTML Help (CHM)

Berbagi pengalaman sendiri saat mencoba melakukan dekompilasi file HTML Help (.chm) dengan menggunakan hh.exe yang memang sudah tersedia di windows. Berikut ini aturannya:

1. Jangan menggunakan full path:
Misal anda punya file HTML Help dengan nama Contoh.chm yang anda simpan di C:\Users\Documents, maka

ini tidak akan berhasil:

C:\hh.exe -decompile "C:\Users\Documents\ekstrak" "C:\Users\Documents\Contoh.chm"

yang benar adalah:
pindah dulu ke direktori Documents lalu

C:\Users\Documents\hh.exe -decompile ekstrak Contoh.chm

2. Jika nama file chm -nya mengandung white space misalnya: "contoh file Html help.chm", maka hilangkan dulu white spacenya dengan merubah nama file tersebut menjadi "contoh_file_html_help.chm" atau "ContohFileHtmlHelp.chm", baru lakukan dekompilasi.

 atau selengkapnya di command line interface:

C:\cd Users [enter]
C:\Users\cd Documents [enter]
C:\Users\Documents\ren "contoh file Html help.chm" "contoh_file_html_help.chm" [enter]

C:\Users\Documents\hh.exe -decompile ekstrak contoh_file_html_help.chm [enter]


hasil ekstrak bisa dilihat di direktori ekstrak di "C:\Users\Documents".


Atau yang lebih mudah dengan menggunakan program 7 zip yang bisa mengekstrak isi file chm ini :D