上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 42 下一页

2019年10月11日

Bat 脚本 删除某一行

摘要: findstr /v /i /c:"kiwi" /c:"oranges" myfile.txt >newfile.txt 阅读全文

posted @ 2019-10-11 16:30 liujx2019 阅读(1440) 评论(0) 推荐(0) 编辑

2019年9月29日

如何打开 Visual Studio 的 Dump,适用于调试 appcrash,exception

摘要: https://keithbabinec.com/2018/06/12/how-to-capture-and-debug-net-application-crash-dumps-in-windows/ https://docs.microsoft.com/en-us/windows/win32/we 阅读全文

posted @ 2019-09-29 13:48 liujx2019 阅读(541) 评论(0) 推荐(0) 编辑

2019年9月27日

[Qt] 打开Diskmgmt

摘要: QProcess mOpenDiskMgmt; QString program = "cmd"; QStringList arguments; arguments start(program, arguments); 阅读全文

posted @ 2019-09-27 13:16 liujx2019 阅读(189) 评论(0) 推荐(0) 编辑

2019年9月25日

如何给 Visual Studio 的输出程序添加版本信息

摘要: 出处:https://stackoverflow.com/questions/284258/how-do-i-set-the-version-information-for-an-existing-exe-dll 先给项目添加一个 version.h 头文件 再到 proj.rc 里创建一个 Ver 阅读全文

posted @ 2019-09-25 11:17 liujx2019 阅读(906) 评论(0) 推荐(0) 编辑

Inno Setup 添加版权信息

摘要: 有以上一句,即可在右键 --> Property --> Details 里看见版本信息。 目前没有发现 Inno 自带的可以获取 EXE 版权信息的函数。所以会出现版权信息的字符串,在程序代码里有一份,在 Inno 脚本里又有一份。 还有 VersionInfoCopyright, Default 阅读全文

posted @ 2019-09-25 11:09 liujx2019 阅读(1133) 评论(0) 推荐(0) 编辑

如何给 Inno Setup 生成的安装包添加版本信息

摘要: 使用 Inno 已有的函数 GetFileVersion 获取 EXE 文件的版本 这样,右键 Property --> Details 能看到版本信息。 程序的版本号会在 Welcome Page 里显示。如果 Disable 了 Welcome Page, 可以用修改程序显示名字的办法来显示出版 阅读全文

posted @ 2019-09-25 11:04 liujx2019 阅读(2615) 评论(0) 推荐(0) 编辑

2019年9月24日

如何调试 Inno Setup

摘要: 从命令行运行安装包,并加上 阅读全文

posted @ 2019-09-24 09:42 liujx2019 阅读(786) 评论(0) 推荐(0) 编辑

2019年9月11日

Debugging Under Unix: gdb Tutorial (https://www.cs.cmu.edu/~gilpin/tutorial/)

摘要: Contents Introduction This tutorial was originally written for CS 342 at Washington University. It is still maintained by Andrew Gilpin. Who should re 阅读全文

posted @ 2019-09-11 09:36 liujx2019 阅读(186) 评论(0) 推荐(0) 编辑

2019年9月10日

设置 cipher suite

摘要: https://man.openbsd.org/SSL_CTX_set_cipher_list.3#ECDHE SSL_CTX_set_cipher_list() sets the list of available cipher suites for ctx using the control s 阅读全文

posted @ 2019-09-10 18:42 liujx2019 阅读(910) 评论(0) 推荐(0) 编辑

openssl查看证书细节 [转载]

摘要: openssl x509部分命令 打印出证书的内容: openssl x509 -in cert.pem -noout -text 打印出证书的系列号 openssl x509 -in cert.pem -noout -serial 打印出证书的拥有者名字 openssl x509 -in cert 阅读全文

posted @ 2019-09-10 18:40 liujx2019 阅读(641) 评论(0) 推荐(0) 编辑

上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 42 下一页

导航