CodeSteps

Python, C, C++, C#, PowerShell, Android, Visual C++, Java ...

PowerShell – Get-WinEvent cmdlet – To get Windows Event Log details

The Get-WinEvent cmdlet is a powerful tool in PowerShell used to retrieve event logs from Windows systems. Event logs are records of system, application, or security events, and they’re super useful for troubleshooting, monitoring, or auditing what’s happening on a machine. Unlike the older Get-EventLog cmdlet, Get-WinEvent works with a wider range of logs, supports […]

Microsoft Excel – NETWORKDAYS and NETWORKDAYS.INTL functions

The NETWORKDAYS and NETWORKDAYS.INTL functions in Excel are used to calculate the number of working days between two dates, excluding weekends and optionally, holidays. Here’s a breakdown of each function and their differences: The NETWORKDAYS function This function calculates the number of working days between two dates, excluding weekends (Saturday and Sunday) and optionally, specified […]

HEVC (High-Efficiency Video Coding)

HEVC (High-Efficiency Video Coding), also known as H.265, is a video compression standard designed to improve the efficiency of video encoding and streaming compared to its predecessor, H.264 (AVC – Advanced Video Coding). It was developed by the ITU-T Video Coding Experts Group (VCEG) and the ISO/IEC Moving Picture Experts Group (MPEG). HEVC offers several […]

Windows – Some useful system tools / commands

We can use some useful Windows system tools or commands to perform some actions or to get helpful information about the system. All these tools or programs are located in the Windows system folder C:\WINDOWS\System32\. Internet Options Allows us to customize our browsing experience in Internet Explorer. It shows the current Internet options and allows […]

An Introduction to Apache Pulsar

Apache Pulsar is a distributed messaging system and a streaming platform originally developed by Yahoo, in 2012; the main goal was to develop a scalable and reliable messaging platform to address the gaps which were not fulfilled with the existing Enterprise Messaging Systems (EMS). It was Open-Sourced in the year 2016; contributed to the Apache […]

PowerShell – How to create temporary files?

Yet times, we need to create temporary files in PowerShell scripts to store the temporary data for the program’s needs. These files are created in the temporary folder which was set in the Operating System configuration. PowerShell provides New-TemporaryFile cmdlet to do the job for us to create a temporary file(s) through the scripts. Create […]

Scroll to top