Ordered wrong replacement remote and need to return it

Using the In-Home Agent, I ordered the incorrect/wrong remote. When I got the remote and try to program it, it now does not work correctly or may be defective. I used the code for my TV and it seemed to work okay at first; however later all it would do is go to 333 when typing the channel and then to the FIOS (help) channel, then back to 333 and kept repeating this over and over again. I finally took the battery out. I let the remote "rest" for about an hour, put the battery back in, try to change the channel and it did the same thing...333, then FIOS channel.
I inquired how to return it with a Verizon/FIOS representative and was told how to return the remote, which I had check out prior to contacting them. No where that I could find gave you information on how to return the remote...only the set top boxes. I was afraid to try any more for fear I would mess up my account  with the "accidental" return of equipment I don't need to return.
It would be helpful if Verizon/Fios would have a simpler way to return the remote and not have me running in circles on the website or not get this information from a representative who takes me to the same place...and I still have no answers.
Can I please get the address or find out if I can go to the Verizon Fios store to exchange the remote for the correct one and NOT go around in circles.
Solved!
Go to Solution.

FiOS only sends out one remote control these days.  It's the TWO button one showed here and you can generally get it for free from any customer service rep.  they send these out like they are going out of style.
  the OTHER remote is a different story. 
if you want their older 4 model remote then you have to buy it, fortunately it's only 6 bux,   but they don't send out the 4 button universal anymore using the in home agent or by calling into customer service.   customer service and the in home agent will only send out the two button remote shown above.  

