PCbanter

PCbanter (http://www.pcbanter.net/index.php)
-   Windows 10 Help Forum (http://www.pcbanter.net/forumdisplay.php?f=52)
-   -   Where did Where's Waldo put Up Time in 1803? (http://www.pcbanter.net/showthread.php?t=1104418)

T June 14th 18 07:26 PM

Where did Where's Waldo put Up Time in 1803?
 
Hi All,

in W10-1803, where did they move Up Time? It use to be in
Task Manager, Performance.

Many thanks,
-T

Paul[_32_] June 14th 18 08:46 PM

Where did Where's Waldo put Up Time in 1803?
 
T wrote:
Hi All,

in W10-1803, where did they move Up Time? It use to be in
Task Manager, Performance.

Many thanks,
-T


There's more than one way.

https://www.tenforums.com/tutorials/...dows-10-a.html

And mine still seems to be working in 17134.xxx

https://s33.postimg.cc/m3xdj0xwf/uptime.gif

Paul

T June 14th 18 09:11 PM

Where did Where's Waldo put Up Time in 1803?
 
On 06/14/2018 12:46 PM, Paul wrote:
T wrote:
Hi All,

in W10-1803, where did they move Up Time?Â* It use to be in
Task Manager, Performance.

Many thanks,
-T


There's more than one way.

https://www.tenforums.com/tutorials/...dows-10-a.html


And mine still seems to be working in 17134.xxx

https://s33.postimg.cc/m3xdj0xwf/uptime.gif

Â*Â* Paul


Thank you!

I wonder if this is a home versus pro issue?


Andy Burns[_6_] June 14th 18 09:16 PM

Where did Where's Waldo put Up Time in 1803?
 
T wrote:

Paul wrote:

T wrote:

in W10-1803, where did they move Up Time?Â* It use to be in
Task Manager, Performance.


And mine still seems to be working in 17134.xxx
https://s33.postimg.cc/m3xdj0xwf/uptime.gif


I wonder if this is a home versus pro issue?


No, same place on my 1803 home.

😉 Good Guy 😉 June 14th 18 09:43 PM

Where did Where's Waldo put Up Time in 1803?
 
On 14/06/2018 19:26, T wrote:
Hi All,

in W10-1803, where did they move Up Time? It use to be in
Task Manager, Performance.

Many thanks,
-T


You are a rogue trader who should be arrested and locked away for
defrauding seniors and other unsuspecting Windows users.

You don't even know how to ask a question on a public newsgroup. The
language used is that of rogue traders. I wouldn't go near them!!!1


/--- This email has been checked for viruses by
Windows Defender software.
//https://www.microsoft.com/en-gb/windows/comprehensive-security/



--
With over 600 million devices now running Windows 10, customer
satisfaction is higher than any previous version of windows.


VanguardLH[_2_] June 14th 18 09:55 PM

Where did Where's Waldo put Up Time in 1803?
 
T wrote:

in W10-1803, where did they move Up Time? It use to be in Task
Manager, Performance.


Alternatively, in a command shell, you could run:

systeminfo.exe | find "Time:"

That doesn't tell you the uptime. That tells you when the current
Windows instance got loaded (System Boot Time). There will probably be
a long delay while it reads the hotfix information (which you don't want
to see just to see uptime).

Another choice is to run:

net statistics (workstartion|server)

Does not matter if you specify stats for workstation or server mode. It
is the first output line you want that says the stats were compiled
"since" the boot timestamp, so you could modify the above command to:

net statistics workstation | find "since"

Systeminfo and net measure from slightly different points in the Windows
load hence they can be off by several seconds depending on how speedy is
the Windows load. Works in Windows 7. Probably still be available in
Windows 10.

If you don't want to do the in-head math to computer the length of time
from the boot time until now, and because you, a tech guy, should
already be familiar with SysInternals' tools, use psinfo to tell you the
uptime, as in:

psinfo | find "Uptime:"

You can use Powershell to get you the uptime by querying the
W32_OperatingSystem WMI class, as in:

Get-WmiObject win32_operatingsystem | select csname, @{LABEL='LastBootUpTime';EXPRESSION={$_.ConverttoD ateTime($_.lastbootuptime)}}

Another PS method is:

Get-WmiObject -Class Win32_OperatingSystem -Property LastBootUpTime

but the LastBootTime attribute isn't in human readable format. A
problem with querying the WMI property is that is might measure only
from when the OS got started, not from when it got loaded. For example,
I've read the WMI property measures from when the OS came out of SUSPEND
state. That is, the uptime could be from when the OS got loaded or when
it last came out of SUSPEND state. I never suspend or use any power
saving mode for my computer as it would interfere with scheduled tasks,
especially backups (since way too many backup programs want to use their
own scheduler process instead of Task Scheduler). Instead I use a power
plan that merely spins down the HDDs and turns off video to save power
but the computer is still running to remain usable for unattended tasks.
Since I don't suspend my computers, I cannot test if the WMI property
reports time from boot or time from last not-suspended.

T June 14th 18 10:12 PM

Where did Where's Waldo put Up Time in 1803?
 
On 06/14/2018 01:55 PM, VanguardLH wrote:
T wrote:

in W10-1803, where did they move Up Time? It use to be in Task
Manager, Performance.


Alternatively, in a command shell, you could run:

systeminfo.exe | find "Time:"

That doesn't tell you the uptime. That tells you when the current
Windows instance got loaded (System Boot Time). There will probably be
a long delay while it reads the hotfix information (which you don't want
to see just to see uptime).

Another choice is to run:

net statistics (workstartion|server)

Does not matter if you specify stats for workstation or server mode. It
is the first output line you want that says the stats were compiled
"since" the boot timestamp, so you could modify the above command to:

net statistics workstation | find "since"

Systeminfo and net measure from slightly different points in the Windows
load hence they can be off by several seconds depending on how speedy is
the Windows load. Works in Windows 7. Probably still be available in
Windows 10.

If you don't want to do the in-head math to computer the length of time
from the boot time until now, and because you, a tech guy, should
already be familiar with SysInternals' tools, use psinfo to tell you the
uptime, as in:

psinfo | find "Uptime:"

You can use Powershell to get you the uptime by querying the
W32_OperatingSystem WMI class, as in:

Get-WmiObject win32_operatingsystem | select csname, @{LABEL='LastBootUpTime';EXPRESSION={$_.ConverttoD ateTime($_.lastbootuptime)}}

Another PS method is:

Get-WmiObject -Class Win32_OperatingSystem -Property LastBootUpTime

but the LastBootTime attribute isn't in human readable format. A
problem with querying the WMI property is that is might measure only
from when the OS got started, not from when it got loaded. For example,
I've read the WMI property measures from when the OS came out of SUSPEND
state. That is, the uptime could be from when the OS got loaded or when
it last came out of SUSPEND state. I never suspend or use any power
saving mode for my computer as it would interfere with scheduled tasks,
especially backups (since way too many backup programs want to use their
own scheduler process instead of Task Scheduler). Instead I use a power
plan that merely spins down the HDDs and turns off video to save power
but the computer is still running to remain usable for unattended tasks.
Since I don't suspend my computers, I cannot test if the WMI property
reports time from boot or time from last not-suspended.


Thank you!

T June 14th 18 10:13 PM

Where did Where's Waldo put Up Time in 1803?
 
On 06/14/2018 01:16 PM, Andy Burns wrote:
T wrote:

Paul wrote:

T wrote:

in W10-1803, where did they move Up Time?Â* It use to be in
Task Manager, Performance.

And mine still seems to be working in 17134.xxx
https://s33.postimg.cc/m3xdj0xwf/uptime.gif


I wonder if this is a home versus pro issue?


No, same place on my 1803 home.


Thank you

Customer never reboot her computer. I set her
backup to reboot at 01:00, so maybe ...



All times are GMT +1. The time now is 04:17 PM.

Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright © 2004 - 2006 PCbanter
Comments are property of their posters