Advertisement
Guest User

Onkyo PowerShell commands

a guest
Jan 26th, 2016
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Write-Output 'Powering on the receiver...'
  2. Send-ONKYOCommand -OnkyoIP 192.168.1.100 -Command '!1PWR01'
  3.  
  4. Write-Output 'Turning zone 2 off...'
  5. Send-ONKYOCommand -OnkyoIP 192.168.1.100 -Command '!1ZPW00'
  6.  
  7. Write-Output 'Switching to network mode...'
  8. Send-ONKYOCommand -OnkyoIP 192.168.1.100 -Command '!1SLI2B' -Verbose
  9.  
  10. Write-Output 'Selecting home media to prevent bugs...'
  11. Send-ONKYOCommand -OnkyoIP 192.168.1.100 -Command '!1NSV11' -Verbose
  12.  
  13. Write-Output 'Sleeping...'
  14. Start-Sleep -Seconds 10
  15.  
  16. Write-Output 'Selecting spotify again...'
  17. Send-ONKYOCommand -OnkyoIP 192.168.1.100 -Command '!1NSV0A' -Verbose
  18.  
  19. Write-Output 'Sleeping...'
  20. Start-Sleep -Seconds 10
  21.  
  22. Write-Output 'Turning zone 2 on...'
  23. Send-ONKYOCommand -OnkyoIP 192.168.1.100 -Command '!1ZPW01'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement