Skip to content

TechDirectArchive

Hands-on IT, Cloud, Security, Veeam & DevOps

  • Home
  • About
  • Advertise With US
  • Reviews
  • Contact
  • Toggle search form

Sysmon from SysInternal: What is System Monitor and how to install and use it

Posted on 03/05/202029/08/2023 IT Expert By IT Expert No Comments on Sysmon from SysInternal: What is System Monitor and how to install and use it
  1. Home
  2. Windows Server
  3. Sysmon from SysInternal: What is System Monitor and how to install and use it

Relating to Information technology, a system monitor is a component used to monitor system resources and performance in a computer system. Sysmon is a Windows system service and device driver that, once installed on a system, remains resident across system reboots to monitor and log system activity to the Windows event log. In this article, we shall discuss “Sysmon from SysInternal: What is System Monitor and how to install and use it”. Please see Viewing Scheduled Events on AW using the Command Line (CLI), and Sysinternals: Installing from the Microsoft Store Guide.

Sysmon provides detailed information about process creations, network connections, and changes to file creation time. By collecting the events it generates using Windows Event Collection or SIEM agents and subsequently analyzing them. Kindly refer to these related guides: How to detect registry keys: Process Monitor using Sysinternals Tools, how to use the PsInfo utility, and how to enable Automatic Logon on Windows 10.

In this way, you can identify malicious or anomalous activity and understand how intruders and malware operate on your network. 

Capabilities of the Sysmon tool

Below are some capabilities of the Sysmon tool

1: Logs process creation with full command line for both current and parent processes.
2: Records the hash of process image files using SHA1 (the default), MD5, SHA256, or IMPHASH.
3: Multiple hashes can be used at the same time.
4: Includes a process GUID in process create events to allow for correlation of events even when Windows reuses process IDs.
5: Include a session GUID in each event to allow correlation of events on the same logon session.
6: Logs loading of drivers or DLLs with their signatures and hashes.
7: Logs opens for raw read access of disks and volumes.

It optionally logs network connections, including each connection’s source process, IP addresses, port numbers, hostnames and port names.

8: Detects changes in file creation time to understand when a file was really created. Modification of file create timestamps is a technique commonly used by malware to cover its tracks.
9: Automatically reload configuration if changed in the registry.
10: Rule filtering to include or exclude certain events dynamically, and
11: Generates events from early in the boot process to.

How to download Sysmon

Download Sysmon from the following link. Extract the zipped file as shown below

For other SysInternal tools I have written about, see the following links

  • Process Explorer (SysInternal Tools),
  • Process Explorer (Replace built-in Task Manager),
  • Detect registry keys – Process Monitor “SysInternal Tools”.
  • How to use Sysinternals Live Tools,
  • How to download and use Windows SysInternals tools locally.

Install and uninstall Sysmon via the command line

To install and uninstall Sysmon, use the command-line options below. This command can be used to check and modify Sysmon’s configuration as well.

Command usage information as shown below.

Install: sysmon64 -i [<configfile>]
Update configuration: sysmon64 -c [<configfile>]
Install event manifest: sysmon64 -m
Print schema: sysmon64 -s
Uninstall: sysmon64 -u [force]

Below is a brief information about the parameters used and its description.

-i: Is used to install service and driver. Optionally take a configuration file.
- c: Is the Update configuration of an installed Sysmon driver or dump the current configuration if no other argument is provided. Optionally take a configuration file.
- m: Install the event manifest (done on service install as well).
- s: Print configuration schema definition.
- u: Uninstall service and driver. Adding force causes uninstall to proceed even when some components are not installed.: Uninstall service and driver. Adding force causes uninstall to proceed even when some components are not installed.

Install Sysmon

This method installs Sysmon with the default settings. This will process images hashes with sha1 with no network monitoring. Specify -accepteula to automatically accept the EULA on installation, otherwise you will be interactively prompted to accept it.

sysmon -accepteula  –i

Note: You can install Sysmon with a configuration file without using the above method as shown below.
– In this case, you have to have a configuration file created already. Below is the command to achieve this.

sysmon –accepteula –i c:\windows\config.xml

Uninstall Sysmon

To uninstall Sysmon. the the following

sysmon –u

For other command usage, see the following commandss and parameters below.

#Dump the current configuration
sysmon –c

#Change the configuration of sysmon with a configuration file (as described below)
sysmon –c c:\windows\config.xml

#Change the configuration to default settings
sysmon –c --

#Show the configuration schema:
sysmon -s

Please see How to detect if an application was uninstalled on Windows: Find out who has uninstalled an application via Windows Event Viewer, and

