Fixed error in plugin windows not print data, tiquet: #2127

This commit is contained in:
m-lopez-f 2015-04-29 17:18:19 +02:00
parent 47bc043a4e
commit 4f8a14a0f7
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ Set colVideoCards = objWMIService.ExecQuery("Select caption,AdapterRAM,PNPDevice
For Each vcard In colVideoCards
Wscript.StdOut.WriteLine "<data><![CDATA[" & vcard.caption _
& ";" & Abs(Round(vcard.AdapterRAM/(1024*1024)),2) & " MB" _
& ";" & Round(Abs(vcard.AdapterRAM/(1024*1024)),2) & " MB" _
& ";" & vcard.PNPDeviceID _
& "]]></data>"
Next