列出所有的wmi物件方法和屬性vbs指令碼
2023年10月20日
列出所有的wmi物件方法和屬性vbs指令碼
2023年01月21日 星期三 下午 03:16
在powsershell裡面需要使用wmi物件需,找到一段vbs指令碼,能列出所有的wmi資訊,
strcomputer = "."
set objwmiservice=getobject("winmgmts:!\\" & strcomputer & "\root\cimv2")
for each objclass in objwmiservice.subclassesof()
intcounter=0
if left(objclass.path_.class,5) = "win32" then
for each qualifier in objclass.qualifiers_
if ucase(trim(qualifier.name)) = "association" then
intcounter = 1
end if
next
if x = 0 then
strcomputer = "."
set objwmiservice = getobject _
("winmgmts:!\\" & strcomputer & "\root\cimv2")
set strclass = objwmiservice.get(objclass.path_.class)
wscript.echo "properties:"
for each stritem in strclass.properties_
wscript.echo objclass.path_.class & vbtab & stritem.name
next
wscript.echo "methods:"
for each stritem in strclass.methods_
wscript.echo objclass.path_.class & vbtab & stritem.name
next
end if
end if
next執行方式:開啟powsershell 輸入: cscript wmi.vbs >>wmi.txt
生成的wmi.txt大小1.59m
js遍歷物件所有的屬性名稱和值
用來遍歷指定物件所有的屬性名稱和值 obj 需要遍歷的物件 author jet mah website function allprpos obj else 最後顯示所有的屬性 alert props 遍歷j ascript某個物件所有的屬性名稱和值的方法,這樣想使用方法的時候非常的直觀和方便。整...
Request物件的所有的方法
setattribute string name,object 設定名字為name的request的引數值 getattribute string name 返回由name指定的屬性值 getattributenames 返回request物件所有屬性的名字集合,結果是乙個列舉的例項 getcook...
Request物件的所有的方法
request物件的主要方法 setattribute string name,object 設定名字為name的request的引數值 getattribute string name 返回由name指定的屬性值 getattributenames 返回request物件所有屬性的名字集合,結果是...