US6978303B1 - Monitoring of computer usage - Google Patents
Monitoring of computer usage Download PDFInfo
- Publication number
- US6978303B1 US6978303B1 US09/696,177 US69617700A US6978303B1 US 6978303 B1 US6978303 B1 US 6978303B1 US 69617700 A US69617700 A US 69617700A US 6978303 B1 US6978303 B1 US 6978303B1
- Authority
- US
- United States
- Prior art keywords
- utility
- program
- window
- application
- computer
- Prior art date
- Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
- Expired - Lifetime, expires
Links
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F11/00—Error detection; Error correction; Monitoring
- G06F11/30—Monitoring
- G06F11/34—Recording or statistical evaluation of computer activity, e.g. of down time, of input/output operation ; Recording or statistical evaluation of user activity, e.g. usability assessment
- G06F11/3409—Recording or statistical evaluation of computer activity, e.g. of down time, of input/output operation ; Recording or statistical evaluation of user activity, e.g. usability assessment for performance assessment
- G06F11/3419—Recording or statistical evaluation of computer activity, e.g. of down time, of input/output operation ; Recording or statistical evaluation of user activity, e.g. usability assessment for performance assessment by assessing time
- G06F11/3423—Recording or statistical evaluation of computer activity, e.g. of down time, of input/output operation ; Recording or statistical evaluation of user activity, e.g. usability assessment for performance assessment by assessing time where the assessed time is active or idle time
Definitions
- the invention relates to monitoring of usage of computers such as networked PCs.
- a computer usage monitoring utility comprising means for operating as a background application transparently to a user to capture usage data indicating usage of the computer, wherein the utility comprises means for automatically determining a productivity classification for each used application identified in the usage data.
- the utility comprises means for recording an event for each application used by a user and for applying a productivity classification for each event.
- the utility accesses a classification table in which a productivity classification is allocated to application groups, to applications, and to window text keywords.
- the utility comprises means for attempting to classify productivity in sequence according to application group, application, and keywords.
- the utility comprises means for checking for an active window at periodic callback intervals, and for marking an idle indicator if user activity is below a threshold.
- the utility comprises means for generating an event record at a callback interval when either a frame time period expires or when an active application changes, whichever is earlier.
- the utility comprises means for determining usage data according to a captured number of actions of user input devices such as a keyboard and a mouse.
- the utility comprises means for incrementing an idle count at periodic intervals if an input device is inactive and for marking a window as idle when the count reaches a threshold.
- the utility comprises means for maintaining a temporary list of applications associated with windows previously identified, for retrieving an application name for a window if the window is present in the list, and for interrogating the operating system to determine the application name if the window is not in the list.
- the utility comprises means for searching in an operating system for an opened process with a name indicating that it is an executable associated with a window.
- the utility comprises means for capturing an active URL if the active application is a browser.
- the utility comprises an authorised stop program for closing the utility for purposes such as upgrade.
- the stop program comprises means for creating a stop mutex
- the utility comprises means for closing down in an orderly manner if the mutex is opened.
- the utility comprises a listener thread for listening for a mutex at periodic intervals.
- the utility comprises a protection program comprising means for executing in parallel to a main program implementing monitoring functions, both the main program and the protection program comprising means for determining if the other has stopped executing, and for re-starting it if it has stopped executing.
- both the main program and the protection program open a mutex and comprise means for detecting existence of the mutex of the other to determine if the other is executing.
- the utility comprises a second protection program comprising means for re-activating the main program or the first protection program if either stops operating and for terminating itself when it has finished execution.
- the main program comprises means for writing an alert to a log file if a protection program is terminated.
- the utility comprises a live transfer mechanism for automatic transfer of event records to a server in real time.
- the utility further comprises a triggered event mechanism comprising means for triggering an alert message if alert usage conditions are met.
- an alert condition is set according to a user profile.
- the invention provides a computer usage monitoring utility comprising means for operating as a background application transparently to a user to capture usage data indicating usage of the computer, wherein:
- FIG. 1 is a flow diagram illustrating operation of an initialisation routine for a data collection utility of the invention
- FIGS. 2 to 8 are flow diagrams illustrating operation of the utility
- FIG. 9 is a diagram illustrating protection of the utility.
- FIG. 10 is a diagram illustrating capture of productivity information.
- FIG. 1 an initialisation process 1 for a data collection utility of the invention is illustrated.
- the utility operates as a background process in a user's PC in a transparent manner with minimal effect on applications running on the computer.
- step 2 An internal hidden window is created in step 2 and Dynamic Linked Libraries (DLLs) are loaded in step 3 for operation of the utility.
- step 4 the utility reads configuration settings from the system registry and in step 5 it sets up keyboard and mouse hooks.
- a “snap-shot” timer is set up in memory in step 6 .
- a protection thread is started in step 7 . This is an independent thread which checks every second for the existence of a stop mutex and for the existence of a protection mutex, described in detail below. Any outstanding log files are transferred in step 8 , and a start-up alert to indicate the time of starting is recorded in step 9 .
- a main event process 20 is illustrated in FIG. 2 , and as indicated by a decision step 21 the three possible events are snap shot timer callback 22 , operating system shutdown 23 , and end task request 30 .
- a snap-shot timer callback process 22 is activated for the main operation of the utility. This is described in detail below.
- the main event process 20 also includes an operating system (WindowsTM in this embodiment) shut-down process 23 . This comprises recording an alert with the shut-down time in step 24 , and in a “write out last entry” process 64 it writes out an entry to save records in memory to a disk file. Operating system shut-down also results in the utility attempting to transfer any files to a server in step 50 .
- the protection thread is stopped in step 27 and the utility exits in step 28 .
- the end task request process 30 arises upon an attempt to stop operation of the utility.
- An alert is recorded in step 31 , memory records are saved to file in step 64 , and a file transfer attempt is made in step 50 .
- a decision step 34 if a stop flag is set (indicating authorised closing of the utility) the protection thread is stopped in step 35 . If not, the utility exits in step 36 .
- a primary operation of the utility is the callback process 22 , described in detail now with reference to FIG. 3 .
- This process is started at periodic intervals which are configurable. A typical interval is 5 secs.
- the protection thread checks if the stop mutex has been set by the closing program of the utility. The stop mutex is used to allow an authorised user or process to terminate the utility for upgrading or other authorised reason. If this is set, the utility records an alert to the effect that is has closed and the alert includes details of the user or process which used the stop mutex.
- the log files are transferred in step 50 and the utility is closed in step 53 .
- the protection thread also checks every second for the protection mutex, as described in detail below.
- step 41 the utility gets the active window, and in step 42 it gets the key-hit and mouse event counts using the hooks which were set up at initialisation. This is achieved by using the function “SetWindowsHookEx” in WindowsTM to hook all keyboard and mouse activity. A counter is incremented with every keystroke and every mouse action.
- step 43 if there has not been any keyboard or mouse activity an idle count is incremented in step 44 and is then checked in step 45 against a user setting. If the count exceeds the user setting the window is marked as idle in step 47 . If there has been mouse or keyboard activity the idle count is reset in step 46 .
- An “active window” process 48 is then executed. As indicated by the decision step 49 when the next file transfer time is reached the “file transfer” process 50 is implemented.
- the utility effectively records both user activity in relation to applications, and also when the system is idle in the form of “idle events”.
- the “active window” process 48 ensures that there is an event either (a) when a frame time of 15 minutes expires, or (b) when an application is changed, whichever is earlier. Thus, there is an event at least every frame period and this allows event database reporting programs to use timelines synchronised with the frames.
- step 60 the utility captures the window title text to provide an indication of what the user is doing.
- step 61 it checks if the title is a general shell title such as “Program Manager”, which can be ignored.
- the current record in memory is saved to disk at the end of every frame.
- the new record which is created has the same information as the previous record but a duration field set to zero.
- the utility monitors real time for expiration of the current frame period as indicated in step 62 . If it has expired, in step 63 the utility determines if the current entry occurred in the previous or the new frame and it executes the “write out last entry” process 64 followed by the “create new entry” process 65 .
- the utility determines if the current window is the same as the last window in step 66 , and if so it returns to the call-back routine 22 in step 70 . If not, in step 67 it calculates the duration of the last entry using the following counters:
- step 80 the utility determines if a file transfer is in progress, and if so it adds the entry to a temporary list in step 89 . If not, in step 81 it checks if the temporary list is empty. If not empty, in step 82 it gets the entry at the head of the list and if empty it uses the current entry. In step 84 , it checks if a URL flag has been set, indicating that a browser is the active application. If so, it appends the URL to the window text in memory.
- the entry is encrypted in step 86 and the entry is written to the log file in step 87 .
- the encrypted data is binary with checksums.
- steps 81 to 87 are repeated until all the entries are written out.
- the process 65 for creating a new entry is illustrated in FIG. 6 .
- Memory is allocated in step 100 and variables are initialised in step 101 .
- the variables are username, computer name, current time, and window title.
- a window list is maintained and if the current window is already in the list (step 102 ) the application name is retrieved from the window list in step 110 . This list minimises the number of searches that have to be conducted. Thus, placing of a window in the background or minimising it will not result in a new process tree search when that window becomes active again.
- the utility gets the ID of the application. If the OS is NTTM (Step 104 ) the utility simple finds the performance statistics for the ID in step 105 .
- the utility scans through the applications using Toolhelp routines in step 106 . This involves taking a snapshot of all running processes and scanning through each one that has a “.exe”, a “.scr” extension, or any other executable file name extensions for the one with a process ID that matches the process ID associated with the current window handle. As indicated by the steps 107 and 109 the value “UNKNOWN” is written if the application details are not found, and they are written in step 108 if they are found. The utility determines if the application is an Internet browser in step 111 , and if so it gets the URL in step 12 and sets a URL flag in step 113 . Flow returns to the main process in step 114 .
- Each record includes the computer name, the username, the current time (start time of event), frame start time, time of window snap shot, additional information such as window text, application name, event duration, number of key strokes, the number of mouse events, and, if applicable, the URL.
- step 120 the local log file is closed and it is copied to the remote server in step 121 according to the configured directory path.
- the log file is re-opened in step 125 if the copy is not successful as indicated by step 122 . If successful, the log file is deleted in step 123 and a new log file is opened in step 124 . Return to the main program is indicated by step 126 .
- the utility has a background protection thread which checks for the stop mutex and the protection mutex. As indicated by the decision step 131 , if the stop mutex exists a stop flag is set in step 136 and the thread is stopped in an orderly manner in step 137 by the stop program of the utility. The thread also checks (step 132 ) for the protection mutex. If this does not exist an alert is created in step 133 and a protection program is started in step 134 . The utility then “sleeps” for 1 second before return to step 131 , i.e. the thread checks for each mutex every second.
- the stop mutex is opened by a stop program of the utility which allows authorized and orderly closing of the utility for purposes such as upgrade.
- This program is password-protected.
- the protection mutex is opened by a protection program of the utility and should always exist.
- the main program of the utility (“DCUApp”) and the protection program (“DCUProt”) each have a thread checking the protection mutex of the other.
- the protection program is open, but not performing any processing activity. If the mutex of the main program is absent, it automatically re-starts the main program. If the mutex of the protection program is absent, the main program automatically re-starts the protection program. There is thus parallel protection because absence of either mutex is an indication of an unauthorized attempt to close the utility.
- the protection program has either standard protection or extended protection functions, as set out below.
- the second utility has a generic filename so as to be inconspicuous within the task manager.
- the Microsoft WindowsTM operating system sets a ‘process tree’ from one application to the other.
- Windows NT/2000TM operating systems a user can specify to terminate a process and its process tree. This allows illegal termination of the utility by process tree termination on Windows NT or 2000TM operating systems.
- each utility calls a third, transitory application which executes the terminated utility. This third utility terminates as soon as it has finished its execution, therefore releasing the process tree from the two parallel applications. Extended protection makes it impossible to terminate illegally using Microsoft 9 ⁇ , NTM or Windows 2000TM operating systems.
- FIG. 9 illustrates the protection mechanisms diagramatically, in which the utility is referred to as a Data Collection Utility Application (DCUApp).
- DCUApp Data Collection Utility Application
- alerts which include details such as USER LOGIN and SHUTDOWN. Importantly, alerts are used to log attempts to stop the utility.
- the utility includes a data upload program which runs either as a Windows NTTM service or as a stand alone program. It must be located on the computer which has the log database. After a user-configurable time-frame, the log files within the central server directory are interpreted by the data upload utility.
- the data upload program performs the following:
- Each entry of the log file contains a user, computer, application and window title which needs to be entered into the server database. If a log file entry contains a new user, computer, or application, a corresponding entry is placed within the appropriate area of the database. If the log file contains existing information, only the reference to the existing information is required to be stored within the database. This allows for a highly optimised database system.
- Each logged entry within the database must be assigned a productivity rating when placed within the database.
- the assignment of a productivity rating is dependent on the window text contained in the log, the application of the log entry, or the group to which the application has been assigned.
- the productivity relationship is illustrated in FIG. 10 .
- the productivity score for this group is assigned to the entry for this log item. If the application group's productivity is marked as dependent on application then the productivity of the log item is set from the productivity of the application. If the productivity of the application is set to unknown, then window text of the log item is compared with a set of known keywords. Each keyword has a specified productivity rating. If no keywords match, then the productivity for this log item is set to unknown entry
- the utility can be used to monitor all background windows on the user's PC. This is achieved using the EnumWindowsTM Function to scan through all desktop windows, limiting to only visible windows using the IsWindowVisible Function and storing the records to an internal linked list. Background window information may be useful in situations such as where certain users may try to thwart the utility by keeping a productive application active as a small window in the foreground while reading a non-productive item as a larger inactive window in the background.
- a live transfer mechanism may be used instead of the log file mechanism, in which the utility transmits records over a TCPIP link rather than writing to a log file. In the event that the link is unavailable records are stored to the log file and transferred when the link is re-established.
- the utility also includes a triggered event mechanism to automatically execute an event based on an activity or sequence of activities performed by a user such as non-productive activity exceeding a predefined period in a particular day or alerting a user if they spend excessive time at a particular task.
- the utility also identifies standard profiles for users and triggers an alert when a user falls outside a predefined tolerance as identified by a standard profile.
- the invention provides for capture of very comprehensive information.
- This information is in discrete event records, which are simple to manipulate downstream for generation of reports.
- the frequency of event records allows time-based reports to be generated in a simple manner. For example productivity versus time can be easily plotted from the database. Because data is captured at the periodic callback process intervals there is very little impact on operation of the computer, as opposed to the prior approach of trapping all commands.
Landscapes
- Engineering & Computer Science (AREA)
- General Engineering & Computer Science (AREA)
- Theoretical Computer Science (AREA)
- Computer Hardware Design (AREA)
- Quality & Reliability (AREA)
- Physics & Mathematics (AREA)
- General Physics & Mathematics (AREA)
- Debugging And Monitoring (AREA)
- Computer And Data Communications (AREA)
- Iron Core Of Rotating Electric Machines (AREA)
Abstract
Description
-
- the utility comprises means for recording usage data in discrete events, in which there is an event at expiry of a periodic frame interval or when a used application changes, whichever is earlier, and the utility comprises means for activating a callback process at periodic intervals to check for either of said two conditions exist, and
- the utility comprises means for automatically determining a productivity classification for each event.
-
- a foreground counter of the time the window has been receiving keyboard or mouse user inputs,
- a key-hit counter, and
- a mouse event counter.
-
- NT Service Uploading,
- Standard Executable Uploading,
- TCP/IP Uploading,
- Log entry error detection. Each entry within a log file is marked as uploaded if it is successfully added to the central database store. If no errors occur during the uploading of a log file, the log file is deleted once all entries have been uploaded. If errors occur on entering an entry into the database, this entry is written to a separate error file and the next log entry is added to the database, and
- Log file deletion. Once all records of a log file are successfully imported into the database, the log file is deleted.
Claims (14)
Applications Claiming Priority (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
IE990893 | 1999-10-26 |
Publications (1)
Publication Number | Publication Date |
---|---|
US6978303B1 true US6978303B1 (en) | 2005-12-20 |
Family
ID=11042151
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
US09/696,177 Expired - Lifetime US6978303B1 (en) | 1999-10-26 | 2000-10-26 | Monitoring of computer usage |
Country Status (5)
Country | Link |
---|---|
US (1) | US6978303B1 (en) |
EP (1) | EP1096382B1 (en) |
AT (1) | ATE365944T1 (en) |
DE (1) | DE60035324T2 (en) |
ES (1) | ES2288467T3 (en) |
Cited By (79)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US20020035627A1 (en) * | 2000-09-20 | 2002-03-21 | Hiromi Sutou | Terminal for computer network and recording method of control history |
US20030208394A1 (en) * | 2002-05-01 | 2003-11-06 | Todd Burris | Sales tracking and forecasting application tool |
US20050278535A1 (en) * | 2004-06-12 | 2005-12-15 | Microsoft Corporation | Profile protection |
US20060005248A1 (en) * | 2004-06-12 | 2006-01-05 | Microsoft Corporation | Registry protection |
US20060230292A1 (en) * | 2005-04-12 | 2006-10-12 | International Business Machines Corporation | Method, apparatus, and program to post process applications encrypting sensitive objects that are logged |
US20070006047A1 (en) * | 2005-06-15 | 2007-01-04 | The Board Of Trustees Of The University Of Illinois | Architecture support system and method for memory monitoring |
US7188170B1 (en) * | 2001-04-27 | 2007-03-06 | Blazent, Inc. | System for managing resources |
US20070150587A1 (en) * | 2005-12-22 | 2007-06-28 | D Alo Salvatore | Method and apparatus for populating a software catalog with automated use signature generation |
US20070219941A1 (en) * | 2006-03-17 | 2007-09-20 | Christopher Schnurr | Monitoring of computer events |
US20070233671A1 (en) * | 2006-03-30 | 2007-10-04 | Oztekin Bilgehan U | Group Customized Search |
US20070282920A1 (en) * | 2006-05-30 | 2007-12-06 | Hitachi, Ltd. | Job management system and method for minimizing log data |
US20080059474A1 (en) * | 2005-12-29 | 2008-03-06 | Blue Jungle | Detecting Behavioral Patterns and Anomalies Using Activity Profiles |
US20080250406A1 (en) * | 2007-04-04 | 2008-10-09 | Microsoft Corporation | Virtual Machine Support for Metered Computer Usage |
US20080256229A1 (en) * | 2007-04-13 | 2008-10-16 | Microsoft Corporation | Detecting Machine Utilization Activity |
US20090018731A1 (en) * | 2007-07-12 | 2009-01-15 | Mobile Office, Inc. | Personal computer control for vehicles |
WO2009011690A2 (en) * | 2007-07-12 | 2009-01-22 | Mobile Office, Inc. | Personal computer control for vehicles |
US20090132579A1 (en) * | 2007-11-21 | 2009-05-21 | Kwang Edward M | Session audit manager and method |
US20100205238A1 (en) * | 2009-02-06 | 2010-08-12 | International Business Machines Corporation | Methods and apparatus for intelligent exploratory visualization and analysis |
US20100325259A1 (en) * | 2009-06-17 | 2010-12-23 | Volonics Corporation | Supervised Access Computer Network Router |
CN102096625A (en) * | 2009-12-15 | 2011-06-15 | 埃森哲环球服务有限公司 | Monitoring and tracking application usage |
US20120206606A1 (en) * | 2000-03-14 | 2012-08-16 | Joseph Robert Marchese | Digital video system using networked cameras |
US20120227046A1 (en) * | 2010-01-06 | 2012-09-06 | Jiransoft Co., Ltd. | Method and apparartus for monitoring usage patterns by utilizing window titles |
US8548431B2 (en) | 2009-03-30 | 2013-10-01 | Microsoft Corporation | Notifications |
US8560959B2 (en) | 2010-12-23 | 2013-10-15 | Microsoft Corporation | Presenting an application change through a tile |
US20130347125A1 (en) * | 2012-06-22 | 2013-12-26 | Idecsi | Secondary Asynchronous Background Authorization (SABA) |
US20140032280A1 (en) * | 2012-07-26 | 2014-01-30 | Uniloc Luxembourg, S.A. | Employee performance evaluation |
US8687023B2 (en) | 2011-08-02 | 2014-04-01 | Microsoft Corporation | Cross-slide gesture to select and rearrange |
US8689123B2 (en) | 2010-12-23 | 2014-04-01 | Microsoft Corporation | Application reporting in an application-selectable user interface |
US8706872B2 (en) | 2012-07-09 | 2014-04-22 | Parentsware, Llc | Agreement compliance controlled information throttle |
US8830270B2 (en) | 2011-09-10 | 2014-09-09 | Microsoft Corporation | Progressively indicating new content in an application-selectable user interface |
US8836648B2 (en) | 2009-05-27 | 2014-09-16 | Microsoft Corporation | Touch pull-in gesture |
US8850569B1 (en) * | 2008-04-15 | 2014-09-30 | Trend Micro, Inc. | Instant messaging malware protection |
US8893033B2 (en) | 2011-05-27 | 2014-11-18 | Microsoft Corporation | Application notifications |
US8922575B2 (en) | 2011-09-09 | 2014-12-30 | Microsoft Corporation | Tile cache |
US8933952B2 (en) | 2011-09-10 | 2015-01-13 | Microsoft Corporation | Pre-rendering new content for an application-selectable user interface |
US8935631B2 (en) | 2011-09-01 | 2015-01-13 | Microsoft Corporation | Arranging tiles |
US8970499B2 (en) | 2008-10-23 | 2015-03-03 | Microsoft Technology Licensing, Llc | Alternative inputs of a mobile communications device |
US8990733B2 (en) | 2010-12-20 | 2015-03-24 | Microsoft Technology Licensing, Llc | Application-launching interface for multiple modes |
US20150127819A1 (en) * | 2013-11-01 | 2015-05-07 | The Nielsen Company (Us), Llc | Methods and apparatus to credit background applications |
US9043462B2 (en) | 2012-07-09 | 2015-05-26 | Parentsware, Inc. | Schedule and location responsive agreement compliance controlled information throttle |
US9052820B2 (en) | 2011-05-27 | 2015-06-09 | Microsoft Technology Licensing, Llc | Multi-application environment |
US9104440B2 (en) | 2011-05-27 | 2015-08-11 | Microsoft Technology Licensing, Llc | Multi-application environment |
US9116963B2 (en) | 2007-03-13 | 2015-08-25 | Google Inc. | Systems and methods for promoting personalized search results based on personal information |
US9128605B2 (en) | 2012-02-16 | 2015-09-08 | Microsoft Technology Licensing, Llc | Thumbnail-image selection of applications |
US9158445B2 (en) | 2011-05-27 | 2015-10-13 | Microsoft Technology Licensing, Llc | Managing an immersive interface in a multi-application immersive environment |
US9166883B2 (en) | 2006-04-05 | 2015-10-20 | Joseph Robert Marchese | Network device detection, identification, and management |
US9223472B2 (en) | 2011-12-22 | 2015-12-29 | Microsoft Technology Licensing, Llc | Closing applications |
US9244802B2 (en) | 2011-09-10 | 2016-01-26 | Microsoft Technology Licensing, Llc | Resource user interface |
US20160085986A1 (en) * | 2005-05-31 | 2016-03-24 | Kurt James Long | System and method of fraud and misuse detection using event logs |
US9323424B2 (en) | 2008-10-23 | 2016-04-26 | Microsoft Corporation | Column organization of content |
US9329774B2 (en) | 2011-05-27 | 2016-05-03 | Microsoft Technology Licensing, Llc | Switching back to a previously-interacted-with application |
US9383917B2 (en) | 2011-03-28 | 2016-07-05 | Microsoft Technology Licensing, Llc | Predictive tiling |
US9423951B2 (en) | 2010-12-31 | 2016-08-23 | Microsoft Technology Licensing, Llc | Content-based snap point |
US9430130B2 (en) | 2010-12-20 | 2016-08-30 | Microsoft Technology Licensing, Llc | Customization of an immersive environment |
US9450952B2 (en) | 2013-05-29 | 2016-09-20 | Microsoft Technology Licensing, Llc | Live tiles without application-code execution |
US9451822B2 (en) | 2014-04-10 | 2016-09-27 | Microsoft Technology Licensing, Llc | Collapsible shell cover for computing device |
US20160285918A1 (en) * | 2015-03-29 | 2016-09-29 | Whitebox Security Ltd. | System and method for classifying documents based on access |
US9557909B2 (en) | 2011-09-09 | 2017-01-31 | Microsoft Technology Licensing, Llc | Semantic zoom linguistic helpers |
US9600298B2 (en) | 2013-04-29 | 2017-03-21 | International Business Machines Corporation | Active and efficient monitoring of a graphical user interface |
US9658766B2 (en) | 2011-05-27 | 2017-05-23 | Microsoft Technology Licensing, Llc | Edge gesture |
US9665384B2 (en) | 2005-08-30 | 2017-05-30 | Microsoft Technology Licensing, Llc | Aggregation of computing device settings |
US9674335B2 (en) | 2014-10-30 | 2017-06-06 | Microsoft Technology Licensing, Llc | Multi-configuration input device |
US9769293B2 (en) | 2014-04-10 | 2017-09-19 | Microsoft Technology Licensing, Llc | Slider cover for computing device |
US9841874B2 (en) | 2014-04-04 | 2017-12-12 | Microsoft Technology Licensing, Llc | Expandable application representation |
US9854393B2 (en) | 2012-07-09 | 2017-12-26 | Eturi Corp. | Partial information throttle based on compliance with an agreement |
US9887887B2 (en) | 2012-07-09 | 2018-02-06 | Eturi Corp. | Information throttle based on compliance with electronic communication rules |
US9977575B2 (en) | 2009-03-30 | 2018-05-22 | Microsoft Technology Licensing, Llc | Chromeless user interface |
US10079931B2 (en) | 2012-07-09 | 2018-09-18 | Eturi Corp. | Information throttle that enforces policies for workplace use of electronic devices |
US20190035304A1 (en) * | 2006-11-03 | 2019-01-31 | Joanne Walker | Systems and methods for computer implemented treatment of behavioral disorders |
US10209851B2 (en) | 2015-09-18 | 2019-02-19 | Google Llc | Management of inactive windows |
US10254942B2 (en) | 2014-07-31 | 2019-04-09 | Microsoft Technology Licensing, Llc | Adaptive sizing and positioning of application windows |
US10353566B2 (en) | 2011-09-09 | 2019-07-16 | Microsoft Technology Licensing, Llc | Semantic zoom animations |
US10440063B1 (en) | 2018-07-10 | 2019-10-08 | Eturi Corp. | Media device content review and management |
US10592080B2 (en) | 2014-07-31 | 2020-03-17 | Microsoft Technology Licensing, Llc | Assisted presentation of application windows |
US10642365B2 (en) | 2014-09-09 | 2020-05-05 | Microsoft Technology Licensing, Llc | Parametric inertia and APIs |
US10678412B2 (en) | 2014-07-31 | 2020-06-09 | Microsoft Technology Licensing, Llc | Dynamic joint dividers for application windows |
US10891106B2 (en) | 2015-10-13 | 2021-01-12 | Google Llc | Automatic batch voice commands |
CN113673857A (en) * | 2021-08-13 | 2021-11-19 | 南京理工大学 | A service awareness and resource scheduling system and method for data middle station |
US11188437B1 (en) | 2020-07-30 | 2021-11-30 | Bank Of America Corporation | Remote deployment of monitoring agents on computing systems |
Families Citing this family (7)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
ES2288467T3 (en) * | 1999-10-26 | 2008-01-16 | Iontas Limited | SUPERVISION OF THE USE OF COMPUTERS. |
EP1626327A1 (en) * | 2003-02-03 | 2006-02-15 | Tennessee Pacific Group. L.L.C. | Distribution and rights management of digital content |
US20050004873A1 (en) * | 2003-02-03 | 2005-01-06 | Robin Pou | Distribution and rights management of digital content |
CN100349131C (en) * | 2004-07-26 | 2007-11-14 | 中兴通讯股份有限公司 | Method for positioning malfunction of application program |
EP4250153A3 (en) * | 2010-01-20 | 2023-10-18 | Sysorex USA | Multi-band radio frequency detection and location system |
CN107291493A (en) * | 2017-05-27 | 2017-10-24 | 北京思特奇信息技术股份有限公司 | The building method and system of a kind of Batch Processing processing framework |
CN109446034B (en) * | 2018-10-11 | 2022-02-18 | 广州酷狗计算机科技有限公司 | Method and device for reporting crash event, computer equipment and storage medium |
Citations (54)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US3668653A (en) * | 1968-10-22 | 1972-06-06 | Sundstrad Corp | Control system |
US3906454A (en) * | 1973-05-18 | 1975-09-16 | Bell Telephone Labor Inc | Computer monitoring system |
US4590550A (en) * | 1983-06-29 | 1986-05-20 | International Business Machines Corporation | Internally distributed monitoring system |
US4802116A (en) * | 1986-06-03 | 1989-01-31 | Fisher & Paykel Limited | Programmed controller |
US4982404A (en) * | 1988-10-12 | 1991-01-01 | American Standard Inc. | Method and apparatus for insuring operation of a multiple part system controller |
US5148548A (en) * | 1989-12-19 | 1992-09-15 | Northern Telecom Limited | Method of monitoring cellular radio channels to avoid adjacent and co-channel interference |
US5226117A (en) * | 1990-05-15 | 1993-07-06 | International Business Machines Corporation | Method for simultaneous update and change in parent and child windows |
US5237684A (en) * | 1991-08-12 | 1993-08-17 | International Business Machines Corporation | Customized and versatile event monitor within event management services of a computer system |
EP0652518A1 (en) * | 1993-11-04 | 1995-05-10 | Microsoft Corporation | Operating system based performance monitoring of programs |
US5416726A (en) * | 1992-10-06 | 1995-05-16 | Microsoft Corporation | Method and system for placing a computer in a reduced power state |
US5463775A (en) * | 1991-06-10 | 1995-10-31 | International Business Machines Corporation | System and method for performing monitoring of resources in a data processing system in real time |
US5481667A (en) * | 1992-02-13 | 1996-01-02 | Microsoft Corporation | Method and system for instructing a user of a computer system how to perform application program tasks |
US5654905A (en) * | 1995-09-15 | 1997-08-05 | Ast Research, Inc. | System for tracking computer usage time |
US5675510A (en) * | 1995-06-07 | 1997-10-07 | Pc Meter L.P. | Computer use meter and analyzer |
US5675752A (en) * | 1994-09-15 | 1997-10-07 | Sony Corporation | Interactive applications generator for an interactive presentation environment |
US5713027A (en) * | 1994-05-26 | 1998-01-27 | Hitachi, Ltd. | Method and apparatus for controlling the shutdown of computer systems by using service utilization information and examining a dependency relationship between the computers |
US5717604A (en) * | 1995-05-25 | 1998-02-10 | Wiggins; Christopher | Network monitoring system for tracking, billing and recovering licenses |
US5797018A (en) * | 1995-12-07 | 1998-08-18 | Compaq Computer Corporation | Apparatus and method of preventing a deadlock condition in a computer system |
US5802555A (en) * | 1995-03-15 | 1998-09-01 | Texas Instruments Incorporated | Computer system including a refresh controller circuit having a row address strobe multiplexer and associated method |
US5809250A (en) * | 1996-10-23 | 1998-09-15 | Intel Corporation | Methods for creating and sharing replayable modules representive of Web browsing session |
US5835765A (en) * | 1995-05-31 | 1998-11-10 | Mitsubishi Denki Kabushiki Kaisha | Computer operation management system for a computer operating system capable of simultaneously executing plural application programs |
US5862335A (en) * | 1993-04-01 | 1999-01-19 | Intel Corp. | Method and apparatus for monitoring file transfers and logical connections in a computer network |
US5874960A (en) * | 1995-07-05 | 1999-02-23 | Microsoft Corporation | Method and system for sharing applications between computer systems |
US5949975A (en) * | 1997-03-12 | 1999-09-07 | Microsoft Corp. | Method and system for negotiating capabilities when sharing an application program with multiple computer systems |
US5949415A (en) * | 1997-06-16 | 1999-09-07 | Intel Corporation | Method and apparatus for tracking program usage in a computer system |
US5951700A (en) * | 1995-06-27 | 1999-09-14 | Micron Electronics, Inc. | Methods of computer system usage determination based on hard disk drive activity |
US5983351A (en) * | 1996-10-16 | 1999-11-09 | Intellectual Protocols, L.L.C. | Web site copyright registration system and method |
US5991814A (en) * | 1997-07-10 | 1999-11-23 | Alcatel | Method and apparatus for controlling command line transfer to a network element |
US6026499A (en) * | 1997-01-31 | 2000-02-15 | Kabushiki Kaisha Toshiba | Scheme for restarting processes at distributed checkpoints in client-server computer system |
US6026427A (en) * | 1997-11-21 | 2000-02-15 | Nishihara; Kazunori | Condition variable to synchronize high level communication between processing threads |
US6046740A (en) * | 1997-02-07 | 2000-04-04 | Seque Software, Inc. | Application testing with virtual object recognition |
US6065138A (en) * | 1996-03-29 | 2000-05-16 | Magnitude Llc | Computer activity monitoring system |
US6112237A (en) * | 1996-11-26 | 2000-08-29 | Global Maintech, Inc. | Electronic monitoring system and method for externally monitoring processes in a computer system |
US6158044A (en) * | 1997-05-21 | 2000-12-05 | Epropose, Inc. | Proposal based architecture system |
US6212573B1 (en) * | 1996-06-26 | 2001-04-03 | Sun Microsystems, Inc. | Mechanism for invoking and servicing multiplexed messages with low context switching overhead |
US6222529B1 (en) * | 1999-05-05 | 2001-04-24 | Shareware, Inc. | Method and apparatus for providing multiple sessions on a single user operating system |
EP1096382A2 (en) * | 1999-10-26 | 2001-05-02 | Iontas Limited | Monitoring of computer usage |
US6279124B1 (en) * | 1996-06-17 | 2001-08-21 | Qwest Communications International Inc. | Method and system for testing hardware and/or software applications |
US6282701B1 (en) * | 1997-07-31 | 2001-08-28 | Mutek Solutions, Ltd. | System and method for monitoring and analyzing the execution of computer programs |
US6308208B1 (en) * | 1998-09-30 | 2001-10-23 | International Business Machines Corporation | Method for monitoring network distributed computing resources using distributed cellular agents |
US6351777B1 (en) * | 1999-04-23 | 2002-02-26 | The United States Of America As Represented By The Secretary Of The Navy | Computer software for converting a general purpose computer network into an interactive communications system |
US6363477B1 (en) * | 1998-08-28 | 2002-03-26 | 3Com Corporation | Method for analyzing network application flows in an encrypted environment |
US6381632B1 (en) * | 1996-09-10 | 2002-04-30 | Youpowered, Inc. | Method and apparatus for tracking network usage |
US6414594B1 (en) * | 1996-12-31 | 2002-07-02 | Honeywell International Inc. | Method and apparatus for user-initiated alarms in process control system |
US6438592B1 (en) * | 1998-02-25 | 2002-08-20 | Michael G. Killian | Systems for monitoring and improving performance on the world wide web |
US6446119B1 (en) * | 1997-08-07 | 2002-09-03 | Laslo Olah | System and method for monitoring computer usage |
US6480883B1 (en) * | 1998-06-30 | 2002-11-12 | Kabushiki Kaisha Toshiba | Real-time information transmission system |
US6601058B2 (en) * | 1998-10-05 | 2003-07-29 | Michael Forster | Data exploration system and method |
US6636908B1 (en) * | 1999-06-28 | 2003-10-21 | Sangate Systems, Inc. | I/O system supporting extended functions and method therefor |
US6654036B1 (en) * | 2000-06-05 | 2003-11-25 | International Business Machines Corporation | Method, article of manufacture and apparatus for controlling relative positioning of objects in a windows environment |
US6668244B1 (en) * | 1995-07-21 | 2003-12-23 | Quartet Technology, Inc. | Method and means of voice control of a computer, including its mouse and keyboard |
US6678824B1 (en) * | 1999-11-02 | 2004-01-13 | Agere Systems Inc. | Application usage time limiter |
US6691067B1 (en) * | 1999-04-07 | 2004-02-10 | Bmc Software, Inc. | Enterprise management system and method which includes statistical recreation of system resource usage for more accurate monitoring, prediction, and performance workload characterization |
US6732167B1 (en) * | 1999-11-30 | 2004-05-04 | Accenture L.L.P. | Service request processing in a local service activation management environment |
Family Cites Families (2)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
JP3588485B2 (en) * | 1994-08-26 | 2004-11-10 | 富士通株式会社 | Process scheduling method |
US5872976A (en) * | 1997-04-01 | 1999-02-16 | Landmark Systems Corporation | Client-based system for monitoring the performance of application programs |
-
2000
- 2000-10-26 ES ES00650170T patent/ES2288467T3/en not_active Expired - Lifetime
- 2000-10-26 DE DE60035324T patent/DE60035324T2/en not_active Expired - Lifetime
- 2000-10-26 US US09/696,177 patent/US6978303B1/en not_active Expired - Lifetime
- 2000-10-26 AT AT00650170T patent/ATE365944T1/en not_active IP Right Cessation
- 2000-10-26 EP EP00650170A patent/EP1096382B1/en not_active Expired - Lifetime
Patent Citations (55)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US3668653A (en) * | 1968-10-22 | 1972-06-06 | Sundstrad Corp | Control system |
US3906454A (en) * | 1973-05-18 | 1975-09-16 | Bell Telephone Labor Inc | Computer monitoring system |
US4590550A (en) * | 1983-06-29 | 1986-05-20 | International Business Machines Corporation | Internally distributed monitoring system |
US4802116A (en) * | 1986-06-03 | 1989-01-31 | Fisher & Paykel Limited | Programmed controller |
US4982404A (en) * | 1988-10-12 | 1991-01-01 | American Standard Inc. | Method and apparatus for insuring operation of a multiple part system controller |
US5148548A (en) * | 1989-12-19 | 1992-09-15 | Northern Telecom Limited | Method of monitoring cellular radio channels to avoid adjacent and co-channel interference |
US5226117A (en) * | 1990-05-15 | 1993-07-06 | International Business Machines Corporation | Method for simultaneous update and change in parent and child windows |
US5463775A (en) * | 1991-06-10 | 1995-10-31 | International Business Machines Corporation | System and method for performing monitoring of resources in a data processing system in real time |
US5237684A (en) * | 1991-08-12 | 1993-08-17 | International Business Machines Corporation | Customized and versatile event monitor within event management services of a computer system |
US5481667A (en) * | 1992-02-13 | 1996-01-02 | Microsoft Corporation | Method and system for instructing a user of a computer system how to perform application program tasks |
US5416726A (en) * | 1992-10-06 | 1995-05-16 | Microsoft Corporation | Method and system for placing a computer in a reduced power state |
US5862335A (en) * | 1993-04-01 | 1999-01-19 | Intel Corp. | Method and apparatus for monitoring file transfers and logical connections in a computer network |
US6240452B1 (en) * | 1993-04-01 | 2001-05-29 | Intel Corporation | Method and apparatus for monitoring file transfers and logical connections in a computer database featuring a file transfer record database |
EP0652518A1 (en) * | 1993-11-04 | 1995-05-10 | Microsoft Corporation | Operating system based performance monitoring of programs |
US5713027A (en) * | 1994-05-26 | 1998-01-27 | Hitachi, Ltd. | Method and apparatus for controlling the shutdown of computer systems by using service utilization information and examining a dependency relationship between the computers |
US5675752A (en) * | 1994-09-15 | 1997-10-07 | Sony Corporation | Interactive applications generator for an interactive presentation environment |
US5802555A (en) * | 1995-03-15 | 1998-09-01 | Texas Instruments Incorporated | Computer system including a refresh controller circuit having a row address strobe multiplexer and associated method |
US5717604A (en) * | 1995-05-25 | 1998-02-10 | Wiggins; Christopher | Network monitoring system for tracking, billing and recovering licenses |
US5835765A (en) * | 1995-05-31 | 1998-11-10 | Mitsubishi Denki Kabushiki Kaisha | Computer operation management system for a computer operating system capable of simultaneously executing plural application programs |
US5675510A (en) * | 1995-06-07 | 1997-10-07 | Pc Meter L.P. | Computer use meter and analyzer |
US5951700A (en) * | 1995-06-27 | 1999-09-14 | Micron Electronics, Inc. | Methods of computer system usage determination based on hard disk drive activity |
US5874960A (en) * | 1995-07-05 | 1999-02-23 | Microsoft Corporation | Method and system for sharing applications between computer systems |
US6668244B1 (en) * | 1995-07-21 | 2003-12-23 | Quartet Technology, Inc. | Method and means of voice control of a computer, including its mouse and keyboard |
US5654905A (en) * | 1995-09-15 | 1997-08-05 | Ast Research, Inc. | System for tracking computer usage time |
US5797018A (en) * | 1995-12-07 | 1998-08-18 | Compaq Computer Corporation | Apparatus and method of preventing a deadlock condition in a computer system |
US6065138A (en) * | 1996-03-29 | 2000-05-16 | Magnitude Llc | Computer activity monitoring system |
US6279124B1 (en) * | 1996-06-17 | 2001-08-21 | Qwest Communications International Inc. | Method and system for testing hardware and/or software applications |
US6212573B1 (en) * | 1996-06-26 | 2001-04-03 | Sun Microsystems, Inc. | Mechanism for invoking and servicing multiplexed messages with low context switching overhead |
US6381632B1 (en) * | 1996-09-10 | 2002-04-30 | Youpowered, Inc. | Method and apparatus for tracking network usage |
US5983351A (en) * | 1996-10-16 | 1999-11-09 | Intellectual Protocols, L.L.C. | Web site copyright registration system and method |
US5809250A (en) * | 1996-10-23 | 1998-09-15 | Intel Corporation | Methods for creating and sharing replayable modules representive of Web browsing session |
US6112237A (en) * | 1996-11-26 | 2000-08-29 | Global Maintech, Inc. | Electronic monitoring system and method for externally monitoring processes in a computer system |
US6414594B1 (en) * | 1996-12-31 | 2002-07-02 | Honeywell International Inc. | Method and apparatus for user-initiated alarms in process control system |
US6026499A (en) * | 1997-01-31 | 2000-02-15 | Kabushiki Kaisha Toshiba | Scheme for restarting processes at distributed checkpoints in client-server computer system |
US6046740A (en) * | 1997-02-07 | 2000-04-04 | Seque Software, Inc. | Application testing with virtual object recognition |
US5949975A (en) * | 1997-03-12 | 1999-09-07 | Microsoft Corp. | Method and system for negotiating capabilities when sharing an application program with multiple computer systems |
US6158044A (en) * | 1997-05-21 | 2000-12-05 | Epropose, Inc. | Proposal based architecture system |
US5949415A (en) * | 1997-06-16 | 1999-09-07 | Intel Corporation | Method and apparatus for tracking program usage in a computer system |
US5991814A (en) * | 1997-07-10 | 1999-11-23 | Alcatel | Method and apparatus for controlling command line transfer to a network element |
US6282701B1 (en) * | 1997-07-31 | 2001-08-28 | Mutek Solutions, Ltd. | System and method for monitoring and analyzing the execution of computer programs |
US6446119B1 (en) * | 1997-08-07 | 2002-09-03 | Laslo Olah | System and method for monitoring computer usage |
US6026427A (en) * | 1997-11-21 | 2000-02-15 | Nishihara; Kazunori | Condition variable to synchronize high level communication between processing threads |
US6438592B1 (en) * | 1998-02-25 | 2002-08-20 | Michael G. Killian | Systems for monitoring and improving performance on the world wide web |
US6480883B1 (en) * | 1998-06-30 | 2002-11-12 | Kabushiki Kaisha Toshiba | Real-time information transmission system |
US6363477B1 (en) * | 1998-08-28 | 2002-03-26 | 3Com Corporation | Method for analyzing network application flows in an encrypted environment |
US6308208B1 (en) * | 1998-09-30 | 2001-10-23 | International Business Machines Corporation | Method for monitoring network distributed computing resources using distributed cellular agents |
US6601058B2 (en) * | 1998-10-05 | 2003-07-29 | Michael Forster | Data exploration system and method |
US6691067B1 (en) * | 1999-04-07 | 2004-02-10 | Bmc Software, Inc. | Enterprise management system and method which includes statistical recreation of system resource usage for more accurate monitoring, prediction, and performance workload characterization |
US6351777B1 (en) * | 1999-04-23 | 2002-02-26 | The United States Of America As Represented By The Secretary Of The Navy | Computer software for converting a general purpose computer network into an interactive communications system |
US6222529B1 (en) * | 1999-05-05 | 2001-04-24 | Shareware, Inc. | Method and apparatus for providing multiple sessions on a single user operating system |
US6636908B1 (en) * | 1999-06-28 | 2003-10-21 | Sangate Systems, Inc. | I/O system supporting extended functions and method therefor |
EP1096382A2 (en) * | 1999-10-26 | 2001-05-02 | Iontas Limited | Monitoring of computer usage |
US6678824B1 (en) * | 1999-11-02 | 2004-01-13 | Agere Systems Inc. | Application usage time limiter |
US6732167B1 (en) * | 1999-11-30 | 2004-05-04 | Accenture L.L.P. | Service request processing in a local service activation management environment |
US6654036B1 (en) * | 2000-06-05 | 2003-11-25 | International Business Machines Corporation | Method, article of manufacture and apparatus for controlling relative positioning of objects in a windows environment |
Cited By (160)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US20120206606A1 (en) * | 2000-03-14 | 2012-08-16 | Joseph Robert Marchese | Digital video system using networked cameras |
US9374405B2 (en) * | 2000-03-14 | 2016-06-21 | Joseph Robert Marchese | Digital video system using networked cameras |
US9979590B2 (en) | 2000-03-14 | 2018-05-22 | Jds Technologies, Inc. | Digital video system using networked cameras |
US7627664B2 (en) * | 2000-09-20 | 2009-12-01 | Hitachi, Ltd. | Method and apparatus for remotely controlling a terminal by a control terminal and storing control history information at the terminal being remotely controlled |
US20020035627A1 (en) * | 2000-09-20 | 2002-03-21 | Hiromi Sutou | Terminal for computer network and recording method of control history |
US20070061450A1 (en) * | 2001-04-27 | 2007-03-15 | Blazent, Inc. | System and method for filtering collected data |
US7188170B1 (en) * | 2001-04-27 | 2007-03-06 | Blazent, Inc. | System for managing resources |
US20030208394A1 (en) * | 2002-05-01 | 2003-11-06 | Todd Burris | Sales tracking and forecasting application tool |
US20060005249A1 (en) * | 2004-06-12 | 2006-01-05 | Microsoft Corporation | Installation setup |
US7640592B2 (en) | 2004-06-12 | 2009-12-29 | Microsoft Corporation | Installation setup |
US7577997B2 (en) | 2004-06-12 | 2009-08-18 | Microsoft Corporation | Image verification |
US20060005252A1 (en) * | 2004-06-12 | 2006-01-05 | Microsoft Corporation | Image verification |
US7584509B2 (en) | 2004-06-12 | 2009-09-01 | Microsoft Corporation | Inhibiting software tampering |
US20060005250A1 (en) * | 2004-06-12 | 2006-01-05 | Microsoft Corporation | Software obfuscation |
US20060005248A1 (en) * | 2004-06-12 | 2006-01-05 | Microsoft Corporation | Registry protection |
US7891008B2 (en) | 2004-06-12 | 2011-02-15 | Microsoft Corporation | Profile protection |
US7559091B2 (en) | 2004-06-12 | 2009-07-07 | Microsoft Corporation | Software obfuscation |
US7721340B2 (en) * | 2004-06-12 | 2010-05-18 | Microsoft Corporation | Registry protection |
US7552337B2 (en) | 2004-06-12 | 2009-06-23 | Microsoft Corporation | Service protection |
US20060005251A1 (en) * | 2004-06-12 | 2006-01-05 | Microsoft Corporation | Inhibiting software tampering |
US20050278791A1 (en) * | 2004-06-12 | 2005-12-15 | Microsoft Corporation | Service protection |
US20050278535A1 (en) * | 2004-06-12 | 2005-12-15 | Microsoft Corporation | Profile protection |
US7631360B2 (en) | 2004-06-12 | 2009-12-08 | Microsoft Corporation | Hardware protection |
US20050278553A1 (en) * | 2004-06-12 | 2005-12-15 | Microsoft Corporation | Hardware protection |
US7526805B2 (en) | 2004-06-12 | 2009-04-28 | Microsoft Corporation | Thread protection |
US9542453B1 (en) | 2004-07-13 | 2017-01-10 | Google Inc. | Systems and methods for promoting search results based on personal information |
US7703144B2 (en) * | 2005-04-12 | 2010-04-20 | International Business Machines Corporation | Method, apparatus, and program to post process applications encrypting sensitive objects that are logged |
US20060230292A1 (en) * | 2005-04-12 | 2006-10-12 | International Business Machines Corporation | Method, apparatus, and program to post process applications encrypting sensitive objects that are logged |
US9916468B2 (en) * | 2005-05-31 | 2018-03-13 | Fairwarning Ip, Llc | System and method for detecting fraud and misuse of protected data by an authorized user using event logs |
US20160085986A1 (en) * | 2005-05-31 | 2016-03-24 | Kurt James Long | System and method of fraud and misuse detection using event logs |
US20070006047A1 (en) * | 2005-06-15 | 2007-01-04 | The Board Of Trustees Of The University Of Illinois | Architecture support system and method for memory monitoring |
US7711988B2 (en) * | 2005-06-15 | 2010-05-04 | The Board Of Trustees Of The University Of Illinois | Architecture support system and method for memory monitoring |
US9665384B2 (en) | 2005-08-30 | 2017-05-30 | Microsoft Technology Licensing, Llc | Aggregation of computing device settings |
US20070150587A1 (en) * | 2005-12-22 | 2007-06-28 | D Alo Salvatore | Method and apparatus for populating a software catalog with automated use signature generation |
US8521865B2 (en) * | 2005-12-22 | 2013-08-27 | International Business Machines Corporation | Method and apparatus for populating a software catalog with automated use signature generation |
US9767302B2 (en) | 2005-12-29 | 2017-09-19 | Nextlabs, Inc. | Detecting behavioral patterns and anomalies using activity profiles |
US20080059474A1 (en) * | 2005-12-29 | 2008-03-06 | Blue Jungle | Detecting Behavioral Patterns and Anomalies Using Activity Profiles |
US8321437B2 (en) * | 2005-12-29 | 2012-11-27 | Nextlabs, Inc. | Detecting behavioral patterns and anomalies using activity profiles |
EP1837771A2 (en) | 2006-03-17 | 2007-09-26 | Iontas Limited | Monitoring of computer events |
US20070219941A1 (en) * | 2006-03-17 | 2007-09-20 | Christopher Schnurr | Monitoring of computer events |
US9229768B2 (en) | 2006-03-17 | 2016-01-05 | Verint Americas Inc. | Monitoring of computer events and steps linked by dependency relationships to generate completed processes data and determining the completed processes data meet trigger criteria |
US9229769B2 (en) | 2006-03-17 | 2016-01-05 | Verint Americas Inc. | Monitoring of computer events and steps linked by dependency relationships to generate completed processes data and determining the completed processes data meet trigger criteria |
US8752062B2 (en) | 2006-03-17 | 2014-06-10 | Verint Americas Inc. | Monitoring of computer events and steps linked by dependency relationships to generate completed processes data and determining the completed processed data meet trigger criteria |
US20070233671A1 (en) * | 2006-03-30 | 2007-10-04 | Oztekin Bilgehan U | Group Customized Search |
US9166883B2 (en) | 2006-04-05 | 2015-10-20 | Joseph Robert Marchese | Network device detection, identification, and management |
US10594563B2 (en) | 2006-04-05 | 2020-03-17 | Joseph Robert Marchese | Network device detection, identification, and management |
US7958217B2 (en) * | 2006-05-30 | 2011-06-07 | Hitachi, Ltd. | Job management system and method for minimizing log data |
US20070282920A1 (en) * | 2006-05-30 | 2007-12-06 | Hitachi, Ltd. | Job management system and method for minimizing log data |
US10706737B2 (en) * | 2006-11-03 | 2020-07-07 | Joanne Walker | Systems and methods for computer implemented treatment of behavioral disorders |
US20190035304A1 (en) * | 2006-11-03 | 2019-01-31 | Joanne Walker | Systems and methods for computer implemented treatment of behavioral disorders |
US9116963B2 (en) | 2007-03-13 | 2015-08-25 | Google Inc. | Systems and methods for promoting personalized search results based on personal information |
US20080250406A1 (en) * | 2007-04-04 | 2008-10-09 | Microsoft Corporation | Virtual Machine Support for Metered Computer Usage |
US8839236B2 (en) | 2007-04-04 | 2014-09-16 | Microsoft Corp. | Virtual machine support for metered computer usage |
US20080256229A1 (en) * | 2007-04-13 | 2008-10-16 | Microsoft Corporation | Detecting Machine Utilization Activity |
US7996518B2 (en) | 2007-04-13 | 2011-08-09 | Microsoft Corporation | Detecting machine utilization activity |
WO2009011690A3 (en) * | 2007-07-12 | 2009-04-30 | Mobile Office Inc | Personal computer control for vehicles |
WO2009011690A2 (en) * | 2007-07-12 | 2009-01-22 | Mobile Office, Inc. | Personal computer control for vehicles |
US20090018731A1 (en) * | 2007-07-12 | 2009-01-15 | Mobile Office, Inc. | Personal computer control for vehicles |
US20090132579A1 (en) * | 2007-11-21 | 2009-05-21 | Kwang Edward M | Session audit manager and method |
US8850569B1 (en) * | 2008-04-15 | 2014-09-30 | Trend Micro, Inc. | Instant messaging malware protection |
US9606704B2 (en) | 2008-10-23 | 2017-03-28 | Microsoft Technology Licensing, Llc | Alternative inputs of a mobile communications device |
US10133453B2 (en) | 2008-10-23 | 2018-11-20 | Microsoft Technology Licensing, Llc | Alternative inputs of a mobile communications device |
US8970499B2 (en) | 2008-10-23 | 2015-03-03 | Microsoft Technology Licensing, Llc | Alternative inputs of a mobile communications device |
US9323424B2 (en) | 2008-10-23 | 2016-04-26 | Microsoft Corporation | Column organization of content |
US9223412B2 (en) | 2008-10-23 | 2015-12-29 | Rovi Technologies Corporation | Location-based display characteristics in a user interface |
US20100205238A1 (en) * | 2009-02-06 | 2010-08-12 | International Business Machines Corporation | Methods and apparatus for intelligent exploratory visualization and analysis |
US9977575B2 (en) | 2009-03-30 | 2018-05-22 | Microsoft Technology Licensing, Llc | Chromeless user interface |
US8548431B2 (en) | 2009-03-30 | 2013-10-01 | Microsoft Corporation | Notifications |
US8836648B2 (en) | 2009-05-27 | 2014-09-16 | Microsoft Corporation | Touch pull-in gesture |
US20100325259A1 (en) * | 2009-06-17 | 2010-12-23 | Volonics Corporation | Supervised Access Computer Network Router |
US8307068B2 (en) | 2009-06-17 | 2012-11-06 | Volonics Corporation | Supervised access computer network router |
US20110173525A1 (en) * | 2009-12-15 | 2011-07-14 | Accenture Global Services Limited | Monitoring and Tracking Application Usage |
CN102096625A (en) * | 2009-12-15 | 2011-06-15 | 埃森哲环球服务有限公司 | Monitoring and tracking application usage |
US9037960B2 (en) * | 2009-12-15 | 2015-05-19 | Accenture Global Services Limited | Monitoring and tracking application usage |
US20120227046A1 (en) * | 2010-01-06 | 2012-09-06 | Jiransoft Co., Ltd. | Method and apparartus for monitoring usage patterns by utilizing window titles |
US9430130B2 (en) | 2010-12-20 | 2016-08-30 | Microsoft Technology Licensing, Llc | Customization of an immersive environment |
US9696888B2 (en) | 2010-12-20 | 2017-07-04 | Microsoft Technology Licensing, Llc | Application-launching interface for multiple modes |
US8990733B2 (en) | 2010-12-20 | 2015-03-24 | Microsoft Technology Licensing, Llc | Application-launching interface for multiple modes |
US9015606B2 (en) | 2010-12-23 | 2015-04-21 | Microsoft Technology Licensing, Llc | Presenting an application change through a tile |
US8689123B2 (en) | 2010-12-23 | 2014-04-01 | Microsoft Corporation | Application reporting in an application-selectable user interface |
US10969944B2 (en) | 2010-12-23 | 2021-04-06 | Microsoft Technology Licensing, Llc | Application reporting in an application-selectable user interface |
US9213468B2 (en) | 2010-12-23 | 2015-12-15 | Microsoft Technology Licensing, Llc | Application reporting in an application-selectable user interface |
US9870132B2 (en) | 2010-12-23 | 2018-01-16 | Microsoft Technology Licensing, Llc | Application reporting in an application-selectable user interface |
US11126333B2 (en) | 2010-12-23 | 2021-09-21 | Microsoft Technology Licensing, Llc | Application reporting in an application-selectable user interface |
US9864494B2 (en) | 2010-12-23 | 2018-01-09 | Microsoft Technology Licensing, Llc | Application reporting in an application-selectable user interface |
US8612874B2 (en) | 2010-12-23 | 2013-12-17 | Microsoft Corporation | Presenting an application change through a tile |
US9229918B2 (en) | 2010-12-23 | 2016-01-05 | Microsoft Technology Licensing, Llc | Presenting an application change through a tile |
US8560959B2 (en) | 2010-12-23 | 2013-10-15 | Microsoft Corporation | Presenting an application change through a tile |
US9766790B2 (en) | 2010-12-23 | 2017-09-19 | Microsoft Technology Licensing, Llc | Application reporting in an application-selectable user interface |
US9423951B2 (en) | 2010-12-31 | 2016-08-23 | Microsoft Technology Licensing, Llc | Content-based snap point |
US9383917B2 (en) | 2011-03-28 | 2016-07-05 | Microsoft Technology Licensing, Llc | Predictive tiling |
US9658766B2 (en) | 2011-05-27 | 2017-05-23 | Microsoft Technology Licensing, Llc | Edge gesture |
US9052820B2 (en) | 2011-05-27 | 2015-06-09 | Microsoft Technology Licensing, Llc | Multi-application environment |
US8893033B2 (en) | 2011-05-27 | 2014-11-18 | Microsoft Corporation | Application notifications |
US9329774B2 (en) | 2011-05-27 | 2016-05-03 | Microsoft Technology Licensing, Llc | Switching back to a previously-interacted-with application |
US11698721B2 (en) | 2011-05-27 | 2023-07-11 | Microsoft Technology Licensing, Llc | Managing an immersive interface in a multi-application immersive environment |
US11272017B2 (en) | 2011-05-27 | 2022-03-08 | Microsoft Technology Licensing, Llc | Application notifications manifest |
US9104440B2 (en) | 2011-05-27 | 2015-08-11 | Microsoft Technology Licensing, Llc | Multi-application environment |
US9535597B2 (en) | 2011-05-27 | 2017-01-03 | Microsoft Technology Licensing, Llc | Managing an immersive interface in a multi-application immersive environment |
US9158445B2 (en) | 2011-05-27 | 2015-10-13 | Microsoft Technology Licensing, Llc | Managing an immersive interface in a multi-application immersive environment |
US10303325B2 (en) | 2011-05-27 | 2019-05-28 | Microsoft Technology Licensing, Llc | Multi-application environment |
US9104307B2 (en) | 2011-05-27 | 2015-08-11 | Microsoft Technology Licensing, Llc | Multi-application environment |
US8687023B2 (en) | 2011-08-02 | 2014-04-01 | Microsoft Corporation | Cross-slide gesture to select and rearrange |
US8935631B2 (en) | 2011-09-01 | 2015-01-13 | Microsoft Corporation | Arranging tiles |
US10579250B2 (en) | 2011-09-01 | 2020-03-03 | Microsoft Technology Licensing, Llc | Arranging tiles |
US8922575B2 (en) | 2011-09-09 | 2014-12-30 | Microsoft Corporation | Tile cache |
US10353566B2 (en) | 2011-09-09 | 2019-07-16 | Microsoft Technology Licensing, Llc | Semantic zoom animations |
US9557909B2 (en) | 2011-09-09 | 2017-01-31 | Microsoft Technology Licensing, Llc | Semantic zoom linguistic helpers |
US10114865B2 (en) | 2011-09-09 | 2018-10-30 | Microsoft Technology Licensing, Llc | Tile cache |
US8830270B2 (en) | 2011-09-10 | 2014-09-09 | Microsoft Corporation | Progressively indicating new content in an application-selectable user interface |
US10254955B2 (en) | 2011-09-10 | 2019-04-09 | Microsoft Technology Licensing, Llc | Progressively indicating new content in an application-selectable user interface |
US9146670B2 (en) | 2011-09-10 | 2015-09-29 | Microsoft Technology Licensing, Llc | Progressively indicating new content in an application-selectable user interface |
US9244802B2 (en) | 2011-09-10 | 2016-01-26 | Microsoft Technology Licensing, Llc | Resource user interface |
US8933952B2 (en) | 2011-09-10 | 2015-01-13 | Microsoft Corporation | Pre-rendering new content for an application-selectable user interface |
US10191633B2 (en) | 2011-12-22 | 2019-01-29 | Microsoft Technology Licensing, Llc | Closing applications |
US9223472B2 (en) | 2011-12-22 | 2015-12-29 | Microsoft Technology Licensing, Llc | Closing applications |
US9128605B2 (en) | 2012-02-16 | 2015-09-08 | Microsoft Technology Licensing, Llc | Thumbnail-image selection of applications |
US9723013B2 (en) * | 2012-06-22 | 2017-08-01 | Idecsi Sas | Secondary asynchronous background authorization (SABA) |
US20130347125A1 (en) * | 2012-06-22 | 2013-12-26 | Idecsi | Secondary Asynchronous Background Authorization (SABA) |
US9043462B2 (en) | 2012-07-09 | 2015-05-26 | Parentsware, Inc. | Schedule and location responsive agreement compliance controlled information throttle |
US10412538B2 (en) | 2012-07-09 | 2019-09-10 | Eturi Corporation | Partial information throttle based on compliance with an agreement |
US9854393B2 (en) | 2012-07-09 | 2017-12-26 | Eturi Corp. | Partial information throttle based on compliance with an agreement |
US9847948B2 (en) | 2012-07-09 | 2017-12-19 | Eturi Corp. | Schedule and location responsive agreement compliance controlled device throttle |
US10075764B2 (en) | 2012-07-09 | 2018-09-11 | Eturi Corp. | Data mining system for agreement compliance controlled information throttle |
US10079931B2 (en) | 2012-07-09 | 2018-09-18 | Eturi Corp. | Information throttle that enforces policies for workplace use of electronic devices |
US8706872B2 (en) | 2012-07-09 | 2014-04-22 | Parentsware, Llc | Agreement compliance controlled information throttle |
US9887887B2 (en) | 2012-07-09 | 2018-02-06 | Eturi Corp. | Information throttle based on compliance with electronic communication rules |
US8966064B2 (en) | 2012-07-09 | 2015-02-24 | Parentsware, Llc | Agreement compliance controlled electronic device throttle |
US10834249B2 (en) | 2012-07-09 | 2020-11-10 | Eturi Corp. | Information throttle that enforces policies for workplace use of electronic devices |
US9660923B2 (en) | 2012-07-09 | 2017-05-23 | Eturi Corp. | Schedule and location responsive agreement compliance controlled information throttle |
US11140444B2 (en) | 2012-07-09 | 2021-10-05 | Eturi Corp. | Data mining system for agreement compliance controlled information throttle |
US20140032280A1 (en) * | 2012-07-26 | 2014-01-30 | Uniloc Luxembourg, S.A. | Employee performance evaluation |
US9600298B2 (en) | 2013-04-29 | 2017-03-21 | International Business Machines Corporation | Active and efficient monitoring of a graphical user interface |
US10110590B2 (en) | 2013-05-29 | 2018-10-23 | Microsoft Technology Licensing, Llc | Live tiles without application-code execution |
US9807081B2 (en) | 2013-05-29 | 2017-10-31 | Microsoft Technology Licensing, Llc | Live tiles without application-code execution |
US9450952B2 (en) | 2013-05-29 | 2016-09-20 | Microsoft Technology Licensing, Llc | Live tiles without application-code execution |
US11057286B2 (en) | 2013-11-01 | 2021-07-06 | The Nielsen Company (Us), Llc | Methods and apparatus to credit background applications |
US10374927B2 (en) | 2013-11-01 | 2019-08-06 | The Nielsen Company (Us), Llc | Methods and apparatus to credit background applications |
US20150127819A1 (en) * | 2013-11-01 | 2015-05-07 | The Nielsen Company (Us), Llc | Methods and apparatus to credit background applications |
US9749209B2 (en) * | 2013-11-01 | 2017-08-29 | The Nielsen Company (Us), Llc | Methods and apparatus to credit background applications |
US11563663B2 (en) | 2013-11-01 | 2023-01-24 | The Nielsen Company (Us), Llc | Methods and apparatus to credit background applications |
US10459607B2 (en) | 2014-04-04 | 2019-10-29 | Microsoft Technology Licensing, Llc | Expandable application representation |
US9841874B2 (en) | 2014-04-04 | 2017-12-12 | Microsoft Technology Licensing, Llc | Expandable application representation |
US9451822B2 (en) | 2014-04-10 | 2016-09-27 | Microsoft Technology Licensing, Llc | Collapsible shell cover for computing device |
US9769293B2 (en) | 2014-04-10 | 2017-09-19 | Microsoft Technology Licensing, Llc | Slider cover for computing device |
US10678412B2 (en) | 2014-07-31 | 2020-06-09 | Microsoft Technology Licensing, Llc | Dynamic joint dividers for application windows |
US10592080B2 (en) | 2014-07-31 | 2020-03-17 | Microsoft Technology Licensing, Llc | Assisted presentation of application windows |
US10254942B2 (en) | 2014-07-31 | 2019-04-09 | Microsoft Technology Licensing, Llc | Adaptive sizing and positioning of application windows |
US10642365B2 (en) | 2014-09-09 | 2020-05-05 | Microsoft Technology Licensing, Llc | Parametric inertia and APIs |
US9674335B2 (en) | 2014-10-30 | 2017-06-06 | Microsoft Technology Licensing, Llc | Multi-configuration input device |
US20160285918A1 (en) * | 2015-03-29 | 2016-09-29 | Whitebox Security Ltd. | System and method for classifying documents based on access |
US10209851B2 (en) | 2015-09-18 | 2019-02-19 | Google Llc | Management of inactive windows |
US10891106B2 (en) | 2015-10-13 | 2021-01-12 | Google Llc | Automatic batch voice commands |
US10868838B2 (en) | 2018-07-10 | 2020-12-15 | Eturi Corp. | Media device content review and management |
US11343286B2 (en) | 2018-07-10 | 2022-05-24 | Eturi Corp. | Media device content review and management |
US10440063B1 (en) | 2018-07-10 | 2019-10-08 | Eturi Corp. | Media device content review and management |
US10868837B2 (en) | 2018-07-10 | 2020-12-15 | Eturi Corp. | Media device content review and management |
US11188437B1 (en) | 2020-07-30 | 2021-11-30 | Bank Of America Corporation | Remote deployment of monitoring agents on computing systems |
US11645186B2 (en) | 2020-07-30 | 2023-05-09 | Bank Of America Corporation | Remote deployment of monitoring agents on computing systems |
CN113673857A (en) * | 2021-08-13 | 2021-11-19 | 南京理工大学 | A service awareness and resource scheduling system and method for data middle station |
Also Published As
Publication number | Publication date |
---|---|
IE20000864A1 (en) | 2002-05-29 |
ES2288467T3 (en) | 2008-01-16 |
EP1096382A2 (en) | 2001-05-02 |
EP1096382A3 (en) | 2006-02-01 |
EP1096382B1 (en) | 2007-06-27 |
ATE365944T1 (en) | 2007-07-15 |
DE60035324D1 (en) | 2007-08-09 |
DE60035324T2 (en) | 2008-02-28 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
US6978303B1 (en) | Monitoring of computer usage | |
JP4807970B2 (en) | Spyware and unwanted software management through autostart extension points | |
US6996843B1 (en) | System and method for detecting computer intrusions | |
US7032114B1 (en) | System and method for using signatures to detect computer intrusions | |
US7975302B2 (en) | System for real-time detection of computer system files intrusion | |
US6647400B1 (en) | System and method for analyzing filesystems to detect intrusions | |
US7085936B1 (en) | System and method for using login correlations to detect intrusions | |
US7636919B2 (en) | User-centric policy creation and enforcement to manage visually notified state changes of disparate applications | |
US6826697B1 (en) | System and method for detecting buffer overflow attacks | |
US7065657B1 (en) | Extensible intrusion detection system | |
US7774357B2 (en) | Method, apparatus, and computer program product for implementing enhanced query governor functions | |
US7805419B2 (en) | System for tracking and analyzing the integrity of an application | |
CN107622084A (en) | Log management method, system, and computer-readable storage medium | |
US20120117665A1 (en) | Methods and computer program products for controlling restricted content | |
WO2001016675A1 (en) | System and method for analyzing filesystems to detect intrusions | |
CN116107846B (en) | Linux system event monitoring method and device based on EBPF | |
CN115934782B (en) | Method for analyzing and processing security log and computer storage medium | |
IE84821B1 (en) | Monitoring of computer usage | |
Cisco | Using Threshold Manager | |
Cisco | Using Threshold Manager | |
Cisco | Using Threshold Manager | |
Cisco | Using Threshold Manager | |
Cisco | Using Threshold Manager | |
Cisco | Using Threshold Manager | |
KR100740656B1 (en) | Log file classification system |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
AS | Assignment |
Owner name: IONTAS LIMITED, IRELAND Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:MCCREESH, MARTIN;STOCKTON, JOSEPH;REEL/FRAME:011378/0985 Effective date: 20001024 |
|
AS | Assignment |
Owner name: IONTAS LIMITED, IRELAND Free format text: CORRECTED RECORDATION FORM COVER SHEET TO CORRECT NATURE OF CONVEYANCE, PREVIOUSLY RECORDED AT REEL/FRAME 011378/0985 (ASSIGNMENT OF ASSIGNOR'S INTEREST);ASSIGNORS:MCCREESH, MARTIN;STOCKTON, JOSEPH;REEL/FRAME:012608/0355 Effective date: 20001024 |
|
STCF | Information on status: patent grant |
Free format text: PATENTED CASE |
|
FPAY | Fee payment |
Year of fee payment: 4 |
|
FEPP | Fee payment procedure |
Free format text: PAT HOLDER NO LONGER CLAIMS SMALL ENTITY STATUS, ENTITY STATUS SET TO UNDISCOUNTED (ORIGINAL EVENT CODE: STOL); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY |
|
REFU | Refund |
Free format text: REFUND - PAYMENT OF MAINTENANCE FEE, 8TH YR, SMALL ENTITY (ORIGINAL EVENT CODE: R2552); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY |
|
FPAY | Fee payment |
Year of fee payment: 8 |
|
FPAY | Fee payment |
Year of fee payment: 12 |