Jump to content

engine

Active Members
  • Posts

    165
  • Joined

  • Last visited

About engine

  • Birthday 07/07/1981

Profile Information

  • Location
    Portugal

Recent Profile Visitors

396 profile views

engine's Achievements

Prodigy

Prodigy (4/7)

3

Reputation

  1. That script runs fine and fast on my machine. try running this script #include "LocalAccount.au3" #include <Array.au3> $result = _GroupEnumMembers("Administrators") MsgBox(0, "Error", @error) _ArrayDisplay($result) If you see error different from 0, you probably aren't going to get any result on that _ArrayDisplay, like for never.
  2. Updated files on the first post.
  3. Updated files on the first post to reflect the changes introduced in AutoIt 3.3.8.0 You need the new version of SecurityEx.au3 from the other post.
  4. Now you can translate the constants if want.
  5. Read the notes before the function. $Array[1] Returns one of the constants defined on top of the UDF: ; Service state Global Const $SERVICE_STOPPED = 0x00000001 Global Const $SERVICE_START_PENDING = 0x00000002 Global Const $SERVICE_STOP_PENDING = 0x00000003 Global Const $SERVICE_RUNNING = 0x00000004 Global Const $SERVICE_CONTINUE_PENDING = 0x00000005 Global Const $SERVICE_PAUSE_PENDING = 0x00000006 Global Const $SERVICE_PAUSED = 0x00000007 Microsoft designed it this way.
  6. If there is no "reg.exe" file (Registry Console Tool) in Windows Vista or 7, it won't work. You could try running the Windows XP 32 bit version under Vista or 7.
  7. Updated again. Forgot to declare Local inside functions. Maybe there is no need. But I always do that.
  8. AdamUL thanks for updating the UDF and for sharing with the rest of us.
  9. I am getting an error while using _7ZIPExtractEx to extract a tar archive. Is this normal?
  10. I don't have Windows 7. So I can't test on that OS and update as see fit. I hope someone else can do it. I am very sorry! Regards.
  11. Thanks ECHAIGNE I will take your word for it. I don't have time to design my own test scripts or even to test these things. The new UDF on the first post contains these modifications. Regards.
  12. Thanks AdamUL for reporting and testing. And helping Shark007 ! I think that: If Not @error And $avUser Then Is equivalent to your statement. Note the parenthesis are now absent. Please test. If it works I will make it permanent. Thanks.
×
×
  • Create New...