且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何使用mvc 3反编译chm文件

更新时间:2023-01-02 12:05:35

你见过这个:反编译帮助文件 [ ^ ]?



Have you seen this: Decompiling a Help File[^]?

引用:

反编译命令是HTML帮助可执行程序的一部分( Hh.exe)

The decompile command is part of the HTML Help executable program (Hh.exe)





在这里你可以找到说明:在C#中打开CHM(帮助文件) [ ^ ]





Here you'll find instructions: Open CHM (help file) in C#[^]

Quote:

反编译CHM文件



一样容易在命令提示符下执行以下命令。



Decompiling a CHM file

Is as easy as executing below command in the command prompt.

hh.exe -decompile <target-folder-for-decompiled-content> <source-chm-file></source-chm-file></target-folder-for-decompiled-content>





例如:





For Example:

hh.exe -decomplie C:\foo\helpchmextracted help.chm





执行上述命令后,您应该在 C:\ foo \helpchmextracted 文件夹中找到反编译内容。



After executing the above command you should find the decompiled content in the C:\foo\helpchmextracted folder.