<?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/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	>

<channel>
	<title>sysadmin bits and bobs</title>
	<atom:link href="https://www.jaylark.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.jaylark.com/blog</link>
	<description>and maybe some other things</description>
	<lastBuildDate>Thu, 24 Apr 2014 21:06:59 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.4.1</generator>
	<item>
		<title>Force10 Losing Configuration On Reboot</title>
		<link>https://www.jaylark.com/blog/2014/04/24/force10-losing-configuration-on-reboot/</link>
					<comments>https://www.jaylark.com/blog/2014/04/24/force10-losing-configuration-on-reboot/#respond</comments>
		
		<dc:creator><![CDATA[jaylark]]></dc:creator>
		<pubDate>Thu, 24 Apr 2014 21:06:59 +0000</pubDate>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Force10]]></category>
		<category><![CDATA[networking]]></category>
		<guid isPermaLink="false">http://www.jaylark.com/blog/?p=33</guid>

					<description><![CDATA[Fun one today.  Got a brand new Force10 S60 out of the box and set to work on configuring it, saved my config, rebooted, and poof all my configuration disappeared! Did the same things once more as I thought maybe I had forgotten to save, but no, all my changes vanished again.  I brought out &#8230; <a href="https://www.jaylark.com/blog/2014/04/24/force10-losing-configuration-on-reboot/" class="more-link">Continue reading <span class="screen-reader-text">Force10 Losing Configuration On Reboot</span> <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>Fun one today.  Got a brand new Force10 S60 out of the box and set to work on configuring it, saved my config, rebooted, and poof all my configuration disappeared!</p>
<p>Did the same things once more as I thought maybe I had forgotten to save, but no, all my changes vanished again.  I brought out the manual just to make sure Force10 hadn&#8217;t changed the commands to save the running configuration on me, but no I was typing the correct things in.</p>
<p>Lucky for me I had a second S60 waiting to be configured so I unboxed that and ran through the same procedures.  Once again my configurations disappeared on reboot.</p>
<p>Clearly I&#8217;m missing something so I hit Google and quickly find this <a href="http://blog.igics.com/2013/12/force10-doesnt-keep-configuration-after.html">blog post with the answer</a>.</p>
<p>Force10 supports two reload types and the mode it ships in clears configurations on reboots.  Simply typing <strong>reload-type normal-reload </strong>puts the switch into normal operation mode.</p>
<p>If you want the config clearing mode for a demo or something you can use <strong>r<span style="color: #222222;">eload-type jump-start.</span></strong></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.jaylark.com/blog/2014/04/24/force10-losing-configuration-on-reboot/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Exchange 2013 Automatic Reply Frequency</title>
		<link>https://www.jaylark.com/blog/2013/11/09/exchange-2013-automatic-reply-frequency/</link>
					<comments>https://www.jaylark.com/blog/2013/11/09/exchange-2013-automatic-reply-frequency/#respond</comments>
		
		<dc:creator><![CDATA[jaylark]]></dc:creator>
		<pubDate>Sun, 10 Nov 2013 03:22:27 +0000</pubDate>
				<category><![CDATA[Exchange 2013]]></category>
		<category><![CDATA[PowerShell]]></category>
		<guid isPermaLink="false">http://www.jaylark.com/blog/?p=19</guid>

					<description><![CDATA[First post! By default, Exchange 2013 only sends an automatic reply once to each sender each time a user enables the option.  I had a request to make this happen more often as we constantly have people either forgetting or just ignoring the first out of office message, and then they wonder why no one &#8230; <a href="https://www.jaylark.com/blog/2013/11/09/exchange-2013-automatic-reply-frequency/" class="more-link">Continue reading <span class="screen-reader-text">Exchange 2013 Automatic Reply Frequency</span> <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>First post!</p>
<p>By default, Exchange 2013 only sends an automatic reply once to each sender each time a user enables the option.  I had a request to make this happen more often as we constantly have people either forgetting or just ignoring the first out of office message, and then they wonder why no one is replying to them.</p>
<p>The PowerShell script below will do the following:</p>
<ul>
<li>Find everyone that has auto reply switched on</li>
<li>Turn auto reply off for those users</li>
<li>Turn auto reply back on for those users</li>
</ul>
<p>I run this script once a day which &#8220;resets&#8221; every sender&#8217;s counter back to zero so they will get the auto reply once a day.</p><pre class="crayon-plain-tag">$enabled = get-mailbox -resultsize unlimited |get-mailboxautoreplyconfiguration | where {$_.autoreplystate -eq &quot;enabled&quot;} | select identity,autoreplystate

$enabled | foreach-object {
set-mailboxautoreplyconfiguration $_.identity -autoreplystate &quot;Disabled&quot;
set-mailboxautoreplyconfiguration $_.identity&nbsp; -autoreplystate $_.autoreplystate
}</pre><p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.jaylark.com/blog/2013/11/09/exchange-2013-automatic-reply-frequency/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
