CodeSteps

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

Author : David

Kotlin vs Java: Which One Is Better for Android Development?

When it comes to Android programming, Kotlin is generally considered better than Java for most modern development. Here’s a clear comparison: Why Kotlin is Better for Android: Aspect Kotlin Java Official Support Officially recommended by Google since 2017 Still supported, but not the first choice Code Conciseness Requires less boilerplate code Verbose and repetitive Null […]

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

PowerShell – How to unzip files?

In our previous article, we have discussed about zip / compress the selected files or directories using PowerShell Compress-Archive cmdlet. Through this article, we are going to discuss how to unzip the zipped files. Expand-Archive cmdlet – Unzip files from Archived file(s) PowerShell provides Expand-Archive cmdlet to unzip the zipped files. Through its -Path argument […]

Powershell – How to zip / compress / archive selected files or directories?

Windows PowerShell provides commands to zip (compress) and unzip the files. Through this article, we are going to discuss the PowerShell command to zip the selected files or directories. Compress-Archive cmdlet – Compress / Zip / Archive the selected files or directories PowerShell provides Compress-Archive cmdlet, to archive the specified files or directories. We can […]

PowerShell – Containment operators

PowerShell containment operators are used to verify whether the given value is available in the given input values. These operators always return the boolean value; True or False. Below are the containment operators PowerShell provides, and these take 2 or more operands; left-side operands hold the input value and the right-side operand is for the […]

Scroll to top