Search results for query: *

  • Users: marcvs
  • Content: Threads
  • Order by date
  1. M

    Question file name too long

    Hello everyone I am reading filenames and some details recursively, starting from a user selected folder. Dim Path As New DirectoryInfo(NewPath) Dim File As FileInfo ' Get details for each file For Each File In Path.GetFiles ... Next I tried scanning an entire drive to test the code and...
  2. M

    WMI - list groups a user is member of

    Hi All, I am using WMI to retrieve some user account info. Getting users is easy using the query: "SELECT * FROM Win32_UserAccount" Getting the groups that a user is member of is a bit trickier, eg: user: Joe member of: Administrators, Users I'm using the following query, where myDomain...
  3. M

    Call function AFTER form has been loaded

    Hi All! I have a function called PopulateTree which fills a treeview with machine names on my network. This takes a couple of seconds so I put a "please wait..." in the status bar at the start of the function. This works fine, however when I call PopulateTree on Load, the form is not...
  4. M

    detect antivirus on remote machine

    Hi All! I'm playing around with WMI to get information about remote machines on a network such as running processes, installed applications, etc. I would like to know if an antivirus is installed and some info about it such as if it is currently running, or if its definitions are up to date...
Back
Top