Intel vPro® Platform
Intel Manageability Forum for Intel® EMA, AMT, SCS & Manageability Commander
2835 Discussions

send remote control : UNSUPPORTED_OEM_NUMBER

idata
Employee
1,585 Views

Hi every all,

I used amazing Vpro with Powershell for configure my vpro computer.

So when i want to shutdown my computer in powershell with this script (/community/openportit/vproexpert/blog/2009/04/19/powershell-controlling-amt-power-states Controlling AMT Power States)

, i have this error "UNSUPPORTED_OEM_NUMBER"

$Result = $AmtDevice.Remote.SendRemoteControl(0x10, 0x0, 0x0, 0x0, 0x0, 0x0) .

 

Anyone have an idea to resolve my problems ?

Thanks

0 Kudos
2 Replies
idata
Employee
390 Views

Hey there,

 

The parameter you are referring to is the 2nd parameter in the SendRemoteControl() method. The parameter is named IanaOemNumber, and it's of type Uint32 (uint for short in c# ). Tracing this a bit deeper, the SendRemoteControl() method actually calls the SendRemoteControlEx() method on a separate thread, which calls the Put_BootSettingsData() method, passing the OEM parameter to it. The Put_BootSettingsData() method uses the OEM parameter to determine whether or not Serial-over-LAN is supported, and sets a flag based on this for the next reboot. Beyond this, I'm having a hard time finding anything about the error message you posted. What's really odd is that, within the ManageabilityStack, I don't see any other references to the UNSUPPORTED_OEM_NUMBER enumeration value, which is actually defined in the AmtSystem.cs source file. The value is defined, but never used anywhere, so I'm not quite sure how you're being returned this code.

 

You know what might help, is if you posted a screenshot of the error message you're getting in the PowerShell console. Could you do that for me?

 

I honestly don't know exactly what the IanaOemNumber parameter does, although when I originally wrote the PowerShell code, I probably just randomly plugged in a hex value of 0 to see if it would work, and it probably did for me at the time. Hopefully we can get to the bottom of this, though

 

Thanks,

Trevor Sullivan

0 Kudos
idata
Employee
390 Views

I have not error message, jst only on $Result value, I display this error : UNSUPPORTED_OEM_NUMBER and my shutdown command don't pass.

0 Kudos
Reply