Solution: The term 'Param' is not recognized as the name of a cmdlet
Solution:Just make sure that Param should be in the first line of your PowerShell script. If it is not in the first line, then your might get above error.…
A proper & well organized listing of IT companies
Solution:Just make sure that Param should be in the first line of your PowerShell script. If it is not in the first line, then your might get above error.…
Below piece of code will give you physical path of an IIS website.Import-Module WebAdministration[string] $iisWebsiteName = 'Default Web Site'$iisWebsite = Get-WebFilePath…
Possible cause:Normally, the application gets this error when it tries to access a file that is being used or locked by some another process.Solution:Ensure that the file you are trying to use is not…
Hello everyone, Recently I started working on PowerShell as I was working on C# for a long time so initially, it took me a while to get familiar with PowerShell syntaxes. That’s why I thought to put…
Recently I stuck in a situation where I wanted to export variable groups from my VSTS account but there was no such option to export variable group. You can use this PowerShell to download a clone copy of Variable Groups.…
Here I am sharing few important commands in PowerShell which I found useful in my day to day coding. I hope these will help you as well.To print something in consoleWrite-Output "Database publihsed…
Both commands are used to set environment variable values in windows through command-line.SETSET is used to create new environment variable or change the value of existing environment variable. Its…