<?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>Exchange Powershell &#187; Powershell</title>
	<atom:link href="http://www.exchange-powershell.com/category/powershell/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.exchange-powershell.com</link>
	<description>Exchange and Powershell Helps, Tips, and Tricks</description>
	<lastBuildDate>Mon, 12 Jul 2010 17:23:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
<meta xmlns="http://www.w3.org/1999/xhtml" name="robots" content="noindex,follow" />
		<item>
		<title>List of Hidden Distribution Group</title>
		<link>http://www.exchange-powershell.com/2010/07/06/list-of-hidden-distribution-group/</link>
		<comments>http://www.exchange-powershell.com/2010/07/06/list-of-hidden-distribution-group/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 20:45:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[GAL - Global Address List]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[get-distributiongroup]]></category>
		<category><![CDATA[Select]]></category>
		<category><![CDATA[Where]]></category>

		<guid isPermaLink="false">http://www.exchange-powershell.com/?p=5673</guid>
		<description><![CDATA[You may find that you need to get a list of all of the distribution groups in your Exchange Organization that are hidden from the GAL (Global Address List). The following command is a simple powershell command that will accomplish this. get-distributiongroup &#124; select name, hiddenfromaddresslistsenabled &#124; WHERE {$_.HiddenFromAddressListsEnabled -eq $true } This will give [...]]]></description>
			<content:encoded><![CDATA[<p>You may find that you need to get a list of all of the distribution groups in your Exchange Organization that are hidden from the GAL (Global Address List).   The following command is a simple powershell command that will accomplish this.</p>
<blockquote><p>get-distributiongroup | select name, hiddenfromaddresslistsenabled | WHERE {$_.HiddenFromAddressListsEnabled -eq $true }</p></blockquote>
<p>This will give you a two columned list.  The first column will contain the name of the distribtuion list, and the second column will contain the value of the HiddenFromAddressListsEnabled field.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.exchange-powershell.com/2010/07/06/list-of-hidden-distribution-group/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to hide a Distribution Group from the GAL with Powershell</title>
		<link>http://www.exchange-powershell.com/2010/07/06/how-to-hide-a-distribution-group-from-the-gal-with-powershell/</link>
		<comments>http://www.exchange-powershell.com/2010/07/06/how-to-hide-a-distribution-group-from-the-gal-with-powershell/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 20:35:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[GAL - Global Address List]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Global Address List]]></category>
		<category><![CDATA[set-distributiongroup]]></category>

		<guid isPermaLink="false">http://www.exchange-powershell.com/?p=5669</guid>
		<description><![CDATA[Here is a simple command that will save you some time. Instead of having to open up a GUI, you can just type this command in a PowerShell window and hide a Group from the GAL (Global Address List) set-distributiongroup [GROUPNAME] -HiddenFromAddressListsEnabled $true This will then hide the list from the GAL. No need to [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a simple command that will save you some time.  Instead of having to open up a GUI, you can just type this command in a PowerShell window and hide a Group from the GAL (Global Address List)</p>
<blockquote><p>set-distributiongroup [GROUPNAME] -HiddenFromAddressListsEnabled $true</p></blockquote>
<p>This will then hide the list from the GAL.  No need to go into the GUI to get it done.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.exchange-powershell.com/2010/07/06/how-to-hide-a-distribution-group-from-the-gal-with-powershell/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Delete all messages after date from mailbox</title>
		<link>http://www.exchange-powershell.com/2009/11/24/delete-all-messages-after-date-from-mailbox/</link>
		<comments>http://www.exchange-powershell.com/2009/11/24/delete-all-messages-after-date-from-mailbox/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 23:16:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[export-mailbox]]></category>
		<category><![CDATA[Role: Mailbox]]></category>

		<guid isPermaLink="false">http://www.exchange-powershell.com/?p=443</guid>
		<description><![CDATA[I was asked to delete everything from a mailbox called familydomains that was older than 2009. Here is the Exchange Powershell command that I used to delete everything earlier than 12/31/2008 to a PST file located in my C:\temp directory. export-mailbox familydomains -PSTFolderPath C:\temp\ -DeleteContent -endDate 12/31/2008 The advantage to doing it this way is [...]]]></description>
			<content:encoded><![CDATA[<p>I was asked to delete everything from a mailbox called familydomains that was older than 2009.  Here is the Exchange Powershell command that I used to delete everything earlier than 12/31/2008 to a PST file located in my C:\temp directory.</p>
<blockquote><p>export-mailbox familydomains -PSTFolderPath C:\temp\ -DeleteContent -endDate 12/31/2008</p></blockquote>
<p>The advantage to doing it this way is that no emails are actually deleted.  They are moved from the mailbox to the PST file, so they can be imported, or viewed through Outlook at a later date if the end user changes their mind.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.exchange-powershell.com/2009/11/24/delete-all-messages-after-date-from-mailbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Command to list all messages to a specific domain for the day</title>
		<link>http://www.exchange-powershell.com/2009/11/20/command-to-list-all-messages-to-a-specific-domain-for-the-day/</link>
		<comments>http://www.exchange-powershell.com/2009/11/20/command-to-list-all-messages-to-a-specific-domain-for-the-day/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 22:21:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[get-messagetrackinglog]]></category>
		<category><![CDATA[get-transportserver]]></category>

		<guid isPermaLink="false">http://www.exchange-powershell.com/?p=395</guid>
		<description><![CDATA[If you want to list all of the messages sent to a recipient with a specific domain, you can run this command. It will export a list of all message from 8:00AM &#8211; 5:00PM on 10/17/2009 that were to someone on the domainname.com domain. The list will be saved to c:\send.xls get-transportserver &#124; Get-MessageTrackingLog -ResultSize [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to list all of the messages sent to a recipient with a specific domain, you can run this command.  It will export a list of all message from 8:00AM &#8211; 5:00PM on 10/17/2009 that were to someone on the domainname.com domain.  The list will be saved to c:\send.xls</p>
<blockquote><p>get-transportserver | Get-MessageTrackingLog -ResultSize Unlimited -Start &#8220;10/17/2009 8:00AM&#8221; -End &#8220;11/17/2009 5:00PM&#8221; -eventid Send  | WHERE {$_.recipients -like &#8220;*domainname.com*&#8221;} > &#8220;c:\send.xls&#8221;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.exchange-powershell.com/2009/11/20/command-to-list-all-messages-to-a-specific-domain-for-the-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

