Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 516323
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T07:43:10+00:00 2026-05-13T07:43:10+00:00

What’s the simplest way of programatically checking whether or not a particular Windows machine

  • 0

What’s the simplest way of programatically checking whether or not a particular Windows machine is currently being used by a human being?

I’m thinking about writing a “politeness monitor” for our rather limited Internet connection – basically a way to see who is currently actively using the Internet at any one time, so when someone needs to download a large file, they can minimise the annoyance to others (and keep those statistics historically, so one can predict when the uplink isn’t going to be too laggy). I’m trying to gather multiple sources of evidence which one could then use to infer activity.

For Windows users, it would be quite useful to be able to see whether or not they are typing or moving the mouse around, or some other equivalent measure of activity. I’ve already considered using the System.Diagnostics.Process class to see if certain processes are running (online games and other bandwidth heavy apps) and when they were launched. I figure if any of a bunch of common userland processes (firefox, iTunes etc.) were launched in the last half-hour, it’s a reasonable bet that there’s a meatbag sitting in the chair doing something. Once I’ve detected activity, I send a tiny HTTP POST request (saying “Hey, I’m alive and doing something!”) to the server and a webapp running on my Linux box gets updated to show that the user is active.

I’ve considered using IM status, but different IM clients seem to have different levels of OS integration – and people don’t seem to update those as much as would be nice. Like all good Web 2.0 citizens, I am using Twitter, of course. 😉

Disclaimer: I’m a UNIX and Mac guy who avoids Windows. I’ve fiddled around with .NET in Mono but have never touched Win32 APIs before. Be gentle.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T07:43:10+00:00Added an answer on May 13, 2026 at 7:43 am

    You might want to look at GetLastInputInfo:

    The GetLastInputInfo function retrieves the time of the last input event.

    It’s a Windows API function you’d call via interop:

    [DllImport("user32.dll")]
    static extern bool GetLastInputInfo(ref LASTINPUTINFO plii);
    
    [StructLayout( LayoutKind.Sequential )]
    struct LASTINPUTINFO
    {
        public static readonly int SizeOf = Marshal.SizeOf(typeof(LASTINPUTINFO));
    
        [MarshalAs(UnmanagedType.U4)]
        public int cbSize;    
        [MarshalAs(UnmanagedType.U4)]
        public UInt32 dwTime;
    }
    

    Edit: er, you did’t specify in the question what language you’re using, I just assumed .Net based since you referenced System.Diagonstics.Process

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 397k
  • Answers 397k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer This appears to work: _applicationObject.ItemOperations.Navigate("about:blank", vsNavigateOptions.vsNavigateOptionsDefault); This code opens the… May 15, 2026 at 3:11 am
  • Editorial Team
    Editorial Team added an answer Unfortunately this doesn't apply since it seems the OP isn't… May 15, 2026 at 3:11 am
  • Editorial Team
    Editorial Team added an answer this will give you what you want..8534788b-9000-4729-846b-81a3f49c9f91 select CONVERT(varchar(36), 0x38353334373838622D393030302D343732392D383436622D383161336634396339663931)… May 15, 2026 at 3:11 am

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.