主頁 > 知識庫 > 使用vbs刪除host文件域址內(nèi)容

使用vbs刪除host文件域址內(nèi)容

熱門標(biāo)簽:神行者美術(shù)館地圖標(biāo)注 除了地圖標(biāo)注還有這種生意嗎 齊齊哈爾高德地圖標(biāo)注店 如何用機(jī)器人進(jìn)行電銷 哪里有便宜的地圖標(biāo)注公司 佛山真人電銷機(jī)器人廠家 百度地圖標(biāo)注點(diǎn)距離代碼 東營快遞外呼系統(tǒng) 地圖標(biāo)注政府哪個(gè)部門管

要求:原先host里面已增加以下3行

202.102.101.105 intranet.corp
202.102.101.107 mail.intranet.corp
202.102.101.108 sip.intranet.corp

之后不需要此3行內(nèi)容,所以運(yùn)行以上vbs代碼,來刪除host文件此3行

'該腳本要求執(zhí)行用戶有本地管理員權(quán)限
Const ForReading = 1, ForWriting = 2, ForAppending = 8, ReadOnly = 1
Set fso = CreateObject("Scripting.FileSystemObject")
Set WshShell=CreateObject("WScript.Shell")
'WinDir 為windows安裝目錄
WinDir =WshShell.ExpandEnvironmentStrings("%WinDir%")
'設(shè)定host 文件目錄

HostsFile = WinDir  "\System32\Drivers\etc\Hosts"
'檢查host文件是否為只讀,如為只讀,則修改文件屬性
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFile = objFSO.GetFile(HostsFile)
If objFile.Attributes And ReadOnly Then
 objFile.Attributes = objFile.Attributes Xor ReadOnly
End If


Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFile = objFSO.OpenTextFile(HostsFile, ForReading,true)

'檢查host文件里面是否已經(jīng)更改過了,如果更改過,則不再執(zhí)行腳本
hostfileline=""
Do Until objFile.AtEndOfStream

strline = objfile.ReadLine
If InStr (strline, "202.102.101.105") > 0 Or (InStr (strline, "202.102.101.107"))>0 Or (InStr (strline, "202.102.101.108"))  Then
  strline=""
End If
  hostfileline=hostfileline+vbCrLf+strline
Loop
WScript.Echo hostfileline
objFile.Close


'修改host文件
Set filetxt = fso.OpenTextFile(HostsFile, ForWriting )
filetxt.Write hostfileline
filetxt.Close
WScript.Quit

您可能感興趣的文章:
  • 用vbs實(shí)現(xiàn)防止計(jì)算機(jī)使用 LMHosts 文件
  • Windows Script Host之用vbs實(shí)現(xiàn)[瀏覽文件夾]功能
  • 通過vbs獲取遠(yuǎn)程host文件并保存到指定目錄

標(biāo)簽:湖州 西安 鶴壁 文山 邢臺 四平 銅川

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《使用vbs刪除host文件域址內(nèi)容》,本文關(guān)鍵詞  使用,vbs,刪除,host,文件,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《使用vbs刪除host文件域址內(nèi)容》相關(guān)的同類信息!
  • 本頁收集關(guān)于使用vbs刪除host文件域址內(nèi)容的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章