<?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>PowerShell.nu &#187; Server Core</title>
	<atom:link href="http://www.powershell.nu/tag/server-core/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.powershell.nu</link>
	<description>Windows PowerShell</description>
	<lastBuildDate>Thu, 08 Dec 2011 14:46:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Searching through Active-Directory on Windows 2008 Server Core R2</title>
		<link>http://www.powershell.nu/2009/01/17/searching-through-active-directory-on-windows-2008-server-core-r2/</link>
		<comments>http://www.powershell.nu/2009/01/17/searching-through-active-directory-on-windows-2008-server-core-r2/#comments</comments>
		<pubDate>Sat, 17 Jan 2009 16:01:09 +0000</pubDate>
		<dc:creator>Niklas Goude</dc:creator>
				<category><![CDATA[Active-Directory]]></category>
		<category><![CDATA[Server Core]]></category>

		<guid isPermaLink="false">http://www.powershell.nu/?p=350</guid>
		<description><![CDATA[Searching through Active-Directory can be done using the DirectorySearcher. First we need to connect to Active-Directory. PS > $Connection = "LDAP://Server1/DC=APA,DC=CORP" PS > $AD = [adsi] $Connection We then create a new object containing the Searcher. PS > $Searcher = New-Object System.DirectoryServices.DirectorySearcher $AD In order to search through Active-Directory we have to specify a filter [...]]]></description>
		<wfw:commentRss>http://www.powershell.nu/2009/01/17/searching-through-active-directory-on-windows-2008-server-core-r2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Adding User To Group in Active-Directory on Windows 2008 Server Core R2</title>
		<link>http://www.powershell.nu/2009/01/17/adding-user-to-group-in-active-directory-on-windows-2008-server-core-r2/</link>
		<comments>http://www.powershell.nu/2009/01/17/adding-user-to-group-in-active-directory-on-windows-2008-server-core-r2/#comments</comments>
		<pubDate>Sat, 17 Jan 2009 15:59:46 +0000</pubDate>
		<dc:creator>Niklas Goude</dc:creator>
				<category><![CDATA[Active-Directory]]></category>
		<category><![CDATA[Server Core]]></category>

		<guid isPermaLink="false">http://www.powershell.nu/?p=347</guid>
		<description><![CDATA[To add our new User to our Group, the add() method is used as shown below. PS > $Connection = "LDAP://Server1/CN=NewGroup,OU=NewOU,DC=APA,DC=CORP" PS > $Group = [adsi] $Connection PS > $User = "LDAP://Server1/CN=jeapic,OU=NewOU,DC=APA,DC=CORP" PS > $Group.Add($User) If we look at the memebers of the group, our user will be added. PS > $Group.member CN=jeapic,OU=NewOU,DC=APA,DC=CORP In the [...]]]></description>
		<wfw:commentRss>http://www.powershell.nu/2009/01/17/adding-user-to-group-in-active-directory-on-windows-2008-server-core-r2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a User in Active-Directory on Windows 2008 Server Core R2</title>
		<link>http://www.powershell.nu/2009/01/17/creating-a-user-in-active-directory-on-windows-2008-server-core-r2/</link>
		<comments>http://www.powershell.nu/2009/01/17/creating-a-user-in-active-directory-on-windows-2008-server-core-r2/#comments</comments>
		<pubDate>Sat, 17 Jan 2009 15:55:27 +0000</pubDate>
		<dc:creator>Niklas Goude</dc:creator>
				<category><![CDATA[Active-Directory]]></category>
		<category><![CDATA[Server Core]]></category>

		<guid isPermaLink="false">http://www.powershell.nu/?p=343</guid>
		<description><![CDATA[Creating a user is basically the same as creating a Group or an OU. First we cast the OU we want to use into a [adsi] object and then start setting the properties. After adding all properties we set a password and set Disabled to false, otherwise the account will be disabled. PS > $Connection [...]]]></description>
		<wfw:commentRss>http://www.powershell.nu/2009/01/17/creating-a-user-in-active-directory-on-windows-2008-server-core-r2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a Group in Active-Directory on Windows 2008 Server Core R2</title>
		<link>http://www.powershell.nu/2009/01/17/creating-a-group-in-active-directory-on-server-core/</link>
		<comments>http://www.powershell.nu/2009/01/17/creating-a-group-in-active-directory-on-server-core/#comments</comments>
		<pubDate>Sat, 17 Jan 2009 01:09:36 +0000</pubDate>
		<dc:creator>Niklas Goude</dc:creator>
				<category><![CDATA[Active-Directory]]></category>
		<category><![CDATA[Server Core]]></category>

		<guid isPermaLink="false">http://www.powershell.nu/?p=332</guid>
		<description><![CDATA[We can create Groups in Active-Directory through PowerShell. Step one is to make a connection to the OU where you want to place your Group. In this example I’ll use the OU that i created in a previous post. PS > $Connection = "LDAP://OU=NewOU,DC=BPA,DC=CORP" PS > $OU = [adsi] $Connection PS > $OU distinguishedName : [...]]]></description>
		<wfw:commentRss>http://www.powershell.nu/2009/01/17/creating-a-group-in-active-directory-on-server-core/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating an OU in Active-Directory on Windows 2008 Server Core R2</title>
		<link>http://www.powershell.nu/2009/01/17/creating-an-ou-in-active-directory-on-a-server-core/</link>
		<comments>http://www.powershell.nu/2009/01/17/creating-an-ou-in-active-directory-on-a-server-core/#comments</comments>
		<pubDate>Sat, 17 Jan 2009 00:53:27 +0000</pubDate>
		<dc:creator>Niklas Goude</dc:creator>
				<category><![CDATA[Active-Directory]]></category>
		<category><![CDATA[Server Core]]></category>

		<guid isPermaLink="false">http://www.powershell.nu/?p=327</guid>
		<description><![CDATA[When creating Organizational-Units through PowerShell, we can use the Create() method. First we need to connect to the place where we want to create it. In this example I’m going to create an OU in the top level of my domain. If you want to create further down in the structure, simply connect to the [...]]]></description>
		<wfw:commentRss>http://www.powershell.nu/2009/01/17/creating-an-ou-in-active-directory-on-a-server-core/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Connecting to Active-Directory on Windows 2008 Server Core R2</title>
		<link>http://www.powershell.nu/2009/01/17/connecting-to-active-directory-on-server-core/</link>
		<comments>http://www.powershell.nu/2009/01/17/connecting-to-active-directory-on-server-core/#comments</comments>
		<pubDate>Sat, 17 Jan 2009 00:43:56 +0000</pubDate>
		<dc:creator>Niklas Goude</dc:creator>
				<category><![CDATA[Active-Directory]]></category>
		<category><![CDATA[Server Core]]></category>

		<guid isPermaLink="false">http://www.powershell.nu/?p=324</guid>
		<description><![CDATA[PowerShell doesn’t have any built in CmdLet for working with Active-Directory. Quest has put togheter a couple of real nice Active-Directory CmdLets that automate Active-Directory tasks. Anyway, I’m going to do a couple of posts on managing Active-Directory on a Server Core, through the DirectoryEntryAdapter. First off, let’s take a quick look at my dev [...]]]></description>
		<wfw:commentRss>http://www.powershell.nu/2009/01/17/connecting-to-active-directory-on-server-core/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Installing Active-Directory on Windows 2008 Server Core R2</title>
		<link>http://www.powershell.nu/2009/01/17/installing-active-directory-on-windows-2008-server-core/</link>
		<comments>http://www.powershell.nu/2009/01/17/installing-active-directory-on-windows-2008-server-core/#comments</comments>
		<pubDate>Sat, 17 Jan 2009 00:12:04 +0000</pubDate>
		<dc:creator>Niklas Goude</dc:creator>
				<category><![CDATA[Active-Directory]]></category>
		<category><![CDATA[Server Core]]></category>

		<guid isPermaLink="false">http://www.powershell.nu/?p=316</guid>
		<description><![CDATA[Server Core is a scaled back installation of Windows Server 2008 where no Windows Explorer is installed. The configuration is done entirly through the Command-Line interface, or by connecting remote using MMC. All examples regarding Server Core will be done using the Windows Server 2008 R2 Beta edition, available at MSDN. Starting off, since this [...]]]></description>
		<wfw:commentRss>http://www.powershell.nu/2009/01/17/installing-active-directory-on-windows-2008-server-core/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

