上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 42 下一页

2020年4月22日

Windows VHD Create, Attach, 获得Disk序号

摘要: // create_vhd.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <Windows.h> #include <Shlwapi.h> #include <in 阅读全文

posted @ 2020-04-22 10:51 liujx2019 阅读(712) 评论(0) 推荐(0) 编辑

2020年4月20日

Programmatically mount a Microsoft Virtual Hard Drive (VHD)

摘要: By Pixy https://stackoverflow.com/questions/24396644/programmatically-mount-a-microsoft-virtual-hard-drive-vhd This is an old question but it still ha 阅读全文

posted @ 2020-04-20 11:22 liujx2019 阅读(410) 评论(0) 推荐(0) 编辑

2020年4月17日

chcp437 转换英语,在西班牙语系统中无效

摘要: https://social.technet.microsoft.com/Forums/en-US/9c772011-5094-4df0-bf73-7140bf91673b/chcp-command-not-working-on-spanish-os 阅读全文

posted @ 2020-04-17 13:18 liujx2019 阅读(270) 评论(0) 推荐(0) 编辑

2020年4月16日

Windows 版本 Enterprise、Ultimate、Home、Professional

摘要: 关于Windows 的安装光盘版本很多种,很多人不知道选择哪些。 Ultimate 旗舰版,VISTA开始有了这个级别,是最全最高级的,一般程序开发的电脑,玩游戏的电脑,建议用它,不过对配置稍有一些要求 Enterprise 企业版,主要是在企业方面有专有的优化和集成,主要用于服务器 Home 家庭 阅读全文

posted @ 2020-04-16 17:19 liujx2019 阅读(1006) 评论(0) 推荐(0) 编辑

2020年4月15日

openssl 查看证书

摘要: 查看证书 # 查看KEY信息 > openssl rsa -noout -text -in myserver.key # 查看CSR信息 > openssl req -noout -text -in myserver.csr # 查看证书信息 > openssl x509 -noout -text 阅读全文

posted @ 2020-04-15 17:38 liujx2019 阅读(3642) 评论(0) 推荐(0) 编辑

2020年4月14日

Ubuntu 搜索文件

摘要: 1.whereis 文件名 特点:快速,但是是模糊查找 例如: whereis php #会把php,php.ini,php.*所在的目录都找出来. 2.find / -name 文件名 特点:准确,但速度慢,消耗资源大 例如: 如果想找到php.ini的准确位置,需要用 #find / -name 阅读全文

posted @ 2020-04-14 11:35 liujx2019 阅读(356) 评论(0) 推荐(0) 编辑

2020年4月9日

微软的 Sysinternals 系统管理工具包,例如可找出自动启动的流氓软件

摘要: 作者:Kenny链接:https://www.zhihu.com/question/52157612/answer/153886419来源:知乎著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。 里面有几十个小工具,用来检测和管理Windows。免费可下载。我最常用的有两个: au 阅读全文

posted @ 2020-04-09 15:24 liujx2019 阅读(353) 评论(0) 推荐(0) 编辑

2020年4月8日

Windows 挂起进程

摘要: A thread can suspend and resume the execution of another thread. While a thread is suspended, it is not scheduled for time on the processor. If a thre 阅读全文

posted @ 2020-04-08 18:19 liujx2019 阅读(922) 评论(0) 推荐(0) 编辑

2020年4月2日

结构体 偏移量 (size_t)&(((s *)0)->m) , list相关

摘要: 在Windows SDK 的stddef.h 中 #define offsetof(s,m) (size_t)&(((s *)0)->m) 应用例如 #define list_container(ptr, type, member) ((type *)((char *)(ptr) - offseto 阅读全文

posted @ 2020-04-02 14:07 liujx2019 阅读(212) 评论(0) 推荐(0) 编辑

2020年3月31日

Data Flow Diagram with Examples - Customer Service System

摘要: Data Flow Diagram with Examples - Customer Service System Data Flow Diagram (DFD) provides a visual representation of the flow of information (i.e. da 阅读全文

posted @ 2020-03-31 15:28 liujx2019 阅读(416) 评论(0) 推荐(0) 编辑

上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 42 下一页

导航