A quick look at the Windows PowerShell Module for Intel vPro

In a previous post Using Intel AMT Power Management @ Home I wrote about how to use Intel AMT Power Management at home or let’s say in an environment where you don’t have systems managed by an infrastructure that provides integrated support for Intel AMT.

Now Intel has released a PowerShell Module for Intel vPro. You find all the details in the following blog posts.

Intel Core vPro Processor PowerShell Module – Release & Introduction

Using the Intel Core vPro Processor PowerShell Module – Part 1

Using the Intel Core vPro Processor PowerShell Module – Part 2

So now that we have a PowerShell Module available there is no need anymore to use external command line tools from the Intel SDK. Can’t wait to see it in action? OK here we go.

1. Download the Intel vPro PowerShell Module from here and install it on a machine that has PowerShell installed (Note: Windows 7 includes PowerShell by default).

2. You have a second vPro enabled client that is configured in SMB mode.

3. Create a script with the following content and save it as vpro_on.ps1

import-module intelvpro
Invoke-AMTPowerManagement 192.168.1.248 16992 PowerOn -Username:admin -Password:vProAdmin123*

4. Launch the script in PowerShell, if all goes right, the PC should power on. To turn it off again, simply change PowerOn to PowerOff

That’s it.

One Reply to “A quick look at the Windows PowerShell Module for Intel vPro”

Leave a Reply