On Error Resume Next Set objWMIService = GetObject("winmgmts:{impersonationLevel=impersonate}!\\.\root\SecurityCenter2") If objWMIService is Nothing Then Wscript.StdOut.Write "NULL" Else Set installedAntiviruses = objWMIService.ExecQuery("Select * from AntivirusProduct") 'Iterates through all the antivirus software,retrieved by the WMI query,present on the system and prints only the ones that are active 'this is done by checking the 12th bit of the productState property of the antivirus 'if 12th bit is on then it means that the antivirus is in active state 'if 12th bit is off then it is inactive. 'see http://neophob.com/2010/03/wmi-query-windows-securitycenter2/ count=0 list="" For Each antivirus in installedAntiviruses If antivirus.productState And &h01000 Then 'checking the state of the 12th bit of productState property of the antivirus count=count+1 list=list & VBNewLine & VBtab & "*" & antivirus.displayName End if Next If count = 0 Then Wscript.StdOut.Write "NOT_FOUND" Else Wscript.Echo list End if End ifption> LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/drawinglayer/Library_drawinglayer.mk
r>
AgeCommit message (Expand)Author
2017-07-15emfplus: migrate gdiplus reader to drawinglayerArmin Le Grand
2017-07-12borderline: correct problems with border displayArmin Le Grand
2017-04-21gbuild: Remove MSVC 2013 legacy codeDavid Ostrovsky
2015-06-14Remove unused OpenGLObjectZolnai Tamás
2014-03-17Skeleton of drawinglayer object called OpenGLObjectZolnai Tamás
2013-07-12PCH for more librariesLuboš Luňák
2013-06-17Related: #i121532# unified processor2d usages from other modulesArmin Le Grand
2013-06-14Resolves: #i121534# Reintegrating changes for rotated bitmap supportArmin Le Grand
2013-06-12Resolves: #i121297# corrected non-AAed gradient rendering...Armin Le Grand
2013-06-11Resolves: #i121194# Better support for graphic fill styles...Armin Le Grand
2013-04-24Don't point to inc directories that don't exist any longerTor Lillqvist
2013-04-24gbuild: drop uses of removed packagesDavid Tardon
2013-04-22Move to MPLv2 license headers, with ESC decision and author's permission.Michael Meeks
2013-04-05new module i18nlangtagEike Rathke
2013-03-16Resolves: #i118780# Moved ObjectInfoPrimitive2D extractor to drawinglayer...Armin Le Grand
2013-03-13Related: #i119125# corrected gradient renderingArmin Le Grand
2013-01-26gbuild: do not copy boost headers aroundMichael Stahl
2014-11-26Generate consistent buildid values in instdir/ setup and version ini-filesStephan Bergmann
2014-11-26version ini-file's ProductMajor/Minor are unusedStephan Bergmann
2014-11-25Update ReferenceOOoMajorMinor to 4.1 for installation sets, tooStephan Bergmann
2014-11-25Remove unused URE_LIB_DIRStephan Bergmann
2014-11-20fix "Could not merge msm file into database"Christian Lohmaier
2014-11-18Hide instsetoo_native outputStephan Bergmann
2014-11-12Fix common typos. No automatic tools. Handmade…Andrea Gelmini
2014-10-23kill OUTPATHNorbert Thiebaud
2014-10-08fdo#82288 merge core01-core07 packages into just oneChristian Lohmaier
2014-09-18Use instsetoo_native-generated uno ini-file for both instdir and instsetsStephan Bergmann
2014-09-17BRAND_BIN_SUBDIR -> BRAND_INI_DIR, to cater for new Mac OS X layoutStephan Bergmann
2014-09-16Wrong URE_INTERNAL_LIB_DIR value for MACOSXStephan Bergmann
2014-09-16Wrong URE_INTERNAL_JAVA_DIR value for MACOSXStephan Bergmann
2014-09-16Wrong UNO_TYPES value for MACOSXStephan Bergmann
2014-09-16Create instdir uno ini-file from instsetoo_nativeStephan Bergmann
2014-09-16Rename LO-specific uno ini-file (Linux: program/unorc) to "louno"Stephan Bergmann
2014-09-09Make the "Mac-like" or "canonical" app bundle structure always used on OS XTor Lillqvist