<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>mylifeinaminute.com &#187; Active Directory</title>
	<atom:link href="http://www.mylifeinaminute.com/tag/active-directory/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mylifeinaminute.com</link>
	<description>You can learn a lot in a minute</description>
	<lastBuildDate>Wed, 18 Jan 2012 02:33:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Filtering Inactive User Profiles From an SSP</title>
		<link>http://www.mylifeinaminute.com/2008/12/16/filtering-inactive-user-profiles-from-an-ssp/</link>
		<comments>http://www.mylifeinaminute.com/2008/12/16/filtering-inactive-user-profiles-from-an-ssp/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 16:15:42 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[Sharepoint Server]]></category>
		<category><![CDATA[Windows SharePoint Services]]></category>
		<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[moss 2007]]></category>
		<category><![CDATA[Shared Services Provider]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint Profile Management]]></category>
		<category><![CDATA[SharePoint User Management]]></category>
		<category><![CDATA[SSP]]></category>

		<guid isPermaLink="false">http://www.mylifeinaminute.com/?p=244</guid>
		<description><![CDATA[To filter inactive Active Directory users from a Share Services Provider, an updated &#8220;User Filter&#8221; is required. The following filter: will automatically skip over inactive domain accounts when profile imports are occurring.]]></description>
			<content:encoded><![CDATA[<p>To filter inactive Active Directory users from a Share Services Provider, an updated &#8220;User Filter&#8221; is required.  The following filter:</p>
<pre>
<pre class="brush: sql; title: ; notranslate">
(&amp;(objectCategory=Person)(objectClass=User)(!(userAccountControl:1.2.840.113556.1.4.803:=2)))
</pre>
</pre>
<p>
will automatically skip over inactive domain accounts when profile imports are occurring.</p>
<p><map name='google_ad_map_244_0feb153b14d1a0fb'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/244?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_244_0feb153b14d1a0fb' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=244&amp;url= http%3A%2F%2Fwww.mylifeinaminute.com%2F2008%2F12%2F16%2Ffiltering-inactive-user-profiles-from-an-ssp%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://www.mylifeinaminute.com/2008/12/16/filtering-inactive-user-profiles-from-an-ssp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using DSQUERY to find distinguished names in Active Directory</title>
		<link>http://www.mylifeinaminute.com/2008/11/20/using-dsquery-to-find-distinguished-names-in-active-directory/</link>
		<comments>http://www.mylifeinaminute.com/2008/11/20/using-dsquery-to-find-distinguished-names-in-active-directory/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 18:54:04 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[TechNet]]></category>
		<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[dsquery]]></category>

		<guid isPermaLink="false">http://www.mylifeinaminute.com/?p=186</guid>
		<description><![CDATA[If you ever need to find the distinguished name of a user in Active Directory, you can use the following DSQUERY command. The above command will output all of the active users in the current login name to a text file called activeUsers.txt in the root of the C: drive.]]></description>
			<content:encoded><![CDATA[<p>If you ever need to find the distinguished name of a user in Active Directory, you can use the following <strong><a title="DSQUERY" href="http://technet.microsoft.com/en-us/library/cc732952.aspx">DSQUERY</a></strong> command.</p>
<pre>
<pre class="brush: sql; title: ; notranslate">
DSQUERY.exe * -limit 0 -filter &quot;(&amp;(objectCategory=Person)(objectClass=User)(!userAccountControl:1.2.840.113556.1.4.803:=2))&quot; &gt; &quot;c:\activeUsers.txt&quot;
</pre>
</pre>
<p>The above command will output all of the active users in the current login name to a text file called <strong>activeUsers.txt</strong> in the root of the <strong>C:</strong> drive.</p>
<p><map name='google_ad_map_186_0feb153b14d1a0fb'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/186?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_186_0feb153b14d1a0fb' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=186&amp;url= http%3A%2F%2Fwww.mylifeinaminute.com%2F2008%2F11%2F20%2Fusing-dsquery-to-find-distinguished-names-in-active-directory%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://www.mylifeinaminute.com/2008/11/20/using-dsquery-to-find-distinguished-names-in-active-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Served from: www.mylifeinaminute.com @ 2012-02-07 15:35:38 by W3 Total Cache -->
