今日书签 :: 11 15, 2007

[指南手册] :: 转换.HXS为.CHM

 转换HXS为CHM
 farhtml+VSHIK
 http://www.helpware.net/FAR/
 http://msdn.microsoft.com/library/default.asp?url=/library/en-us/htmlhelp/html/hwmscExtendingNETHelp.asp

 1. Using Explorer right+click each HxS help file and
 select "Decompile with FAR".
 (Decompile each HxS into separate folder side by side).
 2. Open each HxT (TOC) and HxK (Index) in FAR (Again using Explorer)
 and use "File > Save As" to save to equivalent HHC and HHK files.
 3. Now you just need to create a HHP Project in each of these
 folders and compile to .CHM - I would try using the
 the FAR Help Wizard for this.
 4. So now you have a bunch of CHMs.
 Do you want to try and merge them all into one Help file?
 If so make all CHMs compile to "..\something.chm" so you
 get all the CHMs compiled to the one folder.
 In this folder (above all these projects) create
 a Master project -- the TOC must have include statements
 to pull in all the other TOCs.
 And you must add all CHMs (Merged Files Page of advanced Proj
 editor). Compile. When you view your master you should see the
 lot and be able to search the lot.

 Not sure what the end result will be. You may need to
 tweak it for weeks to fix all the broken links etc.

[From]http://www.tianyablog.com/blogger/post_show.asp?BlogID=151006&PostID=3315681

Posted by sure at 9:56 AM | Comments (0) | TrackBack (0)

今日书签 :: 11 1, 2007

[软件] :: 时间提醒助手算法

本机机器码:-1343620097
1、将机器码转为16进制字符串 记为 M1
-1343620097=>(FFFFFFFF舍)AFE9FBFF

2、在M1前加'aB',后加'Cd' 即 'aB'+M1+'Cd' 记为M2
aBAFE9FBFFCd
3、循环 从M2后面开始取字符 Char
9FBFFCd
4、常数 $587C5F33 / Char 的 ASCII值 取余数,余数转化为10进制字符串
d C F F B F 9
43435353555352
5、循环取字符到 length(M2)-6 结束
6、将余数10进制字符串转换为16进制字符串即为注册码。
43435353555352=>278114D1C198

[参考]http://www.pediy.com/bbshtml/bbs7/pediy7-121.htm
[摘录]
--------------------------------------
【Crack总结】:

作者的算法很简单,我不知到里面的浮点运算是干什么用的。

1、将机器码转为16进制字符串 记为 M1
2、在M1前加'aB',后加'Cd' 即 'aB'+M1+'Cd' 记为M2
3、循环 从M2后面开始取字符 Char
4、常数 $587C5F33 / Char 的 ASCII值 取余数,余数转化为10进制字符串
5、循环取字符到 length(M2)-6 结束
6、将余数10进制字符串转换为16进制字符串即为注册码。


贴出注册机delphi源码:
Procedure TForm1.btn1Click(Sender: TObject);
Const
Num: Integer = $587C5F33;
Var
MnoStr, SerailNo: String;
i: Integer;
Begin
MnoStr := 'aB' + IntToHex(StrToInt64(edt1.Text), 1) + 'Cd';

For i := 0 To Length(MnoStr) - 6 Do
SerailNo := SerailNo + FormatFloat('0', Num Mod Ord(MnoStr[Length(MnoStr) - i]));

edt2.Text := IntToHex(StrToInt64(SerailNo), 1);
End;

内存注册机:
中断地址:004949F1
中断次数:1
第一字节:8B
指令长度:3
注册码: 内存方式 寄存器 EAX


大家可以验证一下:
机器码:1072429567
注册码:278114D14C6B
------------------------------------------------------

Posted by sure at 7:12 AM | Comments (0) | TrackBack (0)

今日书签 :: 07 4, 2007

[网络常识] :: Maxthon清除表单功能

在Maxthon 的“清除历史”中的 "清除自动填表记录" 功能,针对的是 maxthon 自己的自动表单功能(菜单栏 --> 工具 -->自动填表)。而如果想要去掉在新浪、网页等登陆邮箱或者在百度、GOOGLE搜索,那些用户名和搜索的关键词,唯一的解决办法只有从Maxthon的菜单栏 --> 选项 --> Internet 选项-->内容-->自动完成--> 点 "清除表单" 按钮才能清除。
TIP: 如果想单一清除某一关键词,只需在选中的条目按DEL就行了。

[From]http://zizone.bokee.com/viewdiary.12221444.html

Posted by sure at 7:15 AM | Comments (0) | TrackBack (0)

今日书签 :: 04 6, 2007

[系统] :: 无法访问http://samba.intra.sina.com.cn的解决方法

右键点击我的电脑->管理->计算机管理程序被打开->服务和应用程序->服务->右键点击DHCP Client->停止然后再启动

Posted by sure at 6:48 AM | Comments (0) | TrackBack (0)

今日书签 :: 10 12, 2006

[系统] :: 使远程登录窗口不再自动关闭

远程登录到其它服务器时,经常在不动这个窗口的情况下空闲一段时间后它自己就自动断开连接,远程登录窗口自动关闭,很多正在运行的程序也就因此而结束。
其实只要在登录的服务器上设置一下会话连接就可以了,具体操作如下:
开始菜单->设置->控制面板->管理工具->终端服务配置,弹出“终端服务配置”窗口,展开“连接”夹,从右侧双击打开连接,从弹出的属性面板点击“会话”页,修改替代用户设置,不选中复选框表示无限制;或者从下拉菜单里选项希望限制的时长。注意:下次生效,已经在连接上活动的用户会话没有改变。

Posted by sure at 1:18 AM | Comments (0) | TrackBack (0)