Skip to content
View in the app

A better way to browse. Learn more.

MSFN

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

[Question] Determining Activation Status

Featured Replies

How can I determine what the avtivation status of a pc is? I need to know which of the following describes a particular computer:

Needs Activation

Activated

Exempt (VLK)

Exempt (Royalty OEM)

I can determine if a computer was activated by checking for the existance of WPA.BAK but this doesn't mean that it is still activated.

I can determine if a volume license was used by checking for the channel ID of 640 in the PID

Try this VBS script

Save As WindowsActivationStatus.Vbs

strComputer = "."
Dim ActivationReport
Set objWMIService = GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colWPA = objWMIService.ExecQuery("Select * from Win32_WindowsProductActivation")
For Each objWPA in colWPA
ActivationReport = ("Activation Required : " & objWPA.ActivationRequired &_
vbCrLf & "Description : " & objWPA.Description & vbCrLf & "Product ID : " & objWPA.ProductID &_
vbCrLf & "Remaining Evaluation Period : " & objWPA.RemainingEvaluationPeriod &_
vbCrLf & "Remaining Grace Period : " & objWPA.RemainingGracePeriod & vbCrLf & "Server Name: " & objWPA.ServerName)
Next
CreateObject("Wscript.Shell").Popup Space(5) & "Windows Activation Status" & vbCrLf & ActivationReport,10,"Status", 0 + 32

That's neat.

That text must be copied and pasted into a Notepad document. Not a wordprocessor document.

It worked ok for me.

Thanks,

Andromeda43

Create an account or sign in to comment

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.