<?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>Active Directory | TekCookie</title>
	<atom:link href="https://tekcookie.com/category/active-directory/feed/" rel="self" type="application/rss+xml" />
	<link>https://tekcookie.com</link>
	<description>Everything about IT</description>
	<lastBuildDate>Wed, 16 Jun 2021 14:36:55 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://i0.wp.com/tekcookie.com/wp-content/uploads/2021/06/cropped-TekCookie-211.png?fit=32%2C17&#038;ssl=1</url>
	<title>Active Directory | TekCookie</title>
	<link>https://tekcookie.com</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">174510684</site>	<item>
		<title>Bulk move AD User and Computer Objects</title>
		<link>https://tekcookie.com/bulk-move-ad-user-and-computer-objects/</link>
					<comments>https://tekcookie.com/bulk-move-ad-user-and-computer-objects/#respond</comments>
		
		<dc:creator><![CDATA[jeffythampi]]></dc:creator>
		<pubDate>Sat, 01 Feb 2020 06:44:16 +0000</pubDate>
				<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Bulk move AD User and Computer Objects]]></category>
		<category><![CDATA[move AD User and Computer Objects]]></category>
		<category><![CDATA[move AD Users and Computers]]></category>
		<guid isPermaLink="false">https://adminscripter.wordpress.com/?p=304</guid>

					<description><![CDATA[In one of my previous post, we have seen how to recreate OU structure for the purpose of migrating the clients. https://tekcookie.com/create-active-directory-ou/ Now the task is to move some of the users and computers in the old OU to the new one. The only difference among the old and new OU tree is that the [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>In one of my previous post, we have seen how to recreate OU structure for the purpose of migrating the clients.  <a href="https://tekcookie.com/create-active-directory-ou/">https://tekcookie.com/create-active-directory-ou/</a> </p>



<p>Now the task is to move some of the users and computers in the old OU to the new one. The only difference among the old and new OU tree is that the root OU name is different.</p>



<p>The below script reads the OU information from the objects and modify the DistinguishedName and move the objects to the respective new OU. The new OU has got only its root name modified, rest all of the tree remain same as old.</p>



<p>Old OU : domainname.local/DepartmentOU/*</p>



<p>New OU : domainname.local/DepartmentOU_new/*</p>



<pre class="wp-block-code"><code lang="bash" class="language-bash">domainname.local
 |_ DepartmentOU                            ------- OLD OU
   |_ SubDepartmentOU1
     |_ SubDepartmentOU1_USB
     |_ SubDepartmentOU1_Floppy
   |_ SubDepartmentOU2
     |_ SubDepartmentOU2_USB
   |_ SubDepartmentOU3
 |_ DepartmentOU_new                        -------- NEW OU
   |_ SubDepartmentOU1
     |_ SubDepartmentOU1_USB
     |_ SubDepartmentOU1_Floppy
   |_ SubDepartmentOU2
     |_ SubDepartmentOU2_USB
   |_ SubDepartmentOU3 </code></pre>



<pre class="wp-block-code"><code lang="powershell" class="language-powershell">#List of Users
 $Users = Get-Content D:\Test\Movement\Users.txt
#List of Computers
 $Computers = Get-Content D:\Test\Movement\Computers.txt
 foreach($User in $Users)
 {
     $userInfo = Get-ADUser -Identity $User
     $Detected_OU = $userInfo.DistinguishedName.Split(",")[-3].replace("OU=","")
     $targetOU = $userInfo.DistinguishedName.Substring($userInfo.DistinguishedName.IndexOf(',') + 1, $userInfo.DistinguishedName.Length - $userInfo.DistinguishedName.IndexOf(',') - 1)
     $targetOU = $targetOU.Replace($Detected_OU,"$($Detected_new)_10")
 <code>"Moved: " + $userInfo.DistinguishedName Move-ADObject -Identity $userInfo.DistinguishedName -TargetPath $targetOU</code>
 }
 foreach($Computer in $Computers)
 {
     $ComputerInfo = Get-ADComputer -Identity $Computer
     $Detected_OU = $ComputerInfo.DistinguishedName.Split(",")[-3].replace("OU=","")
     $targetOU = $ComputerInfo.DistinguishedName.Substring($ComputerInfo.DistinguishedName.IndexOf(',') + 1, $ComputerInfo.DistinguishedName.Length - $ComputerInfo.DistinguishedName.IndexOf(',') - 1)
     $targetOU = $targetOU.Replace($Detected_OU,"$($Detected_OU)_new")
 <code>"Moved: " + $ComputerInfo.DistinguishedName Move-ADObject -Identity $ComputerInfo.DistinguishedName -TargetPath $targetOU</code>
 }</code></pre>



<div style="height:70px" aria-hidden="true" class="wp-block-spacer"></div>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow"><p>Thank you for reading my post. Hope this is helpful to you</p></blockquote>
]]></content:encoded>
					
					<wfw:commentRss>https://tekcookie.com/bulk-move-ad-user-and-computer-objects/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">304</post-id>	</item>
		<item>
		<title>Group Policy Objects Report</title>
		<link>https://tekcookie.com/group-policy-objects-report/</link>
					<comments>https://tekcookie.com/group-policy-objects-report/#respond</comments>
		
		<dc:creator><![CDATA[jeffythampi]]></dc:creator>
		<pubDate>Mon, 27 Jan 2020 10:40:17 +0000</pubDate>
				<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[GPO link report]]></category>
		<category><![CDATA[Group Policy Objects Report]]></category>
		<guid isPermaLink="false">https://adminscripter.wordpress.com/?p=300</guid>

					<description><![CDATA[The below written script gives you information of all GPO&#8217;s linked to OU&#8217;s in your domain. Thank you for reading my post and hope it is helpful to you.]]></description>
										<content:encoded><![CDATA[
<p>The below written script gives you information of all GPO&#8217;s linked to OU&#8217;s in your domain.</p>



<pre class="wp-block-code"><code lang="powershell" class="language-powershell line-numbers">Get list of all OU's under the domain
 $OUs = Get-ADOrganizationalUnit -Filter * -SearchBase "OU=OUName,DC=domain,DC=local" -Properties *
 Variable Declaration
 $__FinalGPOList = @()
 Loop through each OU and get the linked GPO
 foreach($OU in $OUs)
 {
     $__GPOLink = @{}
     $__OUGPInheritance = Get-GPInheritance -Target $ou.DistinguishedName 
     $__GPOLink = $__OUGPInheritance | <code>         select -ExpandProperty GpoLinks |</code>
         select @{Name = "GPOName"; Expression = {$_.DisplayName}}, @{Name = "OU_DN"; Expression = {$_.Target}}, Order, Enabled
 Along with the GPO name, OU Distinguished Name, Link Order and Enabled status, below code gives details
 of OU canonical name and OU inheritance details.
 <code>$__GPOLink | % { $_ | Add-Member -MemberType NoteProperty -Name OU -Value $OU.CanonicalName } $__GPOLink | % { $_ | Add-Member -MemberType NoteProperty -Name InheritanceBlocked -Value $__OUGPInheritance.GpoInheritanceBlocked } $__GPOLink $__FinalGPOList += $__GPOLink</code>
 }
 $__FinalGPOList | select OU, GPOName, Order, InheritanceBlocked, Enabled | Export-Csv C:\Users\admin\Desktop\gpo.csv -NoTypeInformation</code></pre>



<div style="height:70px" aria-hidden="true" class="wp-block-spacer"></div>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow"><p>Thank you for reading my post and hope it is helpful to you.</p></blockquote>
]]></content:encoded>
					
					<wfw:commentRss>https://tekcookie.com/group-policy-objects-report/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">300</post-id>	</item>
		<item>
		<title>Create Active Directory OU using PowerShell</title>
		<link>https://tekcookie.com/create-active-directory-ou/</link>
					<comments>https://tekcookie.com/create-active-directory-ou/#respond</comments>
		
		<dc:creator><![CDATA[jeffythampi]]></dc:creator>
		<pubDate>Wed, 08 Jan 2020 10:06:44 +0000</pubDate>
				<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Active Directory OU]]></category>
		<category><![CDATA[Create Active Directory OU]]></category>
		<category><![CDATA[Create Active Directory OU using PowerShell]]></category>
		<category><![CDATA[Organizational Unit]]></category>
		<guid isPermaLink="false">https://adminscripter.wordpress.com/?p=282</guid>

					<description><![CDATA[This script demonstrates how to recreate Organizational Unit structure from existing OU&#8217;s in AD Suppose we have the below OU in AD domain domainname.local &#124;_ DepartmentOU &#124;_ SubDepartmentOU1 &#124;_ SubDepartmentOU1_USB &#124;_ SubDepartmentOU1_Floppy &#124;_ SubDepartmentOU2 &#124;_ SubDepartmentOU2_USB &#124;_ SubDepartmentOU3 DepartmentOU branch need to be duplicated with different name DepartmentOU_new domainname.local &#124;_ DepartmentOU &#124;_ SubDepartmentOU1 &#124;_ SubDepartmentOU1_USB [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>This script demonstrates how to recreate Organizational Unit structure from existing OU&#8217;s in AD</p>



<p>Suppose we have the below OU in AD domain</p>



<pre class="wp-block-preformatted"> domainname.local
 |_  DepartmentOU
   |_ SubDepartmentOU1
     |_ SubDepartmentOU1_USB
     |_ SubDepartmentOU1_Floppy
   |_ SubDepartmentOU2
     |_ SubDepartmentOU2_USB
   |_ SubDepartmentOU3 </pre>



<p>DepartmentOU branch need to be duplicated with different name DepartmentOU_new</p>



<pre class="wp-block-preformatted"> domainname.local
 |_ DepartmentOU
   |_ SubDepartmentOU1
     |_ SubDepartmentOU1_USB
     |_ SubDepartmentOU1_Floppy
   |_ SubDepartmentOU2
     |_ SubDepartmentOU2_USB
   |_ SubDepartmentOU3
 |_ DepartmentOU_new
   |_ SubDepartmentOU1
     |_ SubDepartmentOU1_USB
     |_ SubDepartmentOU1_Floppy
   |_ SubDepartmentOU2
     |_ SubDepartmentOU2_USB
   |_ SubDepartmentOU3 </pre>



<p>It can be done with the below script</p>



<pre class="wp-block-code"><code lang="powershell" class="language-powershell line-numbers">$rootOUName = "DepartmentOU_new"
 $newRootDN = "OU=DepartmentOU_new,DC=domainname,DC=local"
 $oldRootDN = "OU=DepartmentOU,DC=domainname,DC=local"
 $rootOU_ParentDN = "DC=domainname,DC=local"
 We are reading the canonical name just as a place holder to keep the parent OU of the object
 $old_ChildOUs = Get-ADOrganizationalUnit -Filter * -Properties * <code> | where {$_.DistinguishedName -like "*$oldRootDN" -and $_.DistinguishedName -ne "$oldRootDN" }</code>
     | select Name, CanonicalName, DistinguishedName, Description
 To fetch the description form the existing root ou
 $oldRootDN_temp = Get-ADOrganizationalUnit -Filter * -Properties * <code> | where {$_.DistinguishedName -eq "$oldRootDN" }</code>
     | select Name, DistinguishedName, Description
 For each sub OU, the root has to be renamed to the desired name and base path has to be made
 $count = 0
 foreach($ou in $old_ChildOUs) {
     #renaming the OU with new name
     $ou.DistinguishedName = $ou.DistinguishedName.Replace($oldRootDN, $newRootDN)
 <code>#building the base OU for each child OU #we split the DN with comma "," and rejoin the array from 2nd location to the last and save it into the same objects canonical name property $rootOU = ($ou.DistinguishedName.Split(",")) $rootOU = $rootOU[1..$rootOU.length] -join "," $old_ChildOUs[$count].CanonicalName = $rootOU $old_ChildOUs[$count].DistinguishedName = $ou.DistinguishedName $count++</code>
 }
 Creating the parent OU
 New-ADOrganizationalUnit -Name $rootOUName -Path $rootOU_ParentDN -Description $oldRootDN_temp.Description
 "Created parent ou : " + $rootOUName + " under " + $rootOU_ParentDN
 creating all child OU's
 foreach($__newOU in $old_ChildOUs){
     New-ADOrganizationalUnit -Name $__newOU.Name -Path $__newOU.CanonicalName -Description $__newOU.Description
     "Created ou : " + $__newOU.Name + " under " + $__newOU.CanonicalName
 }</code></pre>



<p>The script will generate the OU structure with default security permission inherited from the root.</p>



<div style="height:70px" aria-hidden="true" class="wp-block-spacer"></div>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow"><p>Thank you reading my post. Hope this is helpful to you.</p></blockquote>
]]></content:encoded>
					
					<wfw:commentRss>https://tekcookie.com/create-active-directory-ou/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">282</post-id>	</item>
		<item>
		<title>Group Policy Objects &#8211; Backup &#038; Restore</title>
		<link>https://tekcookie.com/group-policy-objects-backup-restore/</link>
					<comments>https://tekcookie.com/group-policy-objects-backup-restore/#respond</comments>
		
		<dc:creator><![CDATA[jeffythampi]]></dc:creator>
		<pubDate>Tue, 03 Dec 2019 12:44:16 +0000</pubDate>
				<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[AD GPO]]></category>
		<category><![CDATA[Backup and Restore Group Policy Objects]]></category>
		<category><![CDATA[GPO]]></category>
		<category><![CDATA[GPO backup]]></category>
		<category><![CDATA[GPO Restore]]></category>
		<category><![CDATA[Group Policy]]></category>
		<guid isPermaLink="false">https://adminscripter.wordpress.com/?p=227</guid>

					<description><![CDATA[Backup and Restore Group Policy Objects In this post, We will see how to backup and restore Group Policy objects and to Export and import the GPO settings to other domains. Backup Group Policy Objects Suppose we have created couple of GPO for Windows 10 clients with the name Win10_GPO We are exporting the GPO [&#8230;]]]></description>
										<content:encoded><![CDATA[
<h1 class="wp-block-heading">Backup and Restore Group Policy Objects</h1>



<p>In this post, We will see how to backup and restore Group Policy objects and to Export and import the GPO settings to other domains.</p>



<h3 class="wp-block-heading">Backup Group Policy Objects</h3>



<p>Suppose we have created couple of GPO for Windows 10 clients with the name Win10_GPO</p>



<pre class="wp-block-code"><code lang="powershell" class="language-powershell">#Search All GPO with name starting with Win10
$newGPOs = Get-GPO -All | where {$_.DisplayName -like "Win10*"} | Select DisplayName
#Backup All the GPO
$newGPOs | % { 
    #Backup GPO to a location
    $output = Backup-GPO -Name $_.DisplayName -Path D:\OU 
    #Write GPO file GUID and name to a CSV file
    $output | select DisplayName, Id | export-csv D:\OU\GPO_OBJ.csv -Append
}
</code></pre>



<p>We are exporting the GPO name and file GUID to a CSV, which is used while importing GPO</p>



<h3 class="wp-block-heading">Restore Group Policy Objects</h3>



<pre class="wp-block-code"><code lang="powershell" class="language-powershell">$csvData = import-csv "D:\OU\GPO_OBJ.csv"
foreach($GPOdetails in $csvData) {
    #Importing GPO from location
    Import-GPO -BackupId $GPOdetails.Id -Path D:\OU -TargetName $GPOdetails.DisplayName -CreateIfNeeded
}</code></pre>



<p>All your GPO is back.</p>



<p>We can use this to create policy in one domain and export to other domains. It saves time.</p>



<div style="height:70px" aria-hidden="true" class="wp-block-spacer"></div>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow"><p>Thank you for reading my post. Hope this is helpful to you.</p></blockquote>



<p></p>
]]></content:encoded>
					
					<wfw:commentRss>https://tekcookie.com/group-policy-objects-backup-restore/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">227</post-id>	</item>
		<item>
		<title>Active Directory Objects &#8211; ACL Report</title>
		<link>https://tekcookie.com/active-directory-objects-acl-reports/</link>
					<comments>https://tekcookie.com/active-directory-objects-acl-reports/#respond</comments>
		
		<dc:creator><![CDATA[jeffythampi]]></dc:creator>
		<pubDate>Wed, 11 Sep 2019 07:21:26 +0000</pubDate>
				<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Active Directory Objects - ACL Reports]]></category>
		<category><![CDATA[AD ACL]]></category>
		<category><![CDATA[AD computer object creator info]]></category>
		<guid isPermaLink="false">https://adminscripter.wordpress.com/?p=206</guid>

					<description><![CDATA[For any technology, when it is managed by many admins or teams for management/routine jobs. Getting track of routine tasks is very important. Use case: Active Directory has many PC/Server objects lying in the computers container/OU. The creators are not informing the admins to move the same to respective OU&#8217;s. We need to find a [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>For any technology, when it is managed by many admins or teams for management/routine jobs. Getting track of routine tasks is very important.</p>



<p>Use case: Active Directory has many PC/Server objects lying in the computers container/OU. The creators are not informing the admins to move the same to respective OU&#8217;s. We need to find a way to know who has created these objects.</p>



<p>I have written a small script which will help to identify these objects and its creators.</p>



<pre class="wp-block-code"><code lang="powershell" class="language-powershell line-numbers">#Creating an array to store the details
$ADObjectList = @()

Get-ADComputer -SearchBase "CN=Computers,DC=domain,DC=local" -Filter * -Properties * | % {
    #Custom PS object to store the information
    $ADObj = [pscustomobject]@{
    HostName = $_.Name
    Owner = (Get-Acl -Path "AD:$($_.DistinguishedName)").Owner
    CreatedDate = $_.whenCreated
    }
#Adding the custom object to the list
$ADObjectList += $ADObj
}

#Now we have Output which can be filtered as required
$ADObjectList | where {$_.Owner -like "*username*"} | ft *</code></pre>



<p>Note: when objects are created, the security information has a property &#8220;owner&#8221; which will have the information about the creator. But there are certain situations where the owner information is overwritten, in such cases the above script will not give correct information.</p>



<div style="height:70px" aria-hidden="true" class="wp-block-spacer"></div>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow"><p>The same script can be used to get other ACL information of the objects.</p></blockquote>



<p>Thank you for reading my post.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://tekcookie.com/active-directory-objects-acl-reports/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">206</post-id>	</item>
		<item>
		<title>Quick Search AD for User/Computer Objects</title>
		<link>https://tekcookie.com/quick-search-ad-for-user-computer-objects/</link>
					<comments>https://tekcookie.com/quick-search-ad-for-user-computer-objects/#respond</comments>
		
		<dc:creator><![CDATA[jeffythampi]]></dc:creator>
		<pubDate>Tue, 18 Jun 2019 10:29:20 +0000</pubDate>
				<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[disabled computers]]></category>
		<category><![CDATA[locked out users]]></category>
		<category><![CDATA[search ad]]></category>
		<category><![CDATA[search ad with powershell]]></category>
		<guid isPermaLink="false">https://adminscripter.wordpress.com/?p=78</guid>

					<description><![CDATA[Find disabled computer objects Find disabled users in AD Find users with account locked out Find InActive accounts]]></description>
										<content:encoded><![CDATA[
<p>Find disabled computer objects</p>



<pre class="wp-block-code"><code lang="powershell" class="language-powershell">Search-ADAccount -AccountDisabled -ComputersOnly</code></pre>



<p>Find disabled users in AD</p>



<pre class="wp-block-code"><code lang="powershell" class="language-powershell">Search-ADAccount -UsersOnly -AccountDisabled</code></pre>



<p>Find users with account locked out</p>



<pre class="wp-block-code"><code lang="powershell" class="language-powershell">Search-ADAccount -LockedOut</code></pre>



<p>Find InActive accounts</p>



<pre class="wp-block-code"><code lang="powershell" class="language-powershell">Search-ADAccount -AccountInactive</code></pre>
]]></content:encoded>
					
					<wfw:commentRss>https://tekcookie.com/quick-search-ad-for-user-computer-objects/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">78</post-id>	</item>
		<item>
		<title>SID to User with Active Directory PowerShell</title>
		<link>https://tekcookie.com/sid-to-user-with-active-directory-powershell/</link>
					<comments>https://tekcookie.com/sid-to-user-with-active-directory-powershell/#respond</comments>
		
		<dc:creator><![CDATA[jeffythampi]]></dc:creator>
		<pubDate>Tue, 18 Jun 2019 10:12:10 +0000</pubDate>
				<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[PowerShell SID to User]]></category>
		<category><![CDATA[SID to User]]></category>
		<category><![CDATA[SID to User with PowerShell]]></category>
		<guid isPermaLink="false">https://adminscripter.wordpress.com/?p=71</guid>

					<description><![CDATA[Finding user details with SID is lengthy with .Net or with vbScript. Wow to Powershell with AD Module. The same with .Net framework]]></description>
										<content:encoded><![CDATA[
<p>Finding user details with SID is lengthy with .Net or with vbScript. Wow to Powershell with AD Module.</p>



<pre class="wp-block-code"><code lang="powershell" class="language-powershell">Import-Module ActiveDirectory
Get-ADUser "S-1-5-21-1757981266-130045698-682003330-37842"
</code></pre>



<p>The same with .Net framework</p>



<pre class="wp-block-code"><code lang="powershell" class="language-powershell">$SID = Read-Host -Prompt "Enter SID: "
$objSID = New-Object System.Security.Principal.SecurityIdentifier($SID) 
$objUser = $objSID.Translate([System.Security.Principal.NTAccount]) 
$objUser.Value</code></pre>
]]></content:encoded>
					
					<wfw:commentRss>https://tekcookie.com/sid-to-user-with-active-directory-powershell/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">71</post-id>	</item>
	</channel>
</rss>
