<?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>blog.watashii &#187; shutdown</title>
	<atom:link href="http://blog.watashii.com/tag/shutdown/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.watashii.com</link>
	<description></description>
	<lastBuildDate>Fri, 03 Sep 2010 07:15:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Abort Windows Shutdown Using Shortcut</title>
		<link>http://blog.watashii.com/2009/05/abort-windows-shutdown-using-shortcut/</link>
		<comments>http://blog.watashii.com/2009/05/abort-windows-shutdown-using-shortcut/#comments</comments>
		<pubDate>Fri, 01 May 2009 12:41:13 +0000</pubDate>
		<dc:creator>watashii</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[abort]]></category>
		<category><![CDATA[shortcut]]></category>
		<category><![CDATA[shutdown]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://blog.watashii.com/?p=189</guid>
		<description><![CDATA[
This follows on from the previous post on how to force shutdown your Windows machine using a shortcut.   This post shows how to cancel / stop Windows from shutting down after launching the shutdown command (eg by accident).
To create this shortcut, open Notepad, and add the following line of text, then save it with [...]


Related Posts:<ol><li><a href='http://blog.watashii.com/2009/03/force-shutdown-windows-xp-using-shortcut/' rel='bookmark' title='Permanent Link: Force Shutdown Windows XP Using Shortcut'>Force Shutdown Windows XP Using Shortcut</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-190" title="forceshutdown_abort" src="http://blog.watashii.com/wp-content/uploads/2009/05/forceshutdown_abort.png" alt="forceshutdown_abort" width="209" height="129" /></p>
<p>This follows on from the previous post on how to <a href="http://blog.watashii.com/2009/03/force-shutdown-windows-xp-using-shortcut/" target="_blank">force shutdown your Windows machine</a> using a shortcut.   This post shows how to cancel / stop Windows from shutting down after launching the shutdown command (eg by accident).</p>
<p>To create this shortcut, open Notepad, and add the following line of text, then save it with a<em> .bat</em> extension.  You need to hit the shortcut quickly if you want to abort in time.</p>
<p><code>shutdown.exe -a</code></p>
<p><code>Where:<br />
-a abort shutdown<br />
</code></p>
<p>[<a href="http://www.watashii.com/code/xp_shortcut/abort_shutdown.bat " target="_blank">abort_shutdown.bat</a>]  32 bytes</p>


<p>Related Posts:<ol><li><a href='http://blog.watashii.com/2009/03/force-shutdown-windows-xp-using-shortcut/' rel='bookmark' title='Permanent Link: Force Shutdown Windows XP Using Shortcut'>Force Shutdown Windows XP Using Shortcut</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.watashii.com/2009/05/abort-windows-shutdown-using-shortcut/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Force Shutdown Windows XP Using Shortcut</title>
		<link>http://blog.watashii.com/2009/03/force-shutdown-windows-xp-using-shortcut/</link>
		<comments>http://blog.watashii.com/2009/03/force-shutdown-windows-xp-using-shortcut/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 11:35:59 +0000</pubDate>
		<dc:creator>watashii</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[shortcut]]></category>
		<category><![CDATA[shutdown]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://blog.watashii.com/?p=161</guid>
		<description><![CDATA[
Here is a handy way to force shutdown your Windows XP machine using a shortcut.  To create this shortcut, open Notepad, and add the following line of text, then save it with a .bat extension.
shutdown.exe -f -s -t 5 -c "bye"
Where:
-s  shutdown (use -r for restart)
-f  force shutdown
-t  time delay (5 secs)
-c  prompted comment, "bye"
[shutdown.bat]  [...]


Related Posts:<ol><li><a href='http://blog.watashii.com/2009/05/abort-windows-shutdown-using-shortcut/' rel='bookmark' title='Permanent Link: Abort Windows Shutdown Using Shortcut'>Abort Windows Shutdown Using Shortcut</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-162" title="forceshutdown" src="http://blog.watashii.com/wp-content/uploads/2009/03/forceshutdown.png" alt="forceshutdown" width="208" height="131" /></p>
<p>Here is a handy way to force shutdown your Windows XP machine using a shortcut.  To create this shortcut, open Notepad, and add the following line of text, then save it with a<em> .bat</em> extension.</p>
<p><code>shutdown.exe -f -s -t 5 -c "bye"</code></p>
<p><code>Where:<br />
-s  shutdown (use -r for restart)<br />
-f  force shutdown<br />
-t  time delay (5 secs)<br />
-c  prompted comment, "bye"</code></p>
<p>[<a href="http://www.watashii.com/code/xp_shortcut/shutdown.bat " target="_blank">shutdown.bat</a>]  32 bytes</p>


<p>Related Posts:<ol><li><a href='http://blog.watashii.com/2009/05/abort-windows-shutdown-using-shortcut/' rel='bookmark' title='Permanent Link: Abort Windows Shutdown Using Shortcut'>Abort Windows Shutdown Using Shortcut</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.watashii.com/2009/03/force-shutdown-windows-xp-using-shortcut/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Windows Vista &#8211; Change Sleep Button to Shutdown Button</title>
		<link>http://blog.watashii.com/2009/01/windows-vista-change-sleep-button-to-shutdown-button/</link>
		<comments>http://blog.watashii.com/2009/01/windows-vista-change-sleep-button-to-shutdown-button/#comments</comments>
		<pubDate>Sat, 31 Jan 2009 09:19:02 +0000</pubDate>
		<dc:creator>watashii</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[shutdown]]></category>
		<category><![CDATA[sleep]]></category>
		<category><![CDATA[vista]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://blog.watashii.com/?p=145</guid>
		<description><![CDATA[
Recently got my new computer system loaded with Windows Vista (Home Basic).  The first annoyance I encountered was that the default power down on the Start Menu is the orange sleep mode button.
Having sleep mode allows quick resume of Windows without needing to reload Windows from scratch, as well as saving power &#8211; the benefits [...]


Related Posts:<ol><li><a href='http://blog.watashii.com/2009/09/live-messenger-8-18-5-bypass-mandatory-upgrade/' rel='bookmark' title='Permanent Link: Live Messenger 8.1/8.5 Bypass Mandatory Upgrade'>Live Messenger 8.1/8.5 Bypass Mandatory Upgrade</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="float-left size-full wp-image-146 alignleft" style="margin: 15px;" title="sleep_to_shutdown_button" src="http://blog.watashii.com/wp-content/uploads/2009/01/startmenupower.jpg" alt="sleep_to_shutdown_button" width="142" height="125" /></p>
<p>Recently got my new computer system loaded with Windows Vista (Home Basic).  The first annoyance I encountered was that the default power down on the Start Menu is the orange sleep mode button.</p>
<p>Having sleep mode allows quick resume of Windows without needing to reload Windows from scratch, as well as saving power &#8211; the benefits obvious.</p>
<p>But for the not-so occasional PC user, a shutdown button is more convenient.  Here is how to swap it with red shutdown button.</p>
<p>- Goto <em>[Start &gt; Control Panel &gt; Power Options]</em></p>
<p>- Click on the power plan in use, and select <em>Advanced Power Settings</em></p>
<p>- Expand the + signs under <em>Power Buttons and Lid</em>, then <em>Start Menu and Power Buttons</em></p>
<p>- Then in the dropdown box set it to the Shutdown setting</p>


<p>Related Posts:<ol><li><a href='http://blog.watashii.com/2009/09/live-messenger-8-18-5-bypass-mandatory-upgrade/' rel='bookmark' title='Permanent Link: Live Messenger 8.1/8.5 Bypass Mandatory Upgrade'>Live Messenger 8.1/8.5 Bypass Mandatory Upgrade</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.watashii.com/2009/01/windows-vista-change-sleep-button-to-shutdown-button/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
