Command “wmic path softwarelicensingservice get oa3xoriginalproductkey” Blank Result

When you run command “wmic path softwarelicensingservice get oa3xoriginalproductkey” shows blank result. Why “wmic path softwarelicensingservice get oa3xoriginalproductkey” Shows Blank The reason why it shows blank is because your Windows copy is activated with a digital license. The command only works if you are using product key, instead of digital license. How To Validate License … Read more

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

How to Resolve Environment Variable Is Too Large On Windows Platform

You may stumble upon a situation like you need to add specific directory into your system path Environment Variable. But somehow, you’re not able to do so, as you got error “Environment variable is too large”. In this article, I will show you how to resolve Environment Variable Is Too Large. How to Resolve Environment … 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

SCEP Offline Installer (System Center Endpoint Protection)

You must be wondering around looking for SCEP Offline Installer. Since the installer, can be acquired only from WSUS. Good news, I have found Microsoft Office link on downloading SCEP Offline Installer. SCEP Overview System Center Endpoint Protection (SCEP) is a powerful security solution that has been developed by Microsoft to protect enterprise-level networks from … 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