Where Customization Begins 

  • Windows PowerShell scripts - Add your own

 #28135  by TheAslan
 12 Sep 2013, 23:55
This topic was created only for Windows PowerShell scripts, add your own below via reply.

Here's neat trick if you like to retrieve your WEI (Windows Experience Index) score.

1. Navigate here:

C:\Windows\System32\WindowsPowerShell\v1.0

2. Then launch this software:

powershell.exe

3. Wait until it's fully loaded, it may take a awhile

4. Then copy/paste one of these commands:

Code: Select allGET-WMIOBJECT WIN32_WINSAT | SELECT-OBJECT CPUSCORE,D3DSCORE,DISKSCORE,GRAPHICSSCORE,MEMORYSCORE

or:

Code: Select allGET-WMIOBJECT WIN32_WINSAT | FORMAT-TABLE CPUSCORE,D3DSCORE,DISKSCORE,GRAPHICSSCORE,MEMORYSCORE –autosize

You can tell this remotely without logging in and spending hours on Inventory by running this command:

Code: Select allGET-WMIOBJECT WIN32_WINSAT –computername SOMECOMPUTER | SELECT-OBJECT WINSATASSESSMENTSTATE, WINSPRLEVEL


Image

5. It shows your WEI score like this above.

Credits goes to energizedtech