• ×
    Information
    Windows update impacting certain printer icons and names. Microsoft is working on a solution.
    Click here to learn more
    Information
    Need Windows 11 help?
    Check documents on compatibility, FAQs, upgrade information and available fixes.
    Windows 11 Support Center.
  • post a message
  • ×
    Information
    Windows update impacting certain printer icons and names. Microsoft is working on a solution.
    Click here to learn more
    Information
    Need Windows 11 help?
    Check documents on compatibility, FAQs, upgrade information and available fixes.
    Windows 11 Support Center.
  • post a message
Guidelines
The HP Community is where owners of HP products, like you, volunteer to help each other find solutions.
HP Recommended

Hi,

 

I was wondering if there is a way  to send a "wake up event"  to polycom vvx410, so when users come in their offices to find their phone display on.
I am using tftp to configure my phones ( 45*VVX410)   My power options are :

<powerSaving
    powerSaving.enable="1"
    powerSaving.enable.VVX410="1">
<powerSaving.idleTimeout
    powerSaving.idleTimeout.offHours="1"
    powerSaving.idleTimeout.officeHours="480"
    powerSaving.idleTimeout.userInputExtension="10">
<powerSaving.motionDetection
    powerSaving.motionDetection.frameRate="10">
<powerSaving.officeHours.duration
    powerSaving.officeHours.duration.monday="12"
    powerSaving.officeHours.duration.tuesday="12"
    powerSaving.officeHours.duration.wednesday="12"
    powerSaving.officeHours.duration.thursday="12"
    powerSaving.officeHours.duration.friday="12"
    powerSaving.officeHours.duration.saturday="0"
    powerSaving.officeHours.duration.sunday="0">
<powerSaving.officeHours.startHour
    powerSaving.officeHours.startHour.monday="7"
    powerSaving.officeHours.startHour.tuesday="7"
    powerSaving.officeHours.startHour.wednesday="7"
    powerSaving.officeHours.startHour.thursday="7"
    powerSaving.officeHours.startHour.friday="7"
    powerSaving.officeHours.startHour.saturday="8"
    powerSaving.officeHours.startHour.sunday="8">
<powerSaving.userDetectionSensitivity
    powerSaving.userDetectionSensitivity.offHours="2"
    powerSaving.userDetectionSensitivity.officeHours="10">
<vvx
ind.pattern.powerSaving.step1.state.VVX410="1">

 

 I tried using a script that ping phones IPAddresses  but is not working.  Is there any other option  or a trick I can use ?

Thank you in advance.

Michalis

 

1 ACCEPTED SOLUTION

Accepted Solutions
HP Recommended

Hi

 

This is probably the easiest option I can think of:

 

Enable http on the phne as default with:

 

  <httpd>
    <httpd httpd.enabled="1" />
  </httpd>

 Then enable the apps push feature and configure the username/password you want:

 

  <apps>
    <apps.push.serverRootURL apps.push.serverRootURL="" />
    <apps.push.username apps.push.username="Push" />
    <apps.push.password apps.push.password="Push" />
    <push apps.push.messageType="5" />
  </apps>

 then have your script send a push to your phone, for example make the phone "press" the menu button twice - effectively opening and closing the menu screen:

 

curl --digest -u Push:Push -d $'<PolycomIPPhone><Data priority="all">Key:Menu\nKey:Menu</Data></PolycomIPPhone>' --header "Content-Type: application/x-com-polycom-spipx" http://***Phone_IP_ADDRESS***/push

 

Or something like that anyways 🙂 hope this helps

 

Cheers

 

Dave

View solution in original post

2 REPLIES 2
HP Recommended

Hi

 

This is probably the easiest option I can think of:

 

Enable http on the phne as default with:

 

  <httpd>
    <httpd httpd.enabled="1" />
  </httpd>

 Then enable the apps push feature and configure the username/password you want:

 

  <apps>
    <apps.push.serverRootURL apps.push.serverRootURL="" />
    <apps.push.username apps.push.username="Push" />
    <apps.push.password apps.push.password="Push" />
    <push apps.push.messageType="5" />
  </apps>

 then have your script send a push to your phone, for example make the phone "press" the menu button twice - effectively opening and closing the menu screen:

 

curl --digest -u Push:Push -d $'<PolycomIPPhone><Data priority="all">Key:Menu\nKey:Menu</Data></PolycomIPPhone>' --header "Content-Type: application/x-com-polycom-spipx" http://***Phone_IP_ADDRESS***/push

 

Or something like that anyways 🙂 hope this helps

 

Cheers

 

Dave

HP Recommended

Hi  Dave,

the solution you suggest  is working perfect for my case .

Thank you very much.

Regards,

Michalis

† The opinions expressed above are the personal opinions of the authors, not of HP. By using this site, you accept the <a href="https://www8.hp.com/us/en/terms-of-use.html" class="udrlinesmall">Terms of Use</a> and <a href="/t5/custom/page/page-id/hp.rulespage" class="udrlinesmall"> Rules of Participation</a>.