<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Web Wiz Support and Community Forums : Active Directory Group Membership</title>
  <link>https://forums.webwiz.net/</link>
  <description><![CDATA[This is an XML content feed of; Web Wiz Support and Community Forums : Web Wiz Forums : Active Directory Group Membership]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Tue, 07 Apr 2026 12:48:16 +0000</pubDate>
  <lastBuildDate>Wed, 23 Aug 2006 23:33:54 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.08</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://forums.webwiz.net/RSS_post_feed.asp?TID=20554</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Web Wiz Support and Community Forums]]></title>
   <url>https://forums.webwiz.net/forum_images/web_wiz_forums.png</url>
   <link>https://forums.webwiz.net/</link>
  </image>
  <item>
   <title><![CDATA[Active Directory Group Membership : I can&amp;#039;t find the other thread,...]]></title>
   <link>https://forums.webwiz.net/active-directory-group-membership_topic20554_post113074.html#113074</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=24642">switchbak</a><br /><strong>Subject:</strong> 20554<br /><strong>Posted:</strong> 23&nbsp;August&nbsp;2006 at 11:33pm<br /><br />I can't find the other thread, so I'm gonna post this here. <DIV>&nbsp;</DIV><DIV>Here's what I've done to&nbsp;populate my&nbsp;forum groups based on my&nbsp;Active Directory groups:</DIV><DIV>&nbsp;</DIV><DIV>in&nbsp;functions_windows_authentication.asp i changed the code that says:</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;&nbsp;'We need to get the start user group ID from the database<BR>&nbsp;&nbsp;'Initalise the strSQL variable with an SQL statement to query the database<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'strSQL = "SELECT " &amp; strDbTable &amp; "Group.Group_ID " &amp; _<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; '"FROM " &amp; strDbTable &amp; "Group" &amp; strDBNoLock &amp; " " &amp; _<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; '"WHERE " &amp; strDbTable &amp; "Group.Starting_group = " &amp; strDBTrue &amp; ";"</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>to </DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;&nbsp;dim ADS_SCOPE_SUBTREE<BR>&nbsp;&nbsp;dim objConnection<BR>&nbsp;&nbsp;dim objCommand<BR>&nbsp;&nbsp;dim objRecordSet<BR>&nbsp;&nbsp;dim distName<BR>&nbsp;&nbsp;dim arrMemberOf<BR>&nbsp;&nbsp;dim theGroup<BR>&nbsp;&nbsp;dim objUser<BR>&nbsp;&nbsp;dim theGroupList<BR>&nbsp;&nbsp;dim intPrimaryGroupID <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;ADS_SCOPE_SUBTREE = 2</DIV><DIV>&nbsp;&nbsp;Set objConnection = CreateObject("ADODB.Connection")<BR>&nbsp;&nbsp;Set objCommand = CreateObject("ADODB.Command")<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;objConnection.Provider = "ADsDSOObject"<BR>&nbsp;&nbsp;objConnection.Open "Active Directory Provider"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;Set objCommand.ActiveConnection = objConnection<BR>&nbsp;&nbsp;objCommand.CommandText = "Select distinguishedName, primaryGroupToken from 'LDAP://DC=my,DC=domain'&nbsp; where sAMAccountName=' " &amp; strUserName &amp; "'"<BR>&nbsp;&nbsp;objCommand.Properties("Page Size") = 100<BR>&nbsp;&nbsp;objCommand.Properties("Searchscope") = ADS_SCOPE_SUBTREE<BR>&nbsp;&nbsp;Set objRecordSet = objCommand.Execute<BR>&nbsp;&nbsp;If objRecordSet.RecordCount &gt; 0 Then<BR>&nbsp;&nbsp;&nbsp;objRecordSet.MoveFirst<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;distName = vbNullString<BR>&nbsp;&nbsp;&nbsp;distName = objRecordSet.Fields("distinguishedName").Value&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;else<BR>&nbsp;&nbsp;&nbsp;'user not found in AD<BR>&nbsp;&nbsp;End If</DIV><DIV>&nbsp;&nbsp;<BR>&nbsp;&nbsp;if distName &lt;&gt; vbnullstring then<BR>&nbsp;&nbsp;&nbsp;'lookup all groups but primary<BR>&nbsp;&nbsp;&nbsp;Set objUser = GetObject("LDAP://" &amp; distname)&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;arrMemberOf = objUser.GetEx("memberOf")<BR>&nbsp;&nbsp;&nbsp;intPrimaryGroupID = objUser.Get("primaryGroupID")</DIV><DIV>&nbsp;&nbsp;&nbsp;For Each theGroup in arrMemberOf<BR>&nbsp;&nbsp;&nbsp;&nbsp;theGroupList = theGroupList &amp; lcase(theGroup) &amp; ","<BR>&nbsp;&nbsp;&nbsp;Next</DIV><DIV>&nbsp;&nbsp;&nbsp;'look up primary group<BR>&nbsp;&nbsp;&nbsp;objCommand.CommandText = "&lt;<a href="" target="_blank">;(objectCategory=Group);distinguishedName,primaryGroupToken;subtree">;(objectCategory=Group);distinguishedName,primaryGroupToken;subtree"&gt;LDAP://DC=my,DC=domain&gt;;(objectCategory=Group);distinguishedName,primaryGroupToken;subtree</A>"<BR>&nbsp;&nbsp;&nbsp;Set objRecordSet = objCommand.Execute<BR>&nbsp;&nbsp;&nbsp;objRecordSet.MoveFirst&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;Do Until objRecordset.EOF<BR>&nbsp;&nbsp;&nbsp;&nbsp;If objRecordset.Fields("primaryGroupToken") = intPrimaryGroupID Then<BR>&nbsp;&nbsp;&nbsp;&nbsp;theGroupList = theGroupList &amp; lcase(objRecordSet.Fields("distinguishedName").Value) &amp; ","<BR>&nbsp;&nbsp;&nbsp;&nbsp;End If<BR>&nbsp;&nbsp;&nbsp;&nbsp;objRecordset.MoveNext<BR>&nbsp;&nbsp;&nbsp;Loop</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;&nbsp;&nbsp;'look for specific groups:<BR>&nbsp;&nbsp;&nbsp;'enterprise admins = db admins<BR>&nbsp;&nbsp;&nbsp;'_faculty = moderators<BR>&nbsp;&nbsp;&nbsp;'everyone else = newbies<BR>&nbsp;&nbsp;&nbsp;if instr(theGroupList,"enterprise admins,") &lt;&gt; 0 then<BR>&nbsp;&nbsp;&nbsp;&nbsp;'admin<BR>&nbsp;&nbsp;&nbsp;&nbsp;'We need to get the start user group ID from the database<BR>&nbsp;&nbsp;&nbsp;&nbsp;'Initalise the strSQL variable with an SQL statement to query the database<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; strSQL = "SELECT " &amp; strDbTable &amp; "Group.Group_ID " &amp; _<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;"FROM " &amp; strDbTable &amp; "Group" &amp; strDBNoLock &amp; " " &amp; _<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "WHERE " &amp; strDbTable &amp; "Group.Name = 'Admin Group';"&nbsp;<BR>&nbsp;&nbsp;&nbsp;elseif instr(theGroupList,"_faculty,") &lt;&gt; 0 then<BR>&nbsp;&nbsp;&nbsp;&nbsp;'moderators<BR>&nbsp;&nbsp;&nbsp;&nbsp;'We need to get the start user group ID from the database<BR>&nbsp;&nbsp;&nbsp;&nbsp;'Initalise the strSQL variable with an SQL statement to query the database<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;strSQL = "SELECT " &amp; strDbTable &amp; "Group.Group_ID " &amp; _<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;"FROM " &amp; strDbTable &amp; "Group" &amp; strDBNoLock &amp; " " &amp; _<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "WHERE " &amp; strDbTable &amp; "Group.Name = 'Moderator Group';"<BR>&nbsp;&nbsp;&nbsp;else<BR>&nbsp;&nbsp;&nbsp;&nbsp;'newbies<BR>&nbsp;&nbsp;&nbsp;&nbsp;'We need to get the start user group ID from the database<BR>&nbsp;&nbsp;&nbsp;&nbsp;'Initalise the strSQL variable with an SQL statement to query the database<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; strSQL = "SELECT " &amp; strDbTable &amp; "Group.Group_ID " &amp; _<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;"FROM " &amp; strDbTable &amp; "Group" &amp; strDBNoLock &amp; " " &amp; _<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "WHERE " &amp; strDbTable &amp; "Group.Starting_group = " &amp; strDBTrue &amp; ";"<BR>&nbsp;&nbsp;&nbsp;end if<BR>&nbsp;&nbsp;else<BR>&nbsp;&nbsp;&nbsp;'newbies<BR>&nbsp;&nbsp;&nbsp;'We need to get the start user group ID from the database<BR>&nbsp;&nbsp;&nbsp;'Initalise the strSQL variable with an SQL statement to query the database<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;strSQL = "SELECT " &amp; strDbTable &amp; "Group.Group_ID " &amp; _<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "FROM " &amp; strDbTable &amp; "Group" &amp; strDBNoLock &amp; " " &amp; _<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "WHERE " &amp; strDbTable &amp; "Group.Starting_group = " &amp; strDBTrue &amp; ";"<BR>&nbsp;&nbsp;end if</DIV><span style="font-size:10px"><br /><br />Edited by switchbak - 23&nbsp;August&nbsp;2006 at 11:35pm</span>]]>
   </description>
   <pubDate>Wed, 23 Aug 2006 23:33:54 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/active-directory-group-membership_topic20554_post113074.html#113074</guid>
  </item> 
  <item>
   <title><![CDATA[Active Directory Group Membership : There is another topic on this...]]></title>
   <link>https://forums.webwiz.net/active-directory-group-membership_topic20554_post110257.html#110257</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=1">WebWiz-Bruce</a><br /><strong>Subject:</strong> 20554<br /><strong>Posted:</strong> 06&nbsp;July&nbsp;2006 at 3:56pm<br /><br />There is another topic on this same subject today, it maybe worth having a look in that topic about all these issues.]]>
   </description>
   <pubDate>Thu, 06 Jul 2006 15:56:43 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/active-directory-group-membership_topic20554_post110257.html#110257</guid>
  </item> 
  <item>
   <title><![CDATA[Active Directory Group Membership : After a bit more digging I think...]]></title>
   <link>https://forums.webwiz.net/active-directory-group-membership_topic20554_post110254.html#110254</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=24279">kastigeer</a><br /><strong>Subject:</strong> 20554<br /><strong>Posted:</strong> 06&nbsp;July&nbsp;2006 at 3:24pm<br /><br />After a bit more digging I think there are two issues with using windows authentication.<DIV>&nbsp;</DIV><DIV>The first I would imagine is quite easy to fix (easy for me to say!) - when someone logs in using windows authentication I don't believe that a cookie is being generated or used, so when getuserdata is called it does not return correct information such as the group to which the user belongs...&nbsp; hence you even though an AD account may be a moderator you don't get moderator permissions when logged in.</DIV><DIV>&nbsp;</DIV><DIV>The second has already been mentioned and is where after logging into the control panel as an admin user (non AD) when you try to edit a members profile it re-does an automatic logon and you end up viewing the members profile as the AD account you are using - which effectively will prevent any admin functions.</DIV><DIV>&nbsp;</DIV><DIV>Barry</DIV>]]>
   </description>
   <pubDate>Thu, 06 Jul 2006 15:24:15 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/active-directory-group-membership_topic20554_post110254.html#110254</guid>
  </item> 
  <item>
   <title><![CDATA[Active Directory Group Membership : Ok you can&amp;#039;t set the admin...]]></title>
   <link>https://forums.webwiz.net/active-directory-group-membership_topic20554_post110244.html#110244</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=24279">kastigeer</a><br /><strong>Subject:</strong> 20554<br /><strong>Posted:</strong> 06&nbsp;July&nbsp;2006 at 12:51pm<br /><br />Ok you can't set the admin name to be the same as an AD username as the login then fails with a complaint about a duplicate field in the DB.<DIV>&nbsp;</DIV><DIV>I can however confirm that for some reason when you logon as an administrator (using the default account and NOT and AD account) with windows authentication enabled that when you get to the admin pages (The forum control panel - admin_menu.asp) that the blnAdmin field is False, ie the account is not being properly recognised as an admin account ...</DIV><DIV>&nbsp;</DIV><DIV>I'm going to keep looking but maybe this will give you a clue as to something minor to adjust...</DIV><DIV>&nbsp;</DIV><DIV>Barry</DIV>]]>
   </description>
   <pubDate>Thu, 06 Jul 2006 12:51:10 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/active-directory-group-membership_topic20554_post110244.html#110244</guid>
  </item> 
  <item>
   <title><![CDATA[Active Directory Group Membership : Thanks - I&amp;#039;ll try that route...]]></title>
   <link>https://forums.webwiz.net/active-directory-group-membership_topic20554_post110237.html#110237</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=24279">kastigeer</a><br /><strong>Subject:</strong> 20554<br /><strong>Posted:</strong> 06&nbsp;July&nbsp;2006 at 11:59am<br /><br />Thanks - I'll try that route first.]]>
   </description>
   <pubDate>Thu, 06 Jul 2006 11:59:34 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/active-directory-group-membership_topic20554_post110237.html#110237</guid>
  </item> 
  <item>
   <title><![CDATA[Active Directory Group Membership :  For the moment one way around...]]></title>
   <link>https://forums.webwiz.net/active-directory-group-membership_topic20554_post110236.html#110236</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=1">WebWiz-Bruce</a><br /><strong>Subject:</strong> 20554<br /><strong>Posted:</strong> 06&nbsp;July&nbsp;2006 at 11:57am<br /><br />For the moment one way around this is to give your AD authentication username and password field to the admin account in the database, this will mean that when you go to the forum you will always be logged in as the admin.<br><br>Further development will be carried out to streamline the process and build on the present AD authentication so that future versions will have a much better and simply way of setting this up.<br><span style="font-size:10px"><br /><br />Edited by -boRg- - 06&nbsp;July&nbsp;2006 at 11:58am</span>]]>
   </description>
   <pubDate>Thu, 06 Jul 2006 11:57:50 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/active-directory-group-membership_topic20554_post110236.html#110236</guid>
  </item> 
  <item>
   <title><![CDATA[Active Directory Group Membership : Ok thanks - I think I know where...]]></title>
   <link>https://forums.webwiz.net/active-directory-group-membership_topic20554_post110233.html#110233</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=24279">kastigeer</a><br /><strong>Subject:</strong> 20554<br /><strong>Posted:</strong> 06&nbsp;July&nbsp;2006 at 11:49am<br /><br /><P>Ok thanks - I think I know where the problem lies - in the member forum admin area when you click on the users name to edit their profile it pops up a new window to do so and there is the button at the bottom of this screen to "edit this members profile" and I think that when windows authentication is turned on it is not passing through the fact that you are logged on as an administrator (ie not and AD account) when you click this button and instead logs you onto the new page (The "member control panel menu") it is doing so as a user not an administrator...</P><P>I'll see if I can figure something out about getting it working (always fun working with code you didn't write!) and let you know if I find anything.</P><P>&nbsp;</P><P>thank</P><P>Barry</P>]]>
   </description>
   <pubDate>Thu, 06 Jul 2006 11:49:44 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/active-directory-group-membership_topic20554_post110233.html#110233</guid>
  </item> 
  <item>
   <title><![CDATA[Active Directory Group Membership : The AD part at the moment is still...]]></title>
   <link>https://forums.webwiz.net/active-directory-group-membership_topic20554_post110230.html#110230</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=1">WebWiz-Bruce</a><br /><strong>Subject:</strong> 20554<br /><strong>Posted:</strong> 06&nbsp;July&nbsp;2006 at 11:42am<br /><br />The AD part at the moment is still relatively new, and until the last few weeks I didn't have an AD setup to test any of this on.<br><br>The AD feature is going to be developed further in future versions but for the moment anything other than just basic AD authentication may mean you will have to modify the code to get it to do what you want.<br>]]>
   </description>
   <pubDate>Thu, 06 Jul 2006 11:42:23 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/active-directory-group-membership_topic20554_post110230.html#110230</guid>
  </item> 
  <item>
   <title><![CDATA[Active Directory Group Membership : Ok I&amp;#039;ve done a bit more testing...]]></title>
   <link>https://forums.webwiz.net/active-directory-group-membership_topic20554_post110227.html#110227</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=24279">kastigeer</a><br /><strong>Subject:</strong> 20554<br /><strong>Posted:</strong> 06&nbsp;July&nbsp;2006 at 10:45am<br /><br />Ok I've done a bit more testing as this is what I have so far .. <DIV>&nbsp;</DIV><DIV>Did a complete reinstall as follows:</DIV><DIV>copied the "forum" folder to the web server</DIV><DIV>In IIS admin set the "directory Security" for that folder to Integrated Authemtication only</DIV><DIV>Setup a new DB and ran the initial setup as per instructions</DIV><DIV>Logged on to the system - this happen as an AD user.</DIV><DIV>changed the last bit in the address from "/default.asp" to "/admin.asp"</DIV><DIV>logged in using the default administrator account and password</DIV><DIV>Went to "membership admin", clicked on the AD user account that had been automatically created (as "newbie" ) and then clicked on "Edit this members forum settings"</DIV><DIV>No option is available for "Admin and Moderator" functions - I'm pretty sure that when I click on the username and it pops up the new window for editing it's authenticating me as the AD user who is a "newbie" not the admin account</DIV><DIV>&nbsp;</DIV><DIV>I then did a bit more fiddling - I went into the Database and changed the group membership for the AD account to "1" effectively making that account an admin account - I then logged on as the default administrator account (using /admin.asp)&nbsp;and checked that the AD user was an administrator.</DIV><DIV>The I logged on as the user by just opening a new browser and I then had the link to the Admin function in the top options, but when I click on it it asks for a password (the username cannot be changed) and it's not the password from AD so there's no way to go any further...</DIV><DIV>&nbsp;</DIV><DIV>Is this something that can definitely be done?&nbsp; To have an AD user be an administrator for the forums?</DIV><DIV>&nbsp;</DIV><DIV>thanks</DIV><DIV>Barry</DIV>]]>
   </description>
   <pubDate>Thu, 06 Jul 2006 10:45:25 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/active-directory-group-membership_topic20554_post110227.html#110227</guid>
  </item> 
  <item>
   <title><![CDATA[Active Directory Group Membership : Hmm, ok that&amp;#039;s what I&amp;#039;m...]]></title>
   <link>https://forums.webwiz.net/active-directory-group-membership_topic20554_post110223.html#110223</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=24279">kastigeer</a><br /><strong>Subject:</strong> 20554<br /><strong>Posted:</strong> 06&nbsp;July&nbsp;2006 at 9:54am<br /><br /><P>Hmm, ok that's what I'm doing and the option for Admin and Moderator functions is definitely not there.</P><DIV>I think I should try a fresh install of the forums and then turn on authentication and see if anything is different (not that I've really made any changes to anything yet)</DIV><DIV>&nbsp;</DIV><DIV>thanks</DIV><DIV>Barry</DIV>]]>
   </description>
   <pubDate>Thu, 06 Jul 2006 09:54:55 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/active-directory-group-membership_topic20554_post110223.html#110223</guid>
  </item> 
 </channel>
</rss>