秋忆博客
若是有缘,时间空间都不是距离,若是无缘,终日相聚也无法会意,凡事不必太在意,更不需去强求。
上一页 1 2 3 4 5 6 ··· 13 下一页
摘要: #include #include #include #include #include #include #define GPT_HEADER_SIGNATURE 0x5452415020494645LLtypedef char *PSTR;typedef const char *PCSTR;typedef struct { uint64_t signature; int revision; int header_size; uint32_t crc_header; int reserved; uint64_t lba_current; uint64... 阅读全文
posted @ 2014-02-26 14:12 秋忆 阅读(3398) 评论(0) 推荐(0) 编辑
摘要: #include <string.h>#include <openssl/pem.h>size_t bc_base64_encode(const void *data, int data_len, char *buffer){ BIO *b64 = BIO_new(BIO_f_base64()); BIO *bio = BIO_new(BIO_s_mem()); bio = BIO_push(b64, bio); BIO_set_flags(bio, BIO_FLAGS_BASE64_NO_NL); BIO_write(bio, data, data_len); BIO 阅读全文
posted @ 2013-01-10 14:32 秋忆 阅读(6204) 评论(0) 推荐(0) 编辑
摘要: 在Ubuntu下,执行如下命令把.cer转换为.pem: openssl x509 -in 1.cer -inform DER -out 2.pem -outform PEM把.pem放到IIS网站下, IIS添加Mime Type,.pem->application/x-pem-file,在iPhone上用Safari打开.pem的URL即可安装。 阅读全文
posted @ 2012-02-12 15:01 秋忆 阅读(5730) 评论(0) 推荐(0) 编辑
摘要: 程序以字节流打开文件:%SystemRoot%\bootstat.dat。 第8个字节的值为00或01,表示是否启用“在需要时显示恢复选项的时间”。 第9个字节的值为00至C8,转换为十进制则是0至200,表示“在需要时显示恢复选项的时间”的时间,单位为秒。 如下图所示: 阅读全文
posted @ 2011-11-03 19:55 秋忆 阅读(2426) 评论(0) 推荐(0) 编辑
摘要: 用途 目前许多笔记本电脑的键盘越来越省工,不但数字键盘锁灯去除了,连大小写状态灯也去掉了。对于平时的使用造成非常的不便。KeyboardState小工具就是为了解决此问题而诞生的。 当键盘处于平常状态(小写、数字键盘关)时,显示小写a: 当键盘处于大写、数字键盘关时,显示大写A: 当键盘处于大写、数字键盘开时,显示大写A和数字1: 简单直观。 安装 无需安装,绿色环保!直接运行KeyboardState.exe即可使用。如果安全软件提示拦截,请允许执行。 建议加入每次开机启动,以管理员身份运行“KeyboardState.exe --instal... 阅读全文
posted @ 2011-10-09 10:50 秋忆 阅读(551) 评论(0) 推荐(0) 编辑
摘要: 微软说这个错误事件不碍事,微软的解决办法就是把ID为10的事件禁用http://support.microsoft.com/default.aspx?scid=kb;en-US;2545227 阅读全文
posted @ 2011-08-22 10:11 秋忆 阅读(5592) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2011-05-11 18:51 秋忆 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 文件系统转向:Wow64DisableWow64FsRedirectionWow64RevertWow64FsRedirectionWow64EnableWow64FsRedirection注册表转向:RegDisableReflectionKeyRegEnableReflectionKey 阅读全文
posted @ 2011-01-28 22:14 秋忆 阅读(680) 评论(0) 推荐(0) 编辑
摘要: AnyCPU-----------------------------Version : v2.0.50727CLR Header: 2.5PE : PE32CorFlags : 1ILONLY : 132BIT : 0Signed : 0x86-----------------------------Version : v2.0.50727CLR Header: 2.5PE : PE32CorFlags : 3ILONLY : 132BIT : 1Signed : 0x64----------------------------Version : v2.0.50727CLR Header: 阅读全文
posted @ 2011-01-28 22:06 秋忆 阅读(902) 评论(0) 推荐(0) 编辑
摘要: 开启方法是修改%SystemRoot%\System32\termsrv.dll文件。参考:http://www.winmatrix.com/forums/index.php?//topic/22479-enable-concurrent-sessions-in-windows-7-x86x64/如果想直接使用补丁修改,请到这里:http://deepxw.blogspot.com/2009/04... 阅读全文
posted @ 2010-09-14 23:14 秋忆 阅读(6447) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 13 下一页