View Sysmon Logs

To view the log launch the Windows Event Viewer. This can be launched from the command prompt on the fly by entering the command as shown “eventvwr“.

For various methods to launch the Windows Event viewer, and Failure Reasons for Windows Event Viewer, see the following link.

Note: In order to have the Sysmon event appear on the Windows Event console, you will need to create a custom view. For more details, see the following link. When this is done, you can now view Sysmon events (logs) as shown below.

I hope you found this blog post helpful on Sysmon from SysInternal: What is System Monitor and how to install and use it. If you have any questions, please let me know in the comment session.

Rate this post

Thank you for reading this post. Kindly share it with others.

  • Share on X (Opens in new window) X
  • Share on Reddit (Opens in new window) Reddit
  • Share on LinkedIn (Opens in new window) LinkedIn
  • Share on Facebook (Opens in new window) Facebook
  • Share on Pinterest (Opens in new window) Pinterest
  • Share on Tumblr (Opens in new window) Tumblr
  • Share on Telegram (Opens in new window) Telegram
  • Share on WhatsApp (Opens in new window) WhatsApp
  • Share on Mastodon (Opens in new window) Mastodon
  • Share on Bluesky (Opens in new window) Bluesky
  • Share on Threads (Opens in new window) Threads
  • Share on Nextdoor (Opens in new window) Nextdoor
Windows Server Tags:Microsoft Windows, Slide, SysInternal, windows sysinternals tools

Post navigation

Previous Post: Export and Import Scheduled Tasks in Windows
Next Post: How to create a custom view in Windows Event Viewer

Related Posts

  • screenshot 2020 02 08 at 15.53.31
    Enable Automatic Logon on Windows Windows Server
  • screenshot 2020 04 27 at 17.34.38
    Remote Server Administration Tools: Install RSAT on Windows Windows Server
  • maxresdefault
    How to delete Organizational Unit in Active Directory Windows Server
  • BitLocker
    BitLocker Drive Encryption architecture and implementation types on Windows Windows Server
  • connect to RDP automatically
    RDP Configuration Settings: Connect automatically to RDP session Windows
  • Raise or Downgrade AD Domain and Forest Functional Level
    Raise or Downgrade AD Domain and Forest Functional Level Windows Server

More Related Articles

screenshot 2020 02 08 at 15.53.31 Enable Automatic Logon on Windows Windows Server
screenshot 2020 04 27 at 17.34.38 Remote Server Administration Tools: Install RSAT on Windows Windows Server
maxresdefault How to delete Organizational Unit in Active Directory Windows Server
BitLocker BitLocker Drive Encryption architecture and implementation types on Windows Windows Server
connect to RDP automatically RDP Configuration Settings: Connect automatically to RDP session Windows
Raise or Downgrade AD Domain and Forest Functional Level Raise or Downgrade AD Domain and Forest Functional Level Windows Server

Leave a Reply Cancel reply

You must be logged in to post a comment.

Microsoft MVP

VEEAMLEGEND

vexpert-badge-stars-5

Virtual Background

GoogleNews

Categories

veeaam100

Veeam Vanguard

  • Uninstall Wampserver
    How to uninstall WAMPServer from Windows Web Server
  • Screenshot 2022 04 02 at 23.18.48
    CVE-2022-26503 Veeam Agent for Microsoft Windows Vulnerability Backup
  • Ec2 Instance
    How to create an EC2 Instance AWS/Azure/OpenShift
  • images 3
    Install Minimal Container Templates on Proxmox Server Virtualization
  • homebrew social card
    Package Manager for macOS: How to install Homebrew on macOS Mac
  • image 43
    Configure GPS location “Google Map” on your Android Studio Emulator Windows
  • article 1280x720.192a2586 1
    How to apply Windows Updates from WSUS to AWS Instances AWS/Azure/OpenShift
  • Recovery keys in AD 1
    Backup existing and new BitLocker Recovery Keys to Active Directory Windows Server

Subscribe to Blog via Email

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Join 1,801 other subscribers
  • RSS - Posts
  • RSS - Comments
  • About
  • Authors
  • Write for us
  • Advertise with us
  • General Terms and Conditions
  • Privacy policy
  • Feedly
  • Telegram
  • Youtube
  • Facebook
  • Instagram
  • LinkedIn
  • Tumblr
  • Pinterest
  • Twitter
  • mastodon

Tags

AWS Azure Bitlocker Microsoft Windows PowerShell WDS Windows 10 Windows 11 Windows Deployment Services Windows Server 2016

Copyright © 2025 TechDirectArchive

Loading Comments...

You must be logged in to post a comment.