 |
Welcome to Windows 7 Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows 7. The Windows 7 forum also covers news and updates and has an extensive Windows 7 tutorial section that covers a wide range of tips and tricks.
Windows 7 - Cable company changed channels, MCE not listing new channel #'s |
02-02-2012
|
#1 | | |
Cable company changed channels, MCE not listing new channel #'s Our stupid cable company went and changed and our channels to different numbers without notifying us. Now Discovery Channel (which is really only one of the channels I watch now days because most of the rest is garbage) is on channel 20, it used to be on 46. So now channel 46 is just black, and 20 isn't listed anywhere on the guide, it goes from 13 to 21 (old lineup). Now, MCE won't even let me manually go to it.
I tried completely setting up my TV signal again from the settings, three times, and I'm still getting the old guide. How can I get the new channel number's to show up, or even to manually access them? Media Center is so smart, it's stupid. It limits my channel selection to what it thinks I get, but now I can't manually get to specific numbers.
Help appreciated, thanks.
Also, I forgot to add I tried doing the "Edit Channel" and changing the number to 20, but all that does it make the black 46 channel access on 20, it doesn't really change the "source" so to speak.
| My System Specs | | |
02-03-2012
|
#2 | | Windows 7 Ultimate 32-bit & 64-bit both SP1 |
Hi TheEliteOne and welcome to Windows 7 Forums
I've found this which should solve your problem. Please let us know if it does. http://www.hack7mc.com/2009/09/clear...ia-center.html | My System Specs | | System Manufacturer/Model Number Home Built, N/A OS Windows 7 Ultimate 32-bit & 64-bit both SP1 CPU AMD Athlon (tm) 64 X2 Dual Core Processor 7550 @2.5GHz Motherboard Gigabyte GA-MA770-ES3 Memory 2 x 2GB PC2-6400 (DDR2-800), Ganged Mode, (4GB total) Graphics Card Nvidia GeForce GTX 550 Ti 1GB Sound Card Realtek High Definition on board solution (ALC 892) Monitor(s) Displays ViewSonic VA1912w Widescreen (VGA) Screen Resolution 1440x900 Keyboard Microsoft Digital Media Pro Keyboard (USB) Mouse Microsoft Comfort Optical Mouse 3000 (USB) PSU XFX Pro Series 850W Semi-Modular Case Antec NSK 4000B II Cooling 1 x 80mm Front Inlet (with filter) 1 x 120mm Rear Exhaust Hard Drives OCZ Petrol SSD 64GB SATA III
OCZ Petrol SSD 128GB SATA III
Samsung HD501LJ 500GB SATA II x2
Hitachi HDS721010CLA332 1TB SATA II
1 x Iomega 1.5TB Ext USB 2.0 Internet Speed NetGear DG834Gv3 ADSL Modem/Router (Ethernet) ~4.0 Mb/s (O2) Other Info PCI-Express SATA III controller (Marvell 88SE9128 chipset)
Optical Drive: HL-DT-ST BD-RE BH10LS30 SATA Bluray
Lexmark S305 Printer/Scanner/Copier (USB)
CTF-430 Tablet & Pen
WEI Score: |
02-03-2012
|
#3 | | |
Thanks! I followed the instructions and it didn't appear to work, same old guide still showing up with Discovery on 46.
I was fooling around in the settings last night and managed to manually add channel 20 to the listings. (I went to Settings > TV > Guide > Add Missing Channels.)
*EDIT*
I found out how to manually add channels.
Follow the instructions above, and then to get guide listings for this manually added channel, right click it, click "Edit Channel" then click "Edit Listings". Scroll down until you find your channel's Satellite. Select it, and if you still have your old channel that just looks black WMC should ask you if you want to combine them, select Yes. Now you have your new channel, and guide listings for it.
For me, it defaulted to # 46 again, but this time with a working TV signal. If you want to change it back to the proper number just for the sake of it being the real number, right click the channel again, hit Edit Channel, and then just type in the new number, then click Save. | My System Specs | | |
02-03-2012
|
#4 | | Windows 7 Ultimate 32-bit & 64-bit both SP1 |
I've gone through the link and converted it in to a VBScript file, which you can easily run. Note that the computer will automatically restart. Code: Option Explicit
Dim objWMIService, objProcess, colProcess
Dim strComputer, strProcessKill, strServKill, strName
strComputer = "."
strName = "'Windows Media Center Receiver'"
call KillServ (strComputer, strName, strServKill)
strName = "'Windows Media Center Scheduler'"
call KillServ (strComputer, strName, strServKill)
strName = "'ehmsas.exe'"
call KillProc (strComputer, strName, strProcessKill)
strName = "'ehrecvr.exe'"
call KillProc (strComputer, strName, strProcessKill)
strName = "'ehsched.exe'"
call KillProc (strComputer, strName, strProcessKill)
strName = "'ehshell.exe'"
call KillProc (strComputer, strName, strProcessKill)
strName = "'ehtray.exe'"
call KillProc (strComputer, strName, strProcessKill)
strName = "'mcGlidHost.exe'"
call KillProc (strComputer, strName, strProcessKill)
Set objFSO = CreateObject ("Scripting.FileSystemObject")
objFSO.DeleteFolder ("c:\ProgramData\Microsoft\eHome\mcepg*")
objFSO.DeleteFile ("c:\ProgramData\Microsoft\eHome\mcepg*")
Dim objShell
Set objShell = WScript.CreateObject("WScript.Shell")
objShell.Run "C:\WINDOWS\system32\shutdown.exe -r -t 0"
WScript.Quit
Sub KillServ (strComputer, strName, strServKill)
strServKill = strName
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colServiceList = objWMIService.ExecQuery("Associators of " _
& "{Win32_Service.Name="& strServKill"} Where " _
& "AssocClass=Win32_DependentService " & "Role=Antecedent" )
For each objService in colServiceList
objService.StopService()
Next
Wscript.Sleep 20000
Set colServiceList = objWMIService.ExecQuery _
("Select * from Win32_Service where Name = " & strServKill )
For each objService in colServiceList
errReturn = objService.StopService()
Next
End Sub
Sub KillProc (strComputer, strName, strProcessKill)
strProcessKill = strName
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" _
& strComputer & "\root\cimv2")
Set colProcess = objWMIService.ExecQuery _
("Select * from Win32_Process Where Name = " & strProcessKill )
For Each objProcess in colProcess
objProcess.Terminate()
Next
End Sub MediaCenterReset.vbs | My System Specs | | System Manufacturer/Model Number Home Built, N/A OS Windows 7 Ultimate 32-bit & 64-bit both SP1 CPU AMD Athlon (tm) 64 X2 Dual Core Processor 7550 @2.5GHz Motherboard Gigabyte GA-MA770-ES3 Memory 2 x 2GB PC2-6400 (DDR2-800), Ganged Mode, (4GB total) Graphics Card Nvidia GeForce GTX 550 Ti 1GB Sound Card Realtek High Definition on board solution (ALC 892) Monitor(s) Displays ViewSonic VA1912w Widescreen (VGA) Screen Resolution 1440x900 Keyboard Microsoft Digital Media Pro Keyboard (USB) Mouse Microsoft Comfort Optical Mouse 3000 (USB) PSU XFX Pro Series 850W Semi-Modular Case Antec NSK 4000B II Cooling 1 x 80mm Front Inlet (with filter) 1 x 120mm Rear Exhaust Hard Drives OCZ Petrol SSD 64GB SATA III
OCZ Petrol SSD 128GB SATA III
Samsung HD501LJ 500GB SATA II x2
Hitachi HDS721010CLA332 1TB SATA II
1 x Iomega 1.5TB Ext USB 2.0 Internet Speed NetGear DG834Gv3 ADSL Modem/Router (Ethernet) ~4.0 Mb/s (O2) Other Info PCI-Express SATA III controller (Marvell 88SE9128 chipset)
Optical Drive: HL-DT-ST BD-RE BH10LS30 SATA Bluray
Lexmark S305 Printer/Scanner/Copier (USB)
CTF-430 Tablet & Pen
WEI Score: Cable company changed channels, MCE not listing new channel #'s problems? All times are GMT -5. The time now is 03:00 PM. |  |