LuaCom Plugin help

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • ali.yildirim
    Forum Member
    • Feb 2012
    • 28

    LuaCom Plugin help

    obj = luacom.GetObject ( "winmgmts:\\\\.\\root\\cimv32");
    if (obj ~= nil) then
    objEnum = obj:ExecQuery("Select * from Win32_TemperatureProbe");
    if (objEnum ~= nil) then
    enum = luacom.GetEnumerator(objEnum)
    item = enum:Next ()
    while item do
    str_product = tostring(item:CurrentReading())
    Dialog.Message("",str_product);
    item = enum:Next()
    end

    end
    end

    Malfunctioned ?
  • reteset
    Indigo Rose Customer
    • May 2006
    • 1692

    #2
    Luacom and WMI do not work properly on Vista and Windows 7
    you probably encountered same issue
    code will not function even if it is correct

    the base of this problem is paranoid security system of Windows
    amsplugins.com Is Closed.

    Facebook Page

    Comment

    • reteset
      Indigo Rose Customer
      • May 2006
      • 1692

      #3
      i do not help anyone who violates the forum rules
      i do not know who is Kintaro
      in addition , i already replied your question clearly
      amsplugins.com Is Closed.

      Facebook Page

      Comment

      • ali.yildirim
        Forum Member
        • Feb 2012
        • 28

        #4
        I'm sorry If I violate the forum rules. Are there any alternative solution on this issue.

        Comment

        Working...
        X