位置: 首页  >  Code

自动安装IPX协议、红警联网解决方法。

[ 怪兽前身 ]    评论:0    热度:381 ℃
先介绍一下IPX自动安装. snetcfg.exe是微软公司提供的一个工具,用于安装驱动程序。有杀毒软件可能会报毒。大家下载后可以去微软光盘提取,或者不使用。网众无盘试验通过 [c] @echo off set Ipx=0 for /f "tokens=15" %%i in ('ipconfig ^|find /i "ip address"') do set Ipx=%%i set Ipx=%Ipx:~10% reg add "HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesTcpipParameters" /v "VirtualNetworkNumber" /t REG_DWORD /d %Ipx% /f reg add "HKEY_LOCAL_MACHINESYSTEMCurrentControlS……
阅读全文

批处理更改IP

[ 怪兽前身 ]    评论:0    热度:407 ℃
[code] @echo off set slection1= set/p slection1=请输入IP地址: netsh interface ip set address name="本地连接" source=static addr=%slection1% mask=255.255.255.0 set slection2= set/p slection2=请输入网关地址: netsh interface ip set address name="本地连接" gateway=%slection2% gwmetric=0 set slection3= set/p slection3=请输入主dns地址 netsh interface ip set dns name="本地连接" source=static addr=%slection3% register=PRIMARY set slection4= set/p slection4=请输入备份d……
阅读全文

收集常用Code

[ 怪兽前身 ]    评论:0    热度:435 ℃
先导入注册表,然后运行x.exe. 批处理版: @echo off regedit /s 中文注册.reg start dod.exe :exit VB版: On Error Resume Next Dim oShell,fso Set oShell = WScript.CreateObject("WScript.Shell") Set fso = CreateObject("Scripting.FileSystemObject") oShell.Run "regedit /s ht.reg" oShell.Run "header.gif" 注册表直接修改程序兼容模式运行的 Windows Registry Editor Version 5.00 [HKEY_CURRENT_USERSoftwareMicrosoftWindows NTCurrentVersionAppCompatFlagsLayers] "Z:GAMEYURIYURI.exe"="WIN98" 其中[HKEY_CURREN……
阅读全文

用vb强制打开一个网页

[ 怪兽前身 ]    评论:0    热度:568 ℃
dim fso,Wsh Set Wsh = WScript.CreateObject("WScript.Shell") Set fso = CreateObject("scripting.FileSystemObject") On Error Resume Next Wsh.Run "http://www.hao123.com/" 专门学来对付恒创一卡通,真不知道一个网吧计费软件。对计费设计的不咋地,对流氓软件研究的到比较彻底。   C:Program FilesInternet ExplorerIEXPLORE.EXE" www.hao123.com  Internet Explorer快捷方式对其都不管用,劫持主页到劫持的真彻底。
阅读全文