Re: System Up time

Tech Tip: Click here to run a free scan for Windows Errors and optimize PC performance



"Shenan Stanley" <newshelper@xxxxxxxxx> wrote in message
news:ufUaNNrVFHA.1148@xxxxxxxxxxxxxxxxxxxxxxx
> T. Waters wrote:
>> "systeminfo" was not recognized.
>> Just wanting to know where in the System Information tree I should
>> navigate to in order to find Uptime. Using the Search function within
>> System Info did not find it.
>
> Assuming Windows XP Professional:
> Create a batch script.. Call it "uptime.cmd".
>
> Put this in it:
>
> @systeminfo | find "System Up Time:"
> @pause
>
> Run the script.
> There's your uptime.
>
> This works as well:
> http://www.microsoft.com/ntserver/nts/downloads/management/uptime/default.asp
>
> (Try the /s switch.. Gives a history and more.)
>


"http://www.microsoft.com/ntserver/nts/downloads/management/uptime/default.asp
(Try the /s switch.. Gives a history and more.)"

This is what I use, with a cmd file.

---------------
@echo off

TITLE UPTIME FOR %USERDOMAIN%
d:\Programs\uptime.exe /s>"%temp%\uptime.txt"
cmd /c "%temp%\uptime.txt"
--------------------

--
William



.