CodeSteps

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

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

Microsoft Office 2013 – How to verify the Office installation is Click-to-Run or MSI-based installation?

 Usually when we install Microsoft Applications; we install them by clicking on the Setup file(s). The setup will takes us through the installation steps (wizards) to install the Application(s). This type of installation is MSI-based installation. Through this, the whole Product (with selected features) will be installed on the specified System. Microsoft provides another type […]

PowerShell – How to create Variables?

PowerShell allows us to create the variables. We use the “$” Symbol to create the variables. Through this Article, we will discuss defining the variables and PowerShell command(s) to support defining them. Create Variables in PowerShell Let’s take a simple example; PS C:\> $message = “Hello!” Here we have defined the variable $message and assigned […]

PowerShell – How to view command history?

Whenever you enter commands at PowerShell command prompt, internally PowerShell maintains session history; the commands we entered during the current session. We can retrieve these commands through PowerShell cmdlets. We are going to discuss these commands through this Article. The Get-History command This command is used to display the command history information which is stored […]

Scroll to top