How to Update Sysmon on Windows – Step by Step Guide
How to Update Sysmon on Windows - Step by Step Guide. System Monitor (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. It provides detailed information about process creations,…
Bash start Azure DevOps Release via API
Bash start Azure DevOps Release via API. To start a release from Azure DevOps via the API using bash, you can use the following steps: Replace {organization} with the name of your Azure DevOps organization, {project} with the name of your project you want to start. Note that this script…
Securing Your Linux Server: How to Check TLS/SSL Certificate Expiration Dates
Securing Your Linux Server: How to Check TLS/SSL Certificate Expiration Dates. In this article, we will learn how to check the expiration date of an SSL/TLS certificate from the command line using the OpenSSL client. The OpenSSL client provides detailed information about the validity dates, expiry dates, and issuing authority…
Marking Azure DevOps Builds as Failed Using Command Line
Marking Azure DevOps Builds as Failed Using Command Line. In Azure DevOps, you can use the command-line interface (CLI) to manage and automate your build pipeline. Sometimes, you may want to mark a build as failed using the CLI. To mark a build as failed using the Azure DevOps CLI,…
Configuration Manager SCCM Current Branch Build Numbers
Configuration Manager SCCM Current Branch Build Numbers Here is a table that lists the Configuration Manager SCCM Current Branch build numbers. The link points to the capabilities offered in each version or Microsoft KB. This table will be updated as and when the new versions are released. NOTE: Beginning from version…
Office Insider 2209 for Windows
Office Insider 2209 for Windows release notes Build 15629.20058 (September 9, 2022) Excel PowerPoint Word Excel Notable fixes Outlook Notable fixes Word Notable fixes In Case You Missed It Version 2207 (Build 15427.20000) Outlook We added a registry key that hides the “Try the new Outlook” toggle. Registry Key: Build…
Bash Teams API POST card
Bash Teams API POST card. Bash is a popular command-line shell used for scripting and automation. Microsoft Teams is a collaboration platform that provides chat, video conferencing, and file sharing capabilities. By using the Microsoft Teams API, you can automate the process of posting cards to a Teams channel. To…
Command Line Tips: Checking TLS/SSL Certificate Expiration Dates
Command Line Tips: Checking TLS/SSL Certificate Expiration Dates. SSL/TLS certificates are a critical part of securing websites and protecting sensitive user data. However, these certificates have an expiration date and must be renewed or replaced before they expire. In this article, we'll explore how to check TLS/SSL certificate expiration dates…
PowerShell extract strings from a file
PowerShell extract strings from a file. To extract only strings from a file using PowerShell, you can use the Select-String cmdlet. Here's an example command to extract strings from a file: In this example, path/to/file.txt is the path to the file you want to extract strings from. The Get-Content cmdlet…