microsoft toolkit download

PowerShell Wait (Start-Sleep) Tutorial

PowerShell provides the Start-Sleep command in order to wait for the command line interface for the specified time. The wait time can be milliseconds, seconds, minutes, hours, etc. The Start-Sleep command simply accepts seconds or milliseconds as parameters but they can be used to express minutes and hours. In this tutorial, we examine how to … Read more

Prompt User Input In PowerShell

Prompt User Input In PowerShell

PowerShell is complete scripting and programming language which provides the user input command Read-Host . The Read-Host can get the user input in different ways like a prompt, secure password, or mask input. In this tutorial, we examine how to use different attributes of the Read-Host command. User Input with Read-Host Command The Read-Host command … Read more

How To Pause In PowerShell?

How To Pause In PowerShell?

There can be different cases where we need to pause in PowerShell. We can pause the Powershell in order to wait for user input, slow down the execution, wait for another process or event, etc. The PowerShell provides different mechanisms in order to pause the execution. PowerShell Pause Methods Following methods, commands can be used … Read more