<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Display the up time of a workstation or server.</title>
	<atom:link href="http://www.asktheadmin.com/2008/07/display-the-up-time-of-a-workstation-or-server.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.asktheadmin.com/2008/07/display-the-up-time-of-a-workstation-or-server.html</link>
	<description></description>
	<lastBuildDate>Fri, 03 Feb 2012 06:08:50 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Instant Housecall Magazine &#187; Can I make my Windows Machine Shutdown Quicker?</title>
		<link>http://www.asktheadmin.com/2008/07/display-the-up-time-of-a-workstation-or-server.html/comment-page-1#comment-9172</link>
		<dc:creator>Instant Housecall Magazine &#187; Can I make my Windows Machine Shutdown Quicker?</dc:creator>
		<pubDate>Wed, 10 Dec 2008 22:15:57 +0000</pubDate>
		<guid isPermaLink="false">http://ata.inspiritnetworks.com/2008/07/display-the-up-time-of-a-workstation-or-server.html#comment-9172</guid>
		<description>[...] Display the up time of a workstation or server. [...]</description>
		<content:encoded><![CDATA[<p>[...] Display the up time of a workstation or server. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://www.asktheadmin.com/2008/07/display-the-up-time-of-a-workstation-or-server.html/comment-page-1#comment-7908</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Mon, 18 Aug 2008 17:17:04 +0000</pubDate>
		<guid isPermaLink="false">http://ata.inspiritnetworks.com/2008/07/display-the-up-time-of-a-workstation-or-server.html#comment-7908</guid>
		<description>To check the uptime on my servers I use psinfo (from the PS Tools suite). 

If you type psinfo \\servername , the output will display:(excerpt)

C:\PSTOOLS&gt;psinfo \\servername

PsInfo v1.73 - Local and remote system information viewer
Copyright (C) 2001-2005 Mark Russinovich
Sysinternals - www.sysinternals.com

System information for \\servername
Uptime:                    5 days 5 hours 19 minutes 42 seconds
Kernel version:            Microsoft Windows Server 2003, Uniprocessor Free</description>
		<content:encoded><![CDATA[<p>To check the uptime on my servers I use psinfo (from the PS Tools suite). </p>
<p>If you type psinfo \\servername , the output will display:(excerpt)</p>
<p>C:\PSTOOLS&gt;psinfo \\servername</p>
<p>PsInfo v1.73 &#8211; Local and remote system information viewer<br />
Copyright (C) 2001-2005 Mark Russinovich<br />
Sysinternals &#8211; <a href="http://www.sysinternals.com" rel="nofollow">http://www.sysinternals.com</a></p>
<p>System information for \\servername<br />
Uptime:                    5 days 5 hours 19 minutes 42 seconds<br />
Kernel version:            Microsoft Windows Server 2003, Uniprocessor Free</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AskTheAdmin</title>
		<link>http://www.asktheadmin.com/2008/07/display-the-up-time-of-a-workstation-or-server.html/comment-page-1#comment-7442</link>
		<dc:creator>AskTheAdmin</dc:creator>
		<pubDate>Tue, 29 Jul 2008 10:20:25 +0000</pubDate>
		<guid isPermaLink="false">http://ata.inspiritnetworks.com/2008/07/display-the-up-time-of-a-workstation-or-server.html#comment-7442</guid>
		<description>That&#039;s awesome Joe! Thanks!</description>
		<content:encoded><![CDATA[<p>That&#8217;s awesome Joe! Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JoeG</title>
		<link>http://www.asktheadmin.com/2008/07/display-the-up-time-of-a-workstation-or-server.html/comment-page-1#comment-6925</link>
		<dc:creator>JoeG</dc:creator>
		<pubDate>Fri, 25 Jul 2008 13:56:24 +0000</pubDate>
		<guid isPermaLink="false">http://ata.inspiritnetworks.com/2008/07/display-the-up-time-of-a-workstation-or-server.html#comment-6925</guid>
		<description>Many of the times listed in event logs are in the WMI time format (why they decided to use this format in the event logs I&#039;ll never know), here is a VBScript Function to convert them to a more easily readable format:    &lt;CODE&gt;    strDate = InputBox(&quot;Enter the WMI timestamp here&quot;)   wscript.echo WMITimestampConvert(strDate)        &#039;#--------------------------------------------------------------------------      &#039;#  FUNCTION.......:  WMITimestampConvert()      &#039;#  PURPOSE........:  Converts WMI Timestamps to a more friendly format.      &#039;#  ARGUMENTS......:  dtmInstallDate = The WMI timestamp to convert.      &#039;#  EXAMPLE........:  strDate = InputBox(&quot;Enter the WMI timestamp here&quot;)       &#039;#                    wscript.echo WMITimestampConvert(strDate)      &#039;#  REQUIREMENTS...:  Tested on Win2k, XP, WS2003. Should work on Vista and       &#039;#                    WS2008.      &#039;#  NOTES..........:  In the example above, if you enter the WMI timestamp      &#039;#                    20011120042924.000000+000 the script will return:      &#039;#                    11/20/2001 4:29:24 AM (this is un UTC time, the offset      &#039;#                    would be different (unless you are in the UTC time       &#039;#                    zone).      &#039;#--------------------------------------------------------------------------      Function WMITimestampConvert(dtmInstallDate)          WMITimestampConvert = CDate(Mid(dtmInstallDate, 5, 2) &amp; &quot;/&quot; &amp;_          Mid(dtmInstallDate, 7, 2) &amp; &quot;/&quot; &amp; Left(dtmInstallDate, 4) &amp;_          &quot; &quot; &amp; Mid (dtmInstallDate, 9, 2) &amp; &quot;:&quot; &amp;_              Mid(dtmInstallDate, 11, 2) &amp; &quot;:&quot; &amp; Mid(dtmInstallDate, 13, 2))      End Function    &lt;/CODE&gt;  </description>
		<content:encoded><![CDATA[<p>Many of the times listed in event logs are in the WMI time format (why they decided to use this format in the event logs I&#039;ll never know), here is a VBScript Function to convert them to a more easily readable format:    &lt;CODE&gt;    strDate = InputBox(&quot;Enter the WMI timestamp here&quot;)   wscript.echo WMITimestampConvert(strDate)        &#039;#&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;      &#039;#  FUNCTION&#8230;&#8230;.:  WMITimestampConvert()      &#039;#  PURPOSE&#8230;&#8230;..:  Converts WMI Timestamps to a more friendly format.      &#039;#  ARGUMENTS&#8230;&#8230;:  dtmInstallDate = The WMI timestamp to convert.      &#039;#  EXAMPLE&#8230;&#8230;..:  strDate = InputBox(&quot;Enter the WMI timestamp here&quot;)       &#039;#                    wscript.echo WMITimestampConvert(strDate)      &#039;#  REQUIREMENTS&#8230;:  Tested on Win2k, XP, WS2003. Should work on Vista and       &#039;#                    WS2008.      &#039;#  NOTES&#8230;&#8230;&#8230;.:  In the example above, if you enter the WMI timestamp      &#039;#                    20011120042924.000000+000 the script will return:      &#039;#                    11/20/2001 4:29:24 AM (this is un UTC time, the offset      &#039;#                    would be different (unless you are in the UTC time       &#039;#                    zone).      &#039;#&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;      Function WMITimestampConvert(dtmInstallDate)          WMITimestampConvert = CDate(Mid(dtmInstallDate, 5, 2) &amp; &quot;/&quot; &amp;_          Mid(dtmInstallDate, 7, 2) &amp; &quot;/&quot; &amp; Left(dtmInstallDate, 4) &amp;_          &quot; &quot; &amp; Mid (dtmInstallDate, 9, 2) &amp; &quot;:&quot; &amp;_              Mid(dtmInstallDate, 11, 2) &amp; &quot;:&quot; &amp; Mid(dtmInstallDate, 13, 2))      End Function    &lt;/CODE&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JoeG</title>
		<link>http://www.asktheadmin.com/2008/07/display-the-up-time-of-a-workstation-or-server.html/comment-page-1#comment-6924</link>
		<dc:creator>JoeG</dc:creator>
		<pubDate>Fri, 25 Jul 2008 13:29:02 +0000</pubDate>
		<guid isPermaLink="false">http://ata.inspiritnetworks.com/2008/07/display-the-up-time-of-a-workstation-or-server.html#comment-6924</guid>
		<description>For *NIX try &#039;uptime&#039;, for the Win32 equivalent, go here (this is a Microsoft link) &lt;a href=&quot;&lt;a href=&quot;http://download.microsoft.com/download/winntsrv40/Install/uptime_1.01/NT4/EN-US/uptime.exe. &quot; rel=&quot;nofollow&quot;&gt;http://download.microsoft.com/download/winntsrv40...&lt;/a&gt;&quot;&gt;&lt;a href=&quot;http://download.microsoft.com/download/w...&lt;/a rel=&quot;nofollow&quot;&gt; &quot;&gt;http://download.microsoft.com/download/winntsrv40...&lt;/a&gt; &lt;/a&gt;   Try &#039;uptime /a&#039; on your system to get a nice set of information.      </description>
		<content:encoded><![CDATA[<p>For *NIX try &#039;uptime&#039;, for the Win32 equivalent, go here (this is a Microsoft link) <a href="<a href="http://download.microsoft.com/download/winntsrv40/Install/uptime_1.01/NT4/EN-US/uptime.exe. " rel="nofollow">http://download.microsoft.com/download/winntsrv40&#8230;</a>&#8220;><a href="http://download.microsoft.com/download/w...</a rel="nofollow"> &#8220;></a><a href="http://download.microsoft.com/download/winntsrv40..." rel="nofollow">http://download.microsoft.com/download/winntsrv40&#8230;</a>    Try &#039;uptime /a&#039; on your system to get a nice set of information.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JoeG</title>
		<link>http://www.asktheadmin.com/2008/07/display-the-up-time-of-a-workstation-or-server.html/comment-page-1#comment-7434</link>
		<dc:creator>JoeG</dc:creator>
		<pubDate>Fri, 25 Jul 2008 13:29:02 +0000</pubDate>
		<guid isPermaLink="false">http://ata.inspiritnetworks.com/2008/07/display-the-up-time-of-a-workstation-or-server.html#comment-7434</guid>
		<description>For *NIX try &#039;uptime&#039;, for the Win32 equivalent, go here (this is a Microsoft link) &lt;a href=&quot;&lt;a href=&quot;http://download.microsoft.com/download/winntsrv40/Install/uptime_1.01/NT4/EN-US/uptime.exe. &quot; rel=&quot;nofollow&quot;&gt;http://download.microsoft.com/download/winntsrv40...&lt;/a&gt;&quot;&gt;&lt;a href=&quot;http://download.microsoft.com/download/w...&lt;/a rel=&quot;nofollow&quot;&gt; &quot;&gt;http://download.microsoft.com/download/winntsrv40...&lt;/a&gt; &lt;/a&gt;   Try &#039;uptime /a&#039; on your system to get a nice set of information.      </description>
		<content:encoded><![CDATA[<p>For *NIX try &#039;uptime&#039;, for the Win32 equivalent, go here (this is a Microsoft link) <a href="<a href="http://download.microsoft.com/download/winntsrv40/Install/uptime_1.01/NT4/EN-US/uptime.exe. " rel="nofollow">http://download.microsoft.com/download/winntsrv40&#8230;</a>&#8220;><a href="http://download.microsoft.com/download/w...</a rel="nofollow"> &#8220;></a><a href="http://download.microsoft.com/download/winntsrv40..." rel="nofollow">http://download.microsoft.com/download/winntsrv40&#8230;</a>    Try &#039;uptime /a&#039; on your system to get a nice set of information.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: geekblake</title>
		<link>http://www.asktheadmin.com/2008/07/display-the-up-time-of-a-workstation-or-server.html/comment-page-1#comment-6923</link>
		<dc:creator>geekblake</dc:creator>
		<pubDate>Fri, 25 Jul 2008 02:50:44 +0000</pubDate>
		<guid isPermaLink="false">http://ata.inspiritnetworks.com/2008/07/display-the-up-time-of-a-workstation-or-server.html#comment-6923</guid>
		<description>Anybody know an equivalent Unix command for that?    </description>
		<content:encoded><![CDATA[<p>Anybody know an equivalent Unix command for that?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter</title>
		<link>http://www.asktheadmin.com/2008/07/display-the-up-time-of-a-workstation-or-server.html/comment-page-1#comment-6922</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Fri, 25 Jul 2008 00:35:59 +0000</pubDate>
		<guid isPermaLink="false">http://ata.inspiritnetworks.com/2008/07/display-the-up-time-of-a-workstation-or-server.html#comment-6922</guid>
		<description>I use bginfo on all my servers, that way I know which machine I&#039;m logged into.  It can tell you all kinds of good stuff about the machine at a glance.  &lt;a href=&quot;&lt;a href=&quot;http://technet.microsoft.com/en-us/sysinternals/bb897557.aspx &quot; rel=&quot;nofollow&quot;&gt;http://technet.microsoft.com/en-us/sysinternals/b...&lt;/a&gt;&quot;&gt;&lt;a href=&quot;http://technet.microsoft.com/en-us/sysin...&lt;/a rel=&quot;nofollow&quot;&gt; &quot;&gt;http://technet.microsoft.com/en-us/sysinternals/b...&lt;/a&gt; &lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>I use bginfo on all my servers, that way I know which machine I&#039;m logged into.  It can tell you all kinds of good stuff about the machine at a glance.  <a href="<a href="http://technet.microsoft.com/en-us/sysinternals/bb897557.aspx " rel="nofollow">http://technet.microsoft.com/en-us/sysinternals/b&#8230;</a>&#8220;><a href="http://technet.microsoft.com/en-us/sysin...</a rel="nofollow"> &#8220;></a><a href="http://technet.microsoft.com/en-us/sysinternals/b..." rel="nofollow">http://technet.microsoft.com/en-us/sysinternals/b&#8230;</a> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter</title>
		<link>http://www.asktheadmin.com/2008/07/display-the-up-time-of-a-workstation-or-server.html/comment-page-1#comment-7433</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Fri, 25 Jul 2008 00:35:59 +0000</pubDate>
		<guid isPermaLink="false">http://ata.inspiritnetworks.com/2008/07/display-the-up-time-of-a-workstation-or-server.html#comment-7433</guid>
		<description>I use bginfo on all my servers, that way I know which machine I&#039;m logged into.  It can tell you all kinds of good stuff about the machine at a glance.  &lt;a href=&quot;&lt;a href=&quot;http://technet.microsoft.com/en-us/sysinternals/bb897557.aspx &quot; rel=&quot;nofollow&quot;&gt;http://technet.microsoft.com/en-us/sysinternals/b...&lt;/a&gt;&quot;&gt;&lt;a href=&quot;http://technet.microsoft.com/en-us/sysin...&lt;/a rel=&quot;nofollow&quot;&gt; &quot;&gt;http://technet.microsoft.com/en-us/sysinternals/b...&lt;/a&gt; &lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>I use bginfo on all my servers, that way I know which machine I&#039;m logged into.  It can tell you all kinds of good stuff about the machine at a glance.  <a href="<a href="http://technet.microsoft.com/en-us/sysinternals/bb897557.aspx " rel="nofollow">http://technet.microsoft.com/en-us/sysinternals/b&#8230;</a>&#8220;><a href="http://technet.microsoft.com/en-us/sysin...</a rel="nofollow"> &#8220;></a><a href="http://technet.microsoft.com/en-us/sysinternals/b..." rel="nofollow">http://technet.microsoft.com/en-us/sysinternals/b&#8230;</a> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AskTheAdmin</title>
		<link>http://www.asktheadmin.com/2008/07/display-the-up-time-of-a-workstation-or-server.html/comment-page-1#comment-6921</link>
		<dc:creator>AskTheAdmin</dc:creator>
		<pubDate>Thu, 24 Jul 2008 15:34:33 +0000</pubDate>
		<guid isPermaLink="false">http://ata.inspiritnetworks.com/2008/07/display-the-up-time-of-a-workstation-or-server.html#comment-6921</guid>
		<description>Thanks CJ! this method takes about 30 seconds more than net statistics workstation.    @Norcross - not in plain English! You would have to go decipher it.  </description>
		<content:encoded><![CDATA[<p>Thanks CJ! this method takes about 30 seconds more than net statistics workstation.    @Norcross &#8211; not in plain English! You would have to go decipher it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AskTheAdmin</title>
		<link>http://www.asktheadmin.com/2008/07/display-the-up-time-of-a-workstation-or-server.html/comment-page-1#comment-6920</link>
		<dc:creator>AskTheAdmin</dc:creator>
		<pubDate>Thu, 24 Jul 2008 15:29:11 +0000</pubDate>
		<guid isPermaLink="false">http://ata.inspiritnetworks.com/2008/07/display-the-up-time-of-a-workstation-or-server.html#comment-6920</guid>
		<description>First go to the command prompt by going to start run and typing in CMD. Then at the dos prompt type in your &quot;net statistics workstation&quot; minus the quotes of course.&lt;br /&gt;&lt;br /&gt;---  </description>
		<content:encoded><![CDATA[<p>First go to the command prompt by going to start run and typing in CMD. Then at the dos prompt type in your &#8220;net statistics workstation&#8221; minus the quotes of course.</p>
<p>&#8212;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ElvenEyes</title>
		<link>http://www.asktheadmin.com/2008/07/display-the-up-time-of-a-workstation-or-server.html/comment-page-1#comment-6926</link>
		<dc:creator>ElvenEyes</dc:creator>
		<pubDate>Thu, 24 Jul 2008 14:44:39 +0000</pubDate>
		<guid isPermaLink="false">http://ata.inspiritnetworks.com/2008/07/display-the-up-time-of-a-workstation-or-server.html#comment-6926</guid>
		<description>I tried both the &quot;net statistics workstation&quot; and the &quot;systeminfo&quot; commands, but the windows that came up only stayed there for about one second and then disappeared &#8211; certainly too fast for me to read! How do I get the window to stay?  </description>
		<content:encoded><![CDATA[<p>I tried both the &quot;net statistics workstation&quot; and the &quot;systeminfo&quot; commands, but the windows that came up only stayed there for about one second and then disappeared &ndash; certainly too fast for me to read! How do I get the window to stay?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cj</title>
		<link>http://www.asktheadmin.com/2008/07/display-the-up-time-of-a-workstation-or-server.html/comment-page-1#comment-6919</link>
		<dc:creator>cj</dc:creator>
		<pubDate>Thu, 24 Jul 2008 14:06:29 +0000</pubDate>
		<guid isPermaLink="false">http://ata.inspiritnetworks.com/2008/07/display-the-up-time-of-a-workstation-or-server.html#comment-6919</guid>
		<description>if you go into a command prompt and type &quot;systeminfo&quot; towards the top of the information is actual update, not the date of last reboot, it&#039;ll display how long it has been!  </description>
		<content:encoded><![CDATA[<p>if you go into a command prompt and type &quot;systeminfo&quot; towards the top of the information is actual update, not the date of last reboot, it&#039;ll display how long it has been!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Norcross</title>
		<link>http://www.asktheadmin.com/2008/07/display-the-up-time-of-a-workstation-or-server.html/comment-page-1#comment-6918</link>
		<dc:creator>Norcross</dc:creator>
		<pubDate>Thu, 24 Jul 2008 13:42:54 +0000</pubDate>
		<guid isPermaLink="false">http://ata.inspiritnetworks.com/2008/07/display-the-up-time-of-a-workstation-or-server.html#comment-6918</guid>
		<description>wouldn&#039;t the event log spell that out?  </description>
		<content:encoded><![CDATA[<p>wouldn&#039;t the event log spell that out?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced)

Served from: www.asktheadmin.com @ 2012-02-10 00:44:33 -->
