摘要: 1. 使用VS2013编译你要打包的程序,会在文件夹中的 ..\bin\Release中2. 点击VS2013中的TOOLS -> PreEmptive Dotfuscator and Analytics : 打开的界面如下图: 3. 选择需要混淆的文件,一般只需要混淆 *.Dll ... 阅读全文
posted @ 2016-01-15 11:42 一菲聪天 阅读(12123) 评论(0) 推荐(2) 编辑
摘要: 如果在使用Innosetup打包软件时,如果出现Interal error: CallSpawnServer: Unexpected response: $0.错误,如下图: 可以查看 Innosetup的脚步文件 xxx.iss文件的OutputBaseFilename字段OutputBas... 阅读全文
posted @ 2016-01-15 11:06 一菲聪天 阅读(3335) 评论(0) 推荐(1) 编辑
摘要: 1 function writelog($str)2 {3 $open=fopen("e:\log.txt","a" );4 fwrite($open,$str);5 fclose($open);6 }View Code1. 使... 阅读全文
posted @ 2016-01-15 10:57 一菲聪天 阅读(4977) 评论(0) 推荐(0) 编辑