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