Windows Media Center 中的电视频道快捷方式

Windows Media Center 中的电视频道快捷方式

如何在 Windows Media Center 中创建特定电视频道的 Windows 快捷方式?

答案1

对于您的问题来说这已经晚了几年了,但我刚刚在 CodePlex 上上传了一个项目,它可以让您在 Windows Media Center 中创建特定频道的桌面快捷方式(或者,通过 C# 自动更改频道)。

http://mediacentercommander.codeplex.com/

答案2

您的意思是您想要一个桌面快捷方式图标,点击后即可打开 WMC 并开始播放特定的电视频道?

抱歉,这不可能……

答案3

您可以编写 PowerShell 脚本。例如...

add-type -AssemblyName System.Windows.Forms
$proc = Start-Process "C:\Windows\ehome\ehshell.exe"
start-sleep -Milliseconds 10000 #Wait 10 sec while Media Center loads
[System.Windows.Forms.SendKeys]::SendWait("^T")
[System.Windows.Forms.SendKeys]::SendWait("7") #Channel 7

相关内容