使用VBS獲取當前計算機上開啟的服務

2021-03-31 08:56:28 字數 963 閱讀 7377

'獲得當前系統服務

dim oargs, strservername, oserviceset, owsh***work

set oargs = wscript.arguments

if oargs.count > 0 then

strservername = trim(oargs(0))

else

strservername = "localhost"

end if

set oserviceset = getobject("winmgmts:!//" & strservername & "/root/cimv2").instancesof("win32_service")

if strservername = "localhost" then

set owsh***work = wscript.createobject("wscript.***work")

wscript.echo  owsh***work.***putername & " 系統服務資訊如下:"

set owsh***work = nothing

else

wscript.echo strservername & " 系統服務資訊如下:"

end if

wscript.echo string(75, "_")

for each service in oserviceset

wscript.echo "      顯示名稱:" & service.description & "服務名稱:" & service.name &" 當前狀態:" & service.state

next

wscript.echo string(75, "_")

set oserviceset = nothing

wscript.echo string(75, "_")

set oserviceset = nothing

delphi獲取當前計算機所有碟符

getdrivetype 路徑 判斷一個磁碟驅動器的型別 返回一個整數 0 驅動器型別不確定 1 系統目錄不存在 2 drive removable 是可移動驅動器 3 drive fixed 是固定驅動器 4 drive remote 是網路驅動器 5 drive cdrom 是cd rom驅動器...

獲取當前時間 使用標準C

大家可能在開發過程中經常會遇到獲取當前系統時間的問題。那麼除了mfc中的ctime類外,有沒有其他的方法呢?答案是肯定的。很多c c 的初學者在學習這門語言的時候,經常是隻注意其語法,而其庫函式卻知道的很少。有的知道一些,但是卻很少應用。筆者在這裡建議大家,經常去看看標準c庫,標準c 庫。如果能在開...

使用Javascript獲取當前目錄的絕對路徑

一談到路徑相關的問題,大家都會往window.location上想,確實這個物件提供了相當多的路徑資訊,其中常用的就包括 location.href 當前頁面的完整url location.pathname 當前url中的路徑名 location.hash 當前url中的錨點 location.se...

如何使用PHP獲取當前年份?

如果您的伺服器支援短標籤,或者您使用php 5.4,則可以使用 隨著php朝著更加物件導向的方向發展,我很驚訝這裡沒有人引用內建的datetime類 now new datetime year now format y 或者在例項化時使用類成員訪問的單行 php 5.4 year new datet...

使用sqlserver日期函式獲取當前日期

使用sqlserver日期函式中的getdate 可以獲取當現的日期,下面就將為您介紹這種使用sqlserver日期函式獲取當前日期的方法,供您參考,希望對您學習sqlserver日期函式有所啟迪。但是如果我們只需要得到當前的日期,不需要時間部分,或者不需要日期只要時間部分,再或者我要只要欄位中的日...