瀏覽單個文章
jzdai0903
Basic Member
 

加入日期: Mar 2007
文章: 17
引用:
作者foxbrian
請問一下OUTTOOL\DRIVERS\NET\IFMON.DLL OUTTOOL\DRIVERS\NET\NETSH.exe
這兩個檔案的作用是?

PS.OUTER_BASE.exe似乎多放了一份




outtool目錄下的OUTER_BASE.exe 好像忘記刪掉了@@

NETSH跟IFMON.DLL 是用來設定ip組態用的...
舉例來說

打開START_NET.CMD
在net stop dhcp後面加入

net stop dhcp

rundll32 netshell.dll HrRenameConnection
netsh add helper ifmon.dll

@rem 請自行修改適合你網路的相關資訊
@rem gateway 資訊要設定2次才能設成功...
@rem -------------------------------------------
netsh interface ip set address "區域連線" static addr=192.168.1.147 mask=255.255.255.0 gateway=192.168.1.252 auto
pecmd.exe wait 1000
netsh interface ip set address "區域連線" static addr=192.168.1.147 mask=255.255.255.0 gateway=192.168.1.252 auto
pecmd.exe wait 1000
netsh interface ip set dns "區域連線" static 192.168.1.252
netsh interface ip add dns "區域連線" 192.168.1.253
@rem -------------------------------------------
net start dhcp
@rem 假如要設定網路磁碟機 請自行修改帳號...密碼跟欲連結電腦的IP
pecmd.exe wait 1000
echo '密碼' | net use z: \\192.168.1.111\source /user:帳號
pecmd.exe wait 1000
start PENETCFGCHT.EXE
舊 2007-09-19, 10:53 AM #13
回應時引用此文章
jzdai0903離線中