<?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>Kenneth Dalbjerg &#187; exchange 2007</title>
	<atom:link href="http://kennethdalbjerg.dk/tag/exchange-2007/feed" rel="self" type="application/rss+xml" />
	<link>http://kennethdalbjerg.dk</link>
	<description>Kenneth Qvistgaard Dalbjerg, IT Konsulent i århus</description>
	<lastBuildDate>Fri, 03 Feb 2012 22:41:17 +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>Get all mailboxes that have this domain in there primary email address</title>
		<link>http://kennethdalbjerg.dk/2011/05/11/get-all-mailboxes-that-have-this-domain-in-there-primary-email-address</link>
		<comments>http://kennethdalbjerg.dk/2011/05/11/get-all-mailboxes-that-have-this-domain-in-there-primary-email-address#comments</comments>
		<pubDate>Wed, 11 May 2011 09:38:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Exchange]]></category>
		<category><![CDATA[exchange]]></category>
		<category><![CDATA[exchange 2007]]></category>
		<category><![CDATA[exchange 2010]]></category>

		<guid isPermaLink="false">http://kennethdalbjerg.dk/?p=871</guid>
		<description><![CDATA[GET-MAILBOX * &#124; where { $_.PrimarySMTPAddress.Domain -eq &#8216;kennethdalbjerg.dk&#8217; }]]></description>
		<wfw:commentRss>http://kennethdalbjerg.dk/2011/05/11/get-all-mailboxes-that-have-this-domain-in-there-primary-email-address/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Give all users access to all mailbox calendar</title>
		<link>http://kennethdalbjerg.dk/2011/02/14/give-all-users-access-to-all-mailbox-calendar</link>
		<comments>http://kennethdalbjerg.dk/2011/02/14/give-all-users-access-to-all-mailbox-calendar#comments</comments>
		<pubDate>Mon, 14 Feb 2011 14:43:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[calendar]]></category>
		<category><![CDATA[exchange]]></category>
		<category><![CDATA[exchange 2007]]></category>
		<category><![CDATA[exchange 2010]]></category>
		<category><![CDATA[outlook]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[share]]></category>

		<guid isPermaLink="false">http://kennethdalbjerg.dk/?p=853</guid>
		<description><![CDATA[foreach ($Mailbox in (Get-Mailbox -ResultSize Unlimited)) { Add-MailboxFolderPermission -identity &#8220;$($Mailbox.Name):\calendar&#8221; -AccessRights Author -User default }]]></description>
		<wfw:commentRss>http://kennethdalbjerg.dk/2011/02/14/give-all-users-access-to-all-mailbox-calendar/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Powershell &#8211; Export user/mailboxes to CSV file</title>
		<link>http://kennethdalbjerg.dk/2011/01/27/powershell-export-usermailboxes-to-csv-file</link>
		<comments>http://kennethdalbjerg.dk/2011/01/27/powershell-export-usermailboxes-to-csv-file#comments</comments>
		<pubDate>Thu, 27 Jan 2011 09:23:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Powershell]]></category>
		<category><![CDATA[exchange]]></category>
		<category><![CDATA[exchange 2007]]></category>
		<category><![CDATA[exchange 2010]]></category>
		<category><![CDATA[export]]></category>
		<category><![CDATA[powershell]]></category>

		<guid isPermaLink="false">http://kennethdalbjerg.dk/?p=833</guid>
		<description><![CDATA[get-mailbox &#124; select name, alias, samaccountname, RecipientType, RecipientTypeDetails, displayname &#124; export-csv C:\ITA\usersexport.csv -encoding unicode]]></description>
		<wfw:commentRss>http://kennethdalbjerg.dk/2011/01/27/powershell-export-usermailboxes-to-csv-file/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Powershell &#8211; Import users from CSV file</title>
		<link>http://kennethdalbjerg.dk/2011/01/27/powershell-import-users-from-csv-file</link>
		<comments>http://kennethdalbjerg.dk/2011/01/27/powershell-import-users-from-csv-file#comments</comments>
		<pubDate>Thu, 27 Jan 2011 09:18:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Powershell]]></category>
		<category><![CDATA[exchange]]></category>
		<category><![CDATA[exchange 2007]]></category>
		<category><![CDATA[exchange 2010]]></category>
		<category><![CDATA[powershell]]></category>

		<guid isPermaLink="false">http://kennethdalbjerg.dk/?p=830</guid>
		<description><![CDATA[import-csv user.csv &#124; foreach-object { echo $_.Displayname New-Mailbox -name ( $_.Name)` -Alias $_.Alias` -SamAccountName $_.SamAccountName` -RecipientType $_.RecipientType` -RecipientTypeDetails $_.RecipientTypeDetails` -Displayname $_.Displayname` }]]></description>
		<wfw:commentRss>http://kennethdalbjerg.dk/2011/01/27/powershell-import-users-from-csv-file/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Powershell &#8211; Show all users in DistributionGroup</title>
		<link>http://kennethdalbjerg.dk/2011/01/27/powershell-show-all-users-in-distributiongroup</link>
		<comments>http://kennethdalbjerg.dk/2011/01/27/powershell-show-all-users-in-distributiongroup#comments</comments>
		<pubDate>Thu, 27 Jan 2011 09:16:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Powershell]]></category>
		<category><![CDATA[DistributionGroup]]></category>
		<category><![CDATA[exchange]]></category>
		<category><![CDATA[exchange 2007]]></category>
		<category><![CDATA[exchange 2010]]></category>
		<category><![CDATA[powershell]]></category>

		<guid isPermaLink="false">http://kennethdalbjerg.dk/?p=828</guid>
		<description><![CDATA[$File = &#8220;C:\ita\groupslog.txt&#8221; $Mailboxes = Get-DistributionGroup &#124; select name , alias ,displayname,EmailAddresses $Mailboxes &#124; ForEach { echo &#8220;&#8221; echo &#8220;&#8221; echo $_.name Get-DistributionGroupMember -id $_.alias } &#124; out-File $File]]></description>
		<wfw:commentRss>http://kennethdalbjerg.dk/2011/01/27/powershell-show-all-users-in-distributiongroup/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Powershell &#8211; Show witch users have access to mailboxes</title>
		<link>http://kennethdalbjerg.dk/2011/01/27/powershell-show-witch-users-have-access-to-mailboxes</link>
		<comments>http://kennethdalbjerg.dk/2011/01/27/powershell-show-witch-users-have-access-to-mailboxes#comments</comments>
		<pubDate>Thu, 27 Jan 2011 09:15:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Powershell]]></category>
		<category><![CDATA[exchange]]></category>
		<category><![CDATA[exchange 2007]]></category>
		<category><![CDATA[exchange 2010]]></category>
		<category><![CDATA[mailbox]]></category>
		<category><![CDATA[powershell]]></category>

		<guid isPermaLink="false">http://kennethdalbjerg.dk/?p=826</guid>
		<description><![CDATA[$file =  &#8220;C:\ita\fulladgang.txt&#8221; $AllUsers = get-mailbox  &#124; select SamAccountName, name, alias $AllUsers &#124; Foreach { echo &#8220;&#8221; echo &#8220;&#8221; echo &#8220;&#8221; echo $_.name get-mailboxfolderpermission -identity $Mailbox } &#124; out-File $File]]></description>
		<wfw:commentRss>http://kennethdalbjerg.dk/2011/01/27/powershell-show-witch-users-have-access-to-mailboxes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Powershell get all users with title = &#8220;Interneservices&#8221; &#8211; Search on title on get-user</title>
		<link>http://kennethdalbjerg.dk/2011/01/27/powershell-get-all-users-with-title-interneservices-search-on-title-on-get-user</link>
		<comments>http://kennethdalbjerg.dk/2011/01/27/powershell-get-all-users-with-title-interneservices-search-on-title-on-get-user#comments</comments>
		<pubDate>Thu, 27 Jan 2011 09:13:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Powershell]]></category>
		<category><![CDATA[exchange]]></category>
		<category><![CDATA[exchange 2007]]></category>
		<category><![CDATA[exchange 2010]]></category>
		<category><![CDATA[get-user]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[title]]></category>

		<guid isPermaLink="false">http://kennethdalbjerg.dk/?p=824</guid>
		<description><![CDATA[get-user -filter {Title -eq &#8220;InterneServices&#8221;} &#124; select name]]></description>
		<wfw:commentRss>http://kennethdalbjerg.dk/2011/01/27/powershell-get-all-users-with-title-interneservices-search-on-title-on-get-user/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Powershell &#8211; Get Mailbox permission search on title = InterneServices</title>
		<link>http://kennethdalbjerg.dk/2011/01/27/powershell-get-mailbox-permission-search-on-title-interneservices</link>
		<comments>http://kennethdalbjerg.dk/2011/01/27/powershell-get-mailbox-permission-search-on-title-interneservices#comments</comments>
		<pubDate>Thu, 27 Jan 2011 09:12:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Powershell]]></category>
		<category><![CDATA[exchange]]></category>
		<category><![CDATA[exchange 2007]]></category>
		<category><![CDATA[exchange 2010]]></category>
		<category><![CDATA[powershell]]></category>

		<guid isPermaLink="false">http://kennethdalbjerg.dk/?p=822</guid>
		<description><![CDATA[$File = &#8220;C:\ita\fulldadgang-services.txt&#8221; $AllUsers = get-user -filter {Title -eq &#8220;InterneServices&#8221;} &#124; select name $AllUsers &#124; Foreach { echo &#8220;&#8221; echo &#8220;&#8221; echo &#8220;&#8221; echo $_.name Get-MailboxPermission -identity $_.name } &#124; out-File $File]]></description>
		<wfw:commentRss>http://kennethdalbjerg.dk/2011/01/27/powershell-get-mailbox-permission-search-on-title-interneservices/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Powershell &#8211; Get-DistributionGroup with all email addressess</title>
		<link>http://kennethdalbjerg.dk/2011/01/27/powershell-get-distributiongroup-with-all-email-addressess</link>
		<comments>http://kennethdalbjerg.dk/2011/01/27/powershell-get-distributiongroup-with-all-email-addressess#comments</comments>
		<pubDate>Thu, 27 Jan 2011 09:10:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Powershell]]></category>
		<category><![CDATA[DistributionGroup]]></category>
		<category><![CDATA[exchange]]></category>
		<category><![CDATA[exchange 2007]]></category>
		<category><![CDATA[exchange 2010]]></category>
		<category><![CDATA[powershell]]></category>

		<guid isPermaLink="false">http://kennethdalbjerg.dk/?p=820</guid>
		<description><![CDATA[$File = &#8220;C:\ita\groupslog.txt&#8221; Get-DistributionGroup &#124; select name , alias ,displayname,EmailAddresses &#124; foreach { “Name: “+$_.name “Alias: “+$_.alias “Displayname“ +$_.displayname $_.EmailAddresses &#124; foreach { if($_.SmtpAddress){ “SmtpAddress: “+$_.SmtpAddress } } } &#124; out-File $File]]></description>
		<wfw:commentRss>http://kennethdalbjerg.dk/2011/01/27/powershell-get-distributiongroup-with-all-email-addressess/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>howto export mailbox size to CSV file Exchange 2007/2010</title>
		<link>http://kennethdalbjerg.dk/2010/12/07/howto-export-mailbox-size-to-csv-file-exchange-20072010</link>
		<comments>http://kennethdalbjerg.dk/2010/12/07/howto-export-mailbox-size-to-csv-file-exchange-20072010#comments</comments>
		<pubDate>Tue, 07 Dec 2010 13:11:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Exchange]]></category>
		<category><![CDATA[csv]]></category>
		<category><![CDATA[exchange]]></category>
		<category><![CDATA[exchange 2007]]></category>
		<category><![CDATA[exchange 2010]]></category>
		<category><![CDATA[mailbox]]></category>
		<category><![CDATA[mailbox size]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://kennethdalbjerg.dk/?p=808</guid>
		<description><![CDATA[Howto Export all mailbox&#8217;es and there size to a CSV file get-mailbox &#124; get-mailboxstatistics &#124; select-object DisplayName,TotalItemSize,StorageLimitStatus,LastLogonTime &#124; Export-Csv c:\exchange.csv]]></description>
		<wfw:commentRss>http://kennethdalbjerg.dk/2010/12/07/howto-export-mailbox-size-to-csv-file-exchange-20072010/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

