我正在使用的Windows 7如何停止在Windows中運行的VB腳本
我寫了一個腳本來檢查我的筆記本電腦是否在電池或AC電流運行。 我用它搜索並在那裏成功。
dim a
a=1
Do While a=1
If IsLaptop(".") Then
' WScript.Echo "Laptop"
Else
' WScript.Echo "Desktop or server"
End If
Loop
Function IsLaptop(myComputer)
On Error Resume Next
Set objWMIService = GetObject("winmgmts://" & myComputer & "/root/cimv2")
Set colItems = objWMIService.ExecQuery("Select * from Win32_Battery", , 48)
IsLaptop = False
For Each objItem in colItems
if objItem.BatteryStatus=2 and objItem.EstimatedChargeRemaining=98 then
WScript.Echo "Remove Ac Adapter Immediately"
elseif objItem.BatteryStatus=1 and objItem.EstimatedChargeRemaining=10 then
WScript.Echo "Pluggin to charger immediately"
end if
Next
If Err Then Err.Clear
On Error Goto 0
End Function
但我現在的問題是。如果我希望手動終止,此腳本永遠在運行腳本如何停止。
有沒有什麼方法可以去找到這個過程並停止在Windows?
您能否詳細說明您的答案,並添加關於您提供的解決方案的更多描述? – abarisone