Powershell Check Windows Service Status (Full Guides And Examples)

In this article, I will show you on how to use Powershell to check Windows service status. List All Services (Default Property) get-service List All Services (All Property) The property for service do not limited to only Name, DisplayName and Status. There are others property you can get. To get the possible property, you can … Read more

Powershell Check If File Exists With Full Samples

powershell check if file exists

In this article, I will show you how to use Powershell to check if file exists. There are two options on how to achieve it by using either command: Test-Path [System.IO.File]::Exists($path) The difference between two options is Test-Path supported using wildcards, while the other options do not. You either can directly run a standalone command … Read more

VBScript Message Box Function – 3 Steps Only To Create!

People might thought that “notepad.exe” is just a notepad. What if I told you that you can use it to create VBScript Message Box? In this article, I will show you the easiest steps to create a message box using VBScript. VBScript Message Box Syntax Even though VBScript is already exists since years ago, you … Read more