Similar Messages

  • Hard drive crashed, replaced drive and need to reinstall CS5 Extended but I don't have serial number, only product code on box. How do i get my serial number?

    hard drive crashed, replaced drive and need to reinstall CS5 Extended but I don't have serial number, only product code on box. How do i get my serial number?

    Beamer96 if the software has been registered then it will be under your account at http://www.adobe.com/.  You can find more details at Find your serial number quickly - http://helpx.adobe.com/x-productkb/global/find-serial-number.html.

  • Received ipad2 synced to itunes and uploaded my backup, now I find out it does not have WiFi 3G and need to return it, is there a way of getting all of my data off the ipad2?

    Received ipad2, synced to itunes and uploaded my backup from my Ipad, now I find out that it does not have Wi-Fi+3G, need to return it, is there a way to get my data off the ipad2 so I can return it?

    if you mean restore it to factory default then you can choose that while having it connected to the computer and using itunes

  • I've ordered a new iMac, and need to install a ghost drive which ran Leopard...

    Recently my very old PowerBook G4 died, and before I replaced it with a new iMac the store offered to have my hard drive ghosted onto an external hard drive so I wouldn't lose my data and have to reinstall all my programs, which I accepted. The old laptop is now with the insurance company, and I have two hard drive copies - one ghost, one with the data I needed in the interim.
    If I put the ghost of the hard drive on my new iMac, will it backtrack my OS to Leopard and iLife '06, which is what I was running on the Powerbook?
    If so, can I re-upgrade it back to Snow Leopard and the iLife that the iMac currently ships with, with the OS X discs supplied in the box, or will I need to go out and purchase this software again, separately?

    This will not work because Mac's will not run earlier versions of OS X than they originally shipped with. I've never heard the term "Ghost Drive" you may wanto to ask the tech if they created a Bootable Clone. If they did then restoring everything from it is simple using Setup Assistant. This will move all the data, settings, apps etc from the old drive to the new machine. One huge advantage of SA is it will not migrate older apps to the new machine, meaning if your new machine has iLife 11 on it and the old drive has an earlier verison of iLife on it the newer version of iLife will remain on the new machine.
    You will need to start over though which is pretty easy, just use Setup Assistant tips beginning at "Second chance..." and follow the on-screen instructions.
    Roger

  • Call C# method from javascript in WebView and retrieve the return value

    The issue I am facing is the following :
    I want to call a C# method from the javascript in my WebView and get the result of this call in my javascript.
    In an WPF Desktop application, it would not be an issue because a WebBrowser
    (the equivalent of a webView) has a property ObjectForScripting to which we can assign a C# object containg the methods we want to call from the javascript.
    In an Windows Store Application, it is slightly different because the WebView
    only contains an event ScriptNotify to which we can subscribe like in the example below :
    void MainPage_Loaded(object sender, RoutedEventArgs e)
    this.webView.ScriptNotify += webView_ScriptNotify;
    When the event ScriptNotify is raised by calling window.external.notify(parameter), the method webView_ScriptNotify is called with the parameter sent by the javascript :
    function CallCSharp() {
    var returnValue;
    window.external.notify(parameter);
    return returnValue;
    private async void webView_ScriptNotify(object sender, NotifyEventArgs e)
    var parameter = e.Value;
    var result = DoSomerthing(parameter);
    The issue is that the javascript only raise the event and doesn't wait for a return value or even for the end of the execution of webView_ScriptNotify().
    A solution to this issue would be call a javascript function from the webView_ScriptNotify() to store the return value in a variable in the javascript and retrieve it after.
    private async void webView_ScriptNotify(object sender, NotifyEventArgs e)
    var parameter = e.Value;
    var result = ReturnResult();
    await this.webView.InvokeScriptAsync("CSharpCallResult", new string[] { result });
    var result;
    function CallCSharp() {
    window.external.notify(parameter);
    return result;
    function CSharpCallResult(parameter){
    result = parameter;
    However this does not work correctly because the call to the CSharpResult function from the C# happens after the javascript has finished to execute the CallCSharp function. Indeed the
    window.external.notify does not wait for the C# to finish to execute.
    Do you have any solution to solve this issue ? It is quite strange that in a Window Store App it is not possible to get the return value of a call to a C# method from the javascript whereas it is not an issue in a WPF application.

    I am not very familiar with the completion pattern and I could not find many things about it on Google, what is the principle? Unfortunately your solution of splitting my JS function does not work in my case. In my example my  CallCSharp
    function is called by another function which provides the parameter and needs the return value to directly use it. This function which called
    CallCSharp will always execute before an InvokeScriptAsync call a second function. Furthermore, the content of my WebView is used in a cross platforms context so actually my
    CallCSharp function more look like the code below.
    function CallCSharp() {
    if (isAndroid()) {
    //mechanism to call C# method from js in Android
    //return the result of call to C# method
    } else if (isWindowsStoreApp()) {
    window.external.notify(parameter);
    // should return the result of call to C# method
    } else {
    In android, the mechanism in the webView allows to return the value of the call to a C# method, in a WPF application also. But I can't figure why for a Windows Store App we don't have this possibility.

  • Replaced battery and.....

    I have a 3rd gen iPod and over the last little while it had stopped being able to have more than about 5 minutes of charge. So I decided to order a replacement kit and replace the battery. So I open it up, replace the battery, and when I close it back up and turn it on, all I see is the apple on the screen. I've tried resetting it to no success, and when I plug it into my computer, it doesn't recognize it. I'm not sure if I messed something up when I replaced the battery or if something else is going on. Thanks for all your help

    Since you do not have an iPod Classic (they've only been out since September 2007) you might want to try posting here: http://discussions.apple.com/forum.jspa?forumID=829

  • Air 15 known issues - wrong screen size and dpi

    Will the next update of Air 15 solve the issues below..
    the dpi problem with iPhone 6 plus is a show stopper,  i cant get away with delivering a reduced dpi
    ... under pressure to update 20+ applications  ...
    Known Issues AIR  15.0.0.183
    [ iPhone 6 Plus] [Launch image] A blank screen observed in apps when Default-568h@2x is packaged.
    [ iPhone 6 Plus] Wrong screen size and dpi is returned through the runtime APIs .
    [ iPad 3 and later] iPhone Launch image(Default@2x. png ) appears on iPad if iPhone launch images are packaged along with iPad launch images
    Well done to the Air team for the good work done so far, not easy keeping up with Apple on IOS8  at the moment...

    I am having simliar issue where I can get the iphone 6 launch image to work but not the iphone 6+ when using [email protected], 2208x1242.  Also the stage.fullScreenWidth/Height give 1472x828, which is 2/3 the expected dimensions or 736x414 at scale factor 2, not 3.  I hope adobe fixes this soon or we won't be able to launch new games with Apple as it is a requirement to have your apps Iphone 6/6+ optimized.  If this isn't fixed soon were pretty much forced to abandon adobe and move onto another software solution that will allow us to build for Apple.

  • I try to go to itunes to see how much I  m spent on itunes and app store and I can not and tries several times! I was told that they charged me wrong and I will return the money as they will do in what way? I need to know how much I have spent urgent plea

    I try to go to itunes to see how much I  m spent on itunes and app store and I can not and tries several times! I was told that they charged me wrong and I will return the money as they will do in what way? I need to know how much I have spent urgent plea

    You can sign into the iTune Store and check your Purchase History.
    http://support.apple.com/kb/ht2727

  • I have an Airport Extreme and need to open ports in order to view my CCTV system remotely.  How am I able to do this?

    I have an Airport Extreme and need to open ports in order to view my CCTV system remotely.  How am I able to do this?  The company that supports the system says I need to open the following - 8200, 8016, 8116, 10019, 12088.  All help is appreciated.

    Open AirPort Utility on the PC, select the Airport Extreme and click Manual Setup
    Click the Advanced icon
    Click the Port Mapping tab
    Click the + (plus) button at the bottom of the connection list to set things up
    Reference pages 49-51 in the Apple AirPort Networks guide for more info
    IF.....you do not see a Port Mapping tab when you click the Advanced icon, then that would mean that the AirPort Extreme is in Bridge Mode and the main routing functions for the network are being provided by another device.
    You will need to set up the port mapping on that device, which is likely your modem/router or gateway.

  • Replacement Needed. This iphone is not able to complete the activation process and needs to be replaced. Please visit your nearest apple store or authorized service center.

    Probably will never ever think of buying a locked phone from AT&T cause its one of the worst system integrations ever that these companies could think of.
    The entire problem started when I put in a request with at&t to unlock my iphone 4s (ios7) which did get approved. I performed the entire instructions they asked me to do, which is to backup and restore. After doing those instructions my iphone gave me an error message below
    The SIM card inserted in this iPhone does not appear to be supported.
    The SIM card that you currently installed in this iPhone is from a carrier that is not supported under the activation policy that is currently assigned by the activation server. This is not a hardware issue with the iPhone. Please insert another SIM card from a supported carrier or request that this iPhone be unlocked by your carrier. Please contact Apple for more information.
    Basically saying that at&t hasn't still unlocked the iphone which a really helpful apple executive was able to confirm. I initiated another unlock process from at&t in order to unlock the iphone, just to be sure that its not something wrong from my end. The nice at&t lady stayed on chat with me to unlock the iphone step my step while I was calling the apple tech too. And the apple tech confirmed again that the iphone is locked to at&t.
    Now, just a few minutes ago I tried another restore to see if any progress is being made and to my surprise I got an error message saying
    Replacement Needed. This iphone is not able to complete the activation process and needs to be replaced. Please visit your nearest apple store or authorized service center.
    I feel like I am just going around these two different "money hogger" companies which set certain rules and regulations to screw a regular phone buyer. I purchased this iphone in USA and trying to unlock in India, is it really this hard to simply unlock a device.
    For now I am going to try to call a apple office in india (apprently we don't have very many out here) and see if they can help me. But any other assistance regarding unlocking an iphone 4s would be helpful. I have however, tried checking IMEI.info, called up apple, talked to at&t (which always say go talk to apple) I do have a case number from apple as well in case an apple executive reads this discussion forum (case number: 566383594)
    Thanks

    You got a confirmation from AT&T that it was authorized. Is this correct? - Yes i did get an email authorization on the 21st.
    Then you connected the phone to a computer with the latest version of iTunes installed. You clicked on the phone's name in iTunes, then clicked "Backup Now". - Yes
    When that finished you clicked "Restore iPhone" (NOT "Restore Backup") - Yes
    Are you with me so far? - Yes.
    And @ Varjak is right that after the 3rd restore I get the replacement error. 
    Plus I have NEVER jailbroken the iPhone. To give you another update, I spoke to a really nice apple tech in India who was atleast able to get me out of the replacement error by doing a recovery mode option. However, the lastest restore still gives me the same error
    The SIM card inserted in this iPhone does not appear to be supported.
    The SIM card that you currently installed in this iPhone is from a carrier that is not supported under the activation policy that is currently assigned by the activation server. This is not a hardware issue with the iPhone. Please insert another SIM card from a supported carrier or request that this iPhone be unlocked by your carrier. Please contact Apple for more information.
    Message was edited by: jabgars

  • I smashed my screen and need a swap out. I signed the authorisation form and they're ordering a new phone, but I don't want to swap?

    A week ago I dropped my iPhone 5 and the screen shattered. I went to the apple store twice and was screwed around with wrong information about prices and the extent of the damage, eventually I was told that they can't replace the display and I will need a replacement/swap. My phone is out of warranty and I only have three months left on my contract plan. They have to order in the part and I did sign the authorisation form for store work, and in a week I have to go back so they can do the work. In short, I am wondering if I am able to back out of the replacement, or if signing that form (without any work actually being done) means I'll have to pay the $330.
    Is there anything in the repair terms and conditions that says because they've ordered the part in I have to pay for it? (from what I understand they ordered a standard iPhone 5 because there were no more in stock).
    I really don't want to pay $330 for something that I can live with for three months.

    Call the store and cancel, they will tell you if you can't.

  • I bought an IR receiver and an Apple Remote, and I can't get it to work. What am I doing wrong?

    I bought an IR receiver and an Apple Remote, and I can't get it to work. What am I doing wrong? The receiver is a Lenovo eHome OVU430006/01 USB IR Receiver.

    Hello,
    You would need to pair the Apple Remote with the receiver. So I would use the generic Mac/PC receiver and follow these instructions:
    http://support.apple.com/kb/HT1619
    If that doesn't work then check in System Profiler to see if the IR receiver has been recognized by the PowerBook's hardware. You may require the install of drivers for this device to be recognized.
    Best of luck

  • I have 2010 macbook white 13 inch and need a replacement battery - where can i find the specs needed for the replacement?

    I have 2010 macbook white 13 inch and need a replacement battery - where can i find the specs needed for the replacement?

    The model 6,1 Late 2009 and the model 7,1 Mid 2010 use an A1331 battery. You can replace it yourself or have Apple do it for you for $129. If you need it quickly make sure you order it from a U. S. seller. Orders from China can take two or three weeks.
    http://www.ebay.com/sch/i.html?_nkw=macbook++battery+a1331&_sacat=0&_odkw=macboo k++battery+a1342&_sop=12&_osacat=0
    Here's installation instructions. You'll need a Tri Wing Y1 screwdriver in addition to the usual #00 Phillips screwdriver.
    http://www.ifixit.com/Guide/Installing-MacBook-Unibody-Model-A1342-Battery/1667/ 1

  • VPRS cost copying different in Returns order and Credit for returns

    Hi SAP Gurus,
    we created returns order, returns delivery and Credit for Returns.But the VPRS cost copying in Credit for Returns different than Returns order.I have tested in DEV its working fine but in PRD its taking different. I compared copy contrls,condition settings and pricing procedure i didnt found any difference. where i need to check other than these areas.
    Regards,
    Nooka

    Hi,
    If if works in DEV then there is no problem with configuration.(Compare configuration of DEV with PRD).
    Please check that all change request are moved correctly or not,speciallty related to your scenario.
    Any enhancement  change request are moved or not.(Because DEV and PRD are different clients. Some requests are client specific.)
    Thanks,
    Vrajesh
    Edited by: Vrajesh G. Nayak on Jan 20, 2010 5:23 AM

  • HT1446 I need to order a replacement battery for Model A1185.  Where can I get it?

    I need to order a replacement battery for Model A1185. Where can I get one?

    You can get a new third party battery fairly cheap on eBay. Every MacBook from 2006 through Mid 2009 except the Late 2008 Aluminum Unibody and the Late 2009 and 2010 White Unibodies use the same A1185 battery.
    Black Batteries http://shop.ebay.com/i.html?_nkw=macbook+black+battery&_sacat=0&LH_BIN=1&_sop=12 &_dmpt=Laptop_Batteries&_odkw=macbook+white+battery&_osacat=0&_trksid=p3286.c0. m 270.l1313
    White Batteries http://shop.ebay.com/i.html?_nkw=macbook+white+battery&_sacat=0&LH_BIN=1&_sop=12 &_dmpt=Laptop_Batteries&_odkw=macbook+black+battery&_osacat=0&_trksid=p3286.c0. m 270.l1313
    Or for $129 from The Apple Store  http://store.apple.com/us/product/MA566LL/A?mco=MTY3ODQ5OTY
    I've bought used MacBooks off of eBay for my family, nine of them so far over the last 6 years. I've bought 8 batteries off of eBay sellers, just going with the cheapest. Only had one with a problem, it gave out after 6 cycles. That one was replaced under the warranty by the seller. The only other batteries that have been a problem were Apple branded batteries that started bulging. I've had two of those happen.

Maybe you are looking for

  • HP Envy trackpad issues

    Hi, I hope this problem can be fixed without having to return my laptop. I bought an HP Envy about a week ago and I've been having issues with the touchpad/trackpad or whatever you'd like to call it. My product number is E1P04AAR. The touchpad just s

  • AV conference from MAC to PC

    Here is the thing. Most of my friends I want to video conference with are using Messenger for Windows (they are slowly getting converted or sold to mac but still on PC for now. Is there an easy way for me to video conference with them other than havi

  • Unix version of Netweaver Dev Studio, Newbie question

    Hi, I have a very silly newbie question.  Is there a unix version of netweaver developer studio and if so what is the path to the executable? Thanks in advance John

  • Clearing Export of files

    Hi A real newbie here. Had LR 2 for about a week and am trying to process wedding photos. I like what I have seen thus far, but I have run into a problem. I color coded some pictures "red" and wanted to copy these to cd. It indicated that it would ta

  • One set of recovery media or two?

    Hi, I have two laptops a L775, and a L645D. I'm not worried about anything but getting windows back on these machines, I can install the specific drivers and what not from this site. Both have 7 Premium COAs. I want to wipe and reinstall both. Do I n