CodeSteps

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

cmdlets

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 – How to access Clipboard?

Clipboard is a buffer in computer memory, allows the applications to copy and retrieve the temporary data.  Most of the applications provides the Clipboard feature to share the temporary data across the applications. Most common way we can use the Clipboard is using cut, copy and paste commands.  PowerShell provides cmdlets to use the Clipboard. […]

PowerShell – How to create read-only and constant Variables?

PowerShell supports constant and read-only variables. We have discussed creating the variables in our previous Article “PowerShell – How to create Variables?“. Through this, we are going to discuss creating read-only and constant variables. Read-only variables are the variables whose content cannot be modified. Constant variables are the variables whose content also cannot be modified. […]

Scroll to top