SMS 스크립트 섹션 3: LAZY 속성 읽기
For more information on lazy properties, see SMS Objects .
To read a lazy property
Set colAdvertisements = objSWbemServices.ExecQuery("Select * From SMS_Advertisement")
For Each objAdvert In colAdvertisements
WScript.Echo "ActionInProgress = " & objAdvert.ActionInProgress
WScript.Echo "AdvertFlags = " & objAdvert.AdvertFlags
WScript.Echo "AdvertisementID = " & objAdvert.AdvertisementID
WScript.Echo "AdvertisementName = " & objAdvert.AdvertisementName
'For the lazy properties, get the advertisements individually.
Set lazyproperties = objSWbemServices.Get("SMS_Advertisement.AdvertisementID='" & ObjAdvert.advertisementid & "'")
WScript.Echo "Assigned Schedule = {"
for i=0 to ubound(lazyproperties.assignedschedule,1)
WScript.Echo " instance of " & lazyproperties.Properties_("AssignedSchedule").Value(0).Path_.Class
WScript.Echo lazyproperties.Properties_("AssignedSchedule").Qualifiers_("CIMType")
WScript.Echo " DayDuration: " & lazyproperties.AssignedSchedule(i).DayDuration
WScript.Echo " Hourspan: " & lazyproperties.AssignedSchedule(i).HourSpan
WScript.Echo " IsGMT: " & lazyproperties.AssignedSchedule(i).IsGMT
WScript.Echo " StartTime: " & lazyproperties.AssignedSchedule(i).StartTime
WScript.Echo "AssignedScheduleEnabled = " & lazyproperties.AssignedScheduleEnabled
WScript.Echo "AssignedScheduleIsGMT = " & lazyproperties.AssignedScheduleIsGMT
next
WScript.Echo "}"
WScript.Echo "CollectionID = " & objAdvert.CollectionID
WScript.Echo "Comment = " & objAdvert.Comment
Next
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Microsoft에 인증되지 않은 취약점? 이야기Microsoft는 제품이나 서비스의 취약성을 발견하면 보상금을 받을 수 있는 제도 「Microsoft Bug Bounty Program」이 있다. 본 기사에서는 Microsoft에 인정되지 않았지만, 유저에게의 리...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.