主頁 > 知識庫 > VBS腳本也有GUI圖形界面 日志清除功能

VBS腳本也有GUI圖形界面 日志清除功能

熱門標(biāo)簽:打電話的外呼系統(tǒng)貴不貴 辦理膠州400電話財(cái)稅 外呼營銷下單系統(tǒng) 百度地圖標(biāo)注怎么卸載 前鋒辦理400電話申請 新密防封卡外呼系統(tǒng)違法嗎 加盟電銷機(jī)器人好的品牌 海外美發(fā)店地圖標(biāo)注 陜西高頻外呼回?fù)芟到y(tǒng)哪家好

使用方法:將下面的代碼保存為rizhi.vbs雙擊運(yùn)行即可,如果不行可能是殺毒軟件的問題??梢运阉飨?。腳本之家以前提供過解決方法。

set ie=wscript.createobject("internetexplorer.application","event_") '創(chuàng)建ie對象' 
ie.menubar=0 '取消菜單欄' 
ie.addressbar=0 '取消地址欄' 
ie.toolbar=0 '取消工具欄' 
ie.statusbar=0 '取消狀態(tài)欄' 
ie.width=400 '寬400' 
ie.height=400 '高400' 
ie.resizable=0 '不允許用戶改變窗口大小' 
ie.navigate "about:blank" '打開空白頁面' 
ie.left=fix((ie.document.parentwindow.screen.availwidth-ie.width)/2) '水平居中' 
ie.top=fix((ie.document.parentwindow.screen.availheight-ie.height)/2) '垂直居中' 
ie.visible=1 '窗口可見' 

with ie.document '以下調(diào)用document.write方法,' 
.write "html>body bgcolor=#dddddd scroll=no>" '寫一段html到ie窗口中。' 
.write "h2 align=center>遠(yuǎn)程清除系統(tǒng)日志/h2>br>" 
.write "p>目標(biāo)IP:input id=ip type=text size=15>" '也可以用navigate方法直接打開一' 
.write "p>用戶名:input id=user type=text size=30>" '個html文件,效果是一樣的。' 
.write "p>密碼: input id=pass type=password size=30>" 
.write "p align=center>類型:" '不僅是input對象,所有DHTML支持' 
.write "input id=app type=checkbox>應(yīng)用程序 " '的對象及其屬性、方法都可以使用。' 
.write "input id=sys type=checkbox>系統(tǒng) " 
.write "input id=sec type=checkbox>安全" '訪問這些對象的辦法和網(wǎng)頁中訪問' 
.write "p align=center>br>" '框架內(nèi)對象是類似的。' 
.write "input id=confirm type=button value=確定> " 
.write "input id=cancel type=button value=取消>" 
.write "/body>/html>" 
end with 

dim wmi '顯式定義一個全局變量' 
set wnd=ie.document.parentwindow '設(shè)置wnd為窗口對象' 
set id=ie.document.all '設(shè)置id為document中全部對象的集合' 
id.confirm.onclick=getref("confirm") '設(shè)置點(diǎn)擊"確定"按鈕時的處理函數(shù)' 
id.cancel.onclick=getref("cancel") '設(shè)置點(diǎn)擊"取消"按鈕時的處理函數(shù)' 

do while true '由于ie對象支持事件,所以相應(yīng)的,' 
wscript.sleep 200 '腳本以無限循環(huán)來等待各種事件。' 
loop 

sub event_onquit 'ie退出事件處理過程' 
wscript.quit '當(dāng)ie退出時,腳本也退出' 
end sub 

sub cancel '"取消"事件處理過程' 
ie.quit '調(diào)用ie的quit方法,關(guān)閉IE窗口' 
end sub '隨后會觸發(fā)event_onquit,于是腳本也退出了' 

sub confirm '"確定"事件處理過程,這是關(guān)鍵' 
with id 
if .ip.value="" then .ip.value="." '空ip值則默認(rèn)是對本地操作' 
if not (.app.checked or .sys.checked or .sec.checked) then 'app等都是checkbox,通過檢測其checked' 
wnd.alert("至少選擇一種日志") '屬性,來判斷是否被選中。' 
exit sub 
end if 
set lct=createobject("wbemscripting.swbemlocator") '創(chuàng)建服務(wù)器定位對象' 
on error resume next '使腳本宿主忽略非致命錯誤' 
set wmi=lct.connectserver(.ip.value,"root/cimv2",.user.value,.pass.value) '連接到root/cimv2名字空間' 
if err.number then '自己捕捉錯誤并處理' 
wnd.alert("連接WMI服務(wù)器失敗") '這里只是簡單的顯示“失敗”' 
err.clear 
on error goto 0 '仍然讓腳本宿主處理全部錯誤' 
exit sub 
end if 
if .app.checked then clearlog "application" '清除每種選中的日志' 
if .sys.checked then clearlog "system" 
if .sec.checked then clearlog "security" '注意,在XP下有限制,不能清除安全日志' 
wnd.alert("日志已清除") 
end with 
end sub 

sub clearlog(name) 
wql="select * from Win32_NTEventLogFile where logfilename='"name"'" 
set logs=wmi.execquery(wql) '注意,logs的成員不是每條日志,' 
for each l in logs '而是指定日志的文件對象。' 
if l.cleareventlog() then 
wnd.alert("清除日志"name"時出錯!") 
ie.quit 
wscript.quit 
end if 
next 
end sub

上面是通過vbs輸出html內(nèi)容來實(shí)現(xiàn),一般情況下,腳本之家小編是使用hta來實(shí)現(xiàn)圖像界面。

標(biāo)簽:伊春 阜陽 咸陽 河南 武威 梅州 四平 牡丹江

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