CodeSteps

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

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 […]

PowerShell – How to get network adapter details?

PowerShell provides a bunch of cmdlets through the NetAdapter module to manage network adapters. Through this article, we are going to discuss how we get the network adapter details, properties, etc, using PowerShell cmdlet(s). Get-NetAdapter is to get the details/properties of the network adapter. The below command shows the basic details of the network adapter. PS […]

Scroll to top