
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-10-2012 11:25 AM
i want to create a report whith the last boottime of the computers.
Is there any registry key that i can read out?
I hhave seen, that there is a file called "bootstat.dat" in "c:\windows\".
is it possible to read out the timestamp with lansweeper?
with kindly regards
Andreas
Solved! Go to Solution.
- Labels:
-
General Discussion

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-10-2012 06:39 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-02-2012 06:17 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-25-2012 05:46 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-25-2012 01:34 PM
ghelpdesk wrote:
I've just realised that LS does scan the pagefile via WMI (although the default idletime is 20 days). If you were to change that to 0 you could report on this data instead of setting up a separate filescan.
The last modified date of pagefile.sys is not retrieved through this WMI scan. Note that the "Lastchanged" field of tblPageFile indicates when Lansweeper last detected (scanned) a change in the tblPageFile field data.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-12-2012 07:14 PM
Select Top (1000000) tblComputers.Computername, tblComputers.ComputerUnique, tblComputersystem.Model, tblOperatingsystem.Caption, tblFileVersions.LastModified As [Up since], tblComputers.Username As [Last Logged on User], tblComputers.Lastseen As [Last Seen] From tblComputers Inner Join tblFileVersions On tblComputers.Computername = tblFileVersions.Computername Inner Join tblComputersystem On tblComputers.Computername = tblComputersystem.Computername Inner Join tblOperatingsystem On tblComputers.Computername = tblOperatingsystem.Computername Where tblFileVersions.LastModified Is Not Null And tblFileVersions.FilePathfull Like '%pagefile.sys' Order By [Up since]
You will get the last modified time on the pagefile based on the last scan of the computer, so any computer with a current scan date should be accurate.
It's not the best, but it works for what we need here.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-10-2012 06:59 PM
great, then i will wait for the Update...

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-10-2012 06:39 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-10-2012 06:33 PM
systeminfo| find "System Boot Time"
net statistics workstation | find "Statistics since"
The only caveat is that the PC would have to be on-line at the time it was run.
