Search results for query: *

  1. S

    Shelling exe's from a service using SYSTEM account

    Used Shell("C:\AppPath\Exe.exe") and that seems to work
  2. S

    Shelling exe's from a service using SYSTEM account

    Hi All, Wondered if anyone could advise me on something. I've followed this guide to creating a service Creating Services with VB Express | DoTheWeb.net and the service seems OK. However what I'm wanting to do is to check whether a scheduled task is in the C:\Windows\Tasks folder. My code...
  3. S

    making AD Group a member of another group?

    Resolved This is currently Working Private Function GroupMemberOf() As Boolean Try Dim group As New DirectoryEntry("LDAP://cn=Remote Desktop Users, cn=Builtin, dc=Test, dc=net") group.Properties("member").Add("cn=TestGroup2, ou=Test, dc=TEST, dc=net")...
  4. S

    making AD Group a member of another group?

    Hi All, I have a small issue of making a Active Directory Group a member of another group. I have been able to create a group, I have been able to make a user a member of that group, but when I try and make a group a member of another group e.g. TestGroup a member of Administrators I'm...
Back
Top