UM Stops working if database is moved to other DAG member

I have Lync 2013 and Exchange 2013 installed.  Exchange is 3 node DAG, Lync is 2 server pool.  Exchange servers are Exchangesvr01, Exchangesvr02, and ExchangesvrDR in another DataCenter.  Svr02 was the first one built.  Svr01 was added
several weeks later.  If a UM enabled user's mailbox database is mounted on svr02, they can call the SA number, enter their extension, and get to UM OVA.  However, if I move the database to either svr01 or svrDR, when they call the SA number
they will get a message saying "Sorry, this mailbox is on a server that does not support Unified Messaging".  Moving the mailbox back to svr02 solves the issue immediately.  Both servers are on the dialplan, UM service is running, they
share the same UM certificate with both servers listed as SAN names.
Anyone have any ideas?  I have re-run ExchUCUtil.ps1 and OcsUMUtil.exe.
RJ

Do you have any firewalls (windows firewall?) that would prevent connections to exchange on ports other than 5060/5061?
UM calling works as follows..
Call comes to the UM System attendant from Lync on 5060 or 5061 (secure)
The SA will look up the location of the users mailbox and issue a redirect 302 move temporary on port 5062/5063 (secure) to route the call to the server where the users mailbox DB is active.
If the redirect fails UM will play the error ""Sorry, this mailbox is on a server that does not support Unified Messaging"
If the redirect is successful the DB server receiving the redirect will issue a 2nd move temporary to itself on one of the following ports. 5065 and 5067 for TCP (unsecured). 5066 and 5068 for mutual TLS (secured)
At this point the audio data starts..
The fact that you get audio shows you are at least reaching the SA on 5060-5061.
You need to figure out what is causing the redirect to fail.

Similar Messages

  • Database link in forms 6i stopped working in database 10g release 2.

    Hi,
    We have Forms 6i with all patches added.
    We were able to recompile the form that contains database link in database 10g release 1 environment. Recently we migrated to database 10g release 2.
    We still can run the form (previously compiled in database 10g release 1), but when we tried to modify the form and recompile it in databbase 10g release 2,
    the forms developer closed down without giving any error message.
    When we removed any reference to the database link from the form, we were able to recompile the form with no problem. Database Linkd in SQL works.
    The question: what do we need to do in the database 10g release 2 to make the link in forms 6i work?
    Thank you. Lev.

    I recently upgraded my development environment from Forms 10.1.2.0.2 to Forms 10.1.2.3 and am experiencing the same problem -- not able to COMPILE a form that references a database link. The error is: "Error 352 at line 99, column 3 Unable to access another database 'LINKNAME'". This occurs on an UPDATE statement within PL/SQL code in a form trigger that used to compile and work fine.
    I tried the database link in SQL Plus and the link is working fine.
    Database environment is 10g 10.2.0.3 on Windows Server 2003.
    Is anyone able to do this?

  • JTextArea stop work after a method involke by other class

    This is my code:
    * Console.java
    * Created on November 5, 2007, 5:23 PM
    package javaapplication6;
    import java.io.IOException;
    import java.lang.String;
    import java.io.BufferedReader;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    import java.io.IOException;
    import java.io.OutputStream;
    import java.io.PrintWriter;
    import java.net.Socket;
    * @author  root
    public class Console extends javax.swing.JFrame {
        private LoadFirmware    loadfirmware;
        /** Creates new form Console */
        public Console() {
            initComponents();
        /** This method is called from within the constructor to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
        // <editor-fold defaultstate="collapsed" desc=" Generated Code ">
        private void initComponents() {
            jPanel1 = new javax.swing.JPanel();
            jButton1 = new javax.swing.JButton();
            jButton2 = new javax.swing.JButton();
            jButton3 = new javax.swing.JButton();
            jButton4 = new javax.swing.JButton();
            jScrollPane1 = new javax.swing.JScrollPane();
            jTextArea1 = new javax.swing.JTextArea();
            jMenuBar1 = new javax.swing.JMenuBar();
            jMenu1 = new javax.swing.JMenu();
            jMenuItem1 = new javax.swing.JMenuItem();
            jMenuItem2 = new javax.swing.JMenuItem();
            jMenu2 = new javax.swing.JMenu();
            jMenuItem3 = new javax.swing.JMenuItem();
            jMenuItem4 = new javax.swing.JMenuItem();
            jMenuItem5 = new javax.swing.JMenuItem();
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            jButton1.setText("append");
            jButton1.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton1ActionPerformed(evt);
            jButton2.setText("Exit");
            jButton2.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton2ActionPerformed(evt);
            jButton3.setText("Switch to Program Mode");
            jButton3.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton3ActionPerformed(evt);
            jButton4.setText("Switch to Run Mode");
            jButton4.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton4ActionPerformed(evt);
            jTextArea1.setColumns(20);
            jTextArea1.setRows(5);
            jScrollPane1.setViewportView(jTextArea1);
            org.jdesktop.layout.GroupLayout jPanel1Layout = new org.jdesktop.layout.GroupLayout(jPanel1);
            jPanel1.setLayout(jPanel1Layout);
            jPanel1Layout.setHorizontalGroup(
                jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(jPanel1Layout.createSequentialGroup()
                    .addContainerGap()
                    .add(jButton1)
                    .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
                    .add(jButton3)
                    .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
                    .add(jButton4)
                    .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
                    .add(jButton2)
                    .addContainerGap(170, Short.MAX_VALUE))
                .add(jPanel1Layout.createSequentialGroup()
                    .add(jScrollPane1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 622, Short.MAX_VALUE)
                    .add(20, 20, 20))
            jPanel1Layout.linkSize(new java.awt.Component[] {jButton1, jButton2}, org.jdesktop.layout.GroupLayout.HORIZONTAL);
            jPanel1Layout.linkSize(new java.awt.Component[] {jButton3, jButton4}, org.jdesktop.layout.GroupLayout.HORIZONTAL);
            jPanel1Layout.setVerticalGroup(
                jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(org.jdesktop.layout.GroupLayout.TRAILING, jPanel1Layout.createSequentialGroup()
                    .add(jScrollPane1, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 247, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
                    .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED, 90, Short.MAX_VALUE)
                    .add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.BASELINE)
                        .add(jButton1)
                        .add(jButton3)
                        .add(jButton4)
                        .add(jButton2))
                    .add(98, 98, 98))
            jMenu1.setText("File");
            jMenuItem1.setText("New");
            jMenu1.add(jMenuItem1);
            jMenuItem2.setText("Open");
            jMenu1.add(jMenuItem2);
            jMenuBar1.add(jMenu1);
            jMenu2.setText("Tool");
            jMenuItem3.setText("Load Firmware");
            jMenuItem3.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    load_firmware(evt);
            jMenu2.add(jMenuItem3);
            jMenuItem4.setText("Start Console Service");
            jMenuItem4.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    StartService(evt);
            jMenu2.add(jMenuItem4);
            jMenuItem5.setText("Monitor");
            jMenuItem5.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jMenuItem5ActionPerformed(evt);
            jMenu2.add(jMenuItem5);
            jMenuBar1.add(jMenu2);
            setJMenuBar(jMenuBar1);
            org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(layout.createSequentialGroup()
                    .addContainerGap()
                    .add(jPanel1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                    .addContainerGap())
            layout.setVerticalGroup(
                layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(org.jdesktop.layout.GroupLayout.TRAILING, layout.createSequentialGroup()
                    .addContainerGap()
                    .add(jPanel1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                    .addContainerGap())
            pack();
        }// </editor-fold>
        private void jMenuItem5ActionPerformed(java.awt.event.ActionEvent evt) {                                          
            CmdHandle loadMon = new CmdHandle();
            loadMon.main(null);
        private void StartService(java.awt.event.ActionEvent evt) {                             
                try {
              //Process proc = Runtime.getRuntime().exec("java MyTest");
              Runtime rt = Runtime.getRuntime();
              String[] cmd={"cmd.exe" , "/c" , "start" ,"c:/cygwin/home/root/ugconsole/main.exe"};
                    //String[] cmd={"c:/cygwin/home/root/ugconsole/main.exe"};
              rt.exec(cmd);
              //System.out.println("***Executed java MyTest***");
         } catch (IOException e) {e.printStackTrace();}
        private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                        
            appendmsg("apn msg\n");
        private void jButton4ActionPerformed(java.awt.event.ActionEvent evt) {                                        
            Tcp cmd = new Tcp();
            cmd.PID_SwToRunMode();
        private void jButton3ActionPerformed(java.awt.event.ActionEvent evt) {                                        
            Tcp cmd = new Tcp();
            cmd.ProgramMode();
        private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {                                        
            System.exit(0);
        private void load_firmware(java.awt.event.ActionEvent evt) {                              
            loadfirmware.main(null);
        public static void PROGRAMPAGE(){
            String command = "PROGRAMPAGE";
            writer.print(command);
            writer.flush();
          //  appendmsg(command);
            try {
                String response = reader.readLine();
                System.out.println(response);
            } catch (IOException ex) {
                ex.printStackTrace();
        public static void appendmsg(String msg){
           // jTextArea1.append("but this ok le");
            jTextArea1.append(msg);
            System.out.println(msg);
        public static void main(String args[])
             throws IOException
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new Console().setVisible(true);
            final int DEST_PORT = 20000;
            s = new Socket("localhost", DEST_PORT);
            in = s.getInputStream();
            out = s.getOutputStream();
            reader = new BufferedReader(new InputStreamReader(in));
            writer = new PrintWriter(out);
            //String asd = "asd";
            //writer.print(asd);
           // writer.flush();
        // Variables declaration - do not modify
        private javax.swing.JButton jButton1;
        private javax.swing.JButton jButton2;
        private javax.swing.JButton jButton3;
        private javax.swing.JButton jButton4;
        private javax.swing.JMenu jMenu1;
        private javax.swing.JMenu jMenu2;
        private javax.swing.JMenuBar jMenuBar1;
        private javax.swing.JMenuItem jMenuItem1;
        private javax.swing.JMenuItem jMenuItem2;
        private javax.swing.JMenuItem jMenuItem3;
        private javax.swing.JMenuItem jMenuItem4;
        private javax.swing.JMenuItem jMenuItem5;
        private javax.swing.JPanel jPanel1;
        private javax.swing.JScrollPane jScrollPane1;
        public static javax.swing.JTextArea jTextArea1;
        // End of variables declaration
        private static Socket s;
        private static InputStream in;
        private static OutputStream out;
        private static BufferedReader reader;
        private static PrintWriter writer;   
    }After PROGRAMPAGE() is call, appendmsg() won't work anymore.
    anyone can help ? thank!
    Edited by: mjava on Nov 15, 2007 7:26 PM

    -> After PROGRAMPAGE() is call, appendmsg() won't work anymore.
    How do you know? That method isn't invoked anywhere in your posted code.
    We don't all use JDK6 so we don't all have access to GroupLayout. Design a demo that we can all run that duplicates your problem.
    If you need further help then you need to create a "Short, Self Contained, Compilable and Executable, Example Program (SSCCE)",
    see http://homepage1.nifty.com/algafield/sscce.html,
    that demonstrates the incorrect behaviour, because I can't guess exactly what you are doing based on the information provided.

  • Reports with prompting stop working when moved from Crystal10 to crystal 11

    Issue:
    We are having trouble with Crystal Reports XI. It appears that the Crystal 10 runtime included the ability to process reports that used prompting. If we run the same report with the Crystal XI runtime, it fails.
    I can send a sample of the report.
    Error Dialog:
    Title: Internet Explorer Script Error
    Error Details:
    An error has occurred in the script on this page
    Line: 1
    Char: 1
    Error: invalid character
    Code: 0
    URL: file: /// C:/Program%20Files/Business%20Objects/3.0/crystalreportsviewers11/prompting/js/promptengine_strings_en.js
    Do you want to continue running scripts on this page?
    Yes/No
    Our Configuration:
    We use Merge Modules that install Crystal Reports through the browser via a CAB file that we created. It runs a setup executable
    The setup executable project that installs CR XI uses the following Merge Modules:
    CrystalReports11_RDC_Reportengine.msm
    CrystalReports11_RDC_Runtime.msm
    CrystalReports11_HotFix_Merge.msm (This is contrived by us from one of your hot fixes)
    Observation:
    When the install is finished, the folder structure under u2026. Crystalviewers11/prompting do not have any files like they do if we install the development environment.
    Question:
    What do we need to do to correct this situation?
    *why the reports with*
    *prompting stops working when it is moved from a Crystal 10 to Crystal 11*
    *environment.  I believe that it has something to do with Merge Modules*
    *because the files under the prompting folder do not populate with the*
    *merge module like they do with the full install of Crystal Reports.*
    Please help.
    Best Regards,
    Peter Freeman
    Edited by: Vivek Kumar Sharma on May 19, 2009 3:43 PM

    We have JDK 1.6 installed.  The License Merge Module is not related to
    this issue.
    The files under \Program Files\Common Files\Business
    Objects\3.0\crystalreportviewers11\prompting  are not being installed.
    If we copy files, into this folder structure the reports work.
    One of the Business Object's Merge Modules should install the files
    there rather than just an empty folder structure.
    I got was able to figure out how to enter a customer support message.
    They said that they could not support us because we were not on CRXIR2
    (Crystal Reports 11 Release 2).
    I found a download for CRXIR2SP4 (same thing service pack 4).
    I installed it the Merge Module names changed to include a "_5"
    Was:
    CrystalReports11_RDC_Reportengine.msm
    CrystalReports11_RDC_Runtime.msm
    CrystalReports11_HotFix_Merge.msm (This is contrived by us from one of
    your hot fixes)
    Now:
    CrystalReports11_5_RDC_Reportengine.msm
    CrystalReports11_5_RDC_Runtime.msm
    CrystalReports11_5_RDC_License.msm (should have been included)
    *CrystalReports11_HotFix_Merge.msm (not needed anymore)
    I will try to put a installer together with these.  If this work there
    will be some complexity around uninstalling the old one and installing
    the new one.

  • Arrow keys stopped working in excel

    The arrow keys on the keyboard that came with my new iMac have suddenly stopped working in Excel for moving between cells.  They will only scroll the page up and down and left to right.  Surely I have just inadvertently changed some setting.  But, I have no idea how to change it back because I have no idea what I may have changed!  Help!

    Eric!!!!  I thought all this time that nobody answered my question.  And there it was, all the way back in October of 2011.  I guess I thought someone would knock on my door and tell me my question had been answered.
    Thinking all was for naught, I plugged in my PC keyboard and fixed the problem and then unplugged it.
    Anyway, the keystrokes you suggested work wonderfully AND I am awestruck by the link you suggested. I want you to know, I googled the problem and read everything I found and not one person ever mentioned the Mac keystrokes for accomplishing "F-14".
    You are the King.  Actually, if you can answer the question I just posted in Airport Express, I'll be your personal slave.  (It's called, "Murder on the Airport Express....")
    My Airport Express doesn't extend my Wireless Network.

  • Nothing but problems with the cloud! All apps stopped working.

    I think I may cancel my Creative Cloud Subscription! I am on a windows 7.
    All of my apps stopped working.
    Photo shop quit a couple of days ago had to unistall then re install.
    Now they have all quit. I am very fustrated that everything I go to do work I have to work on this and uninstall everything then re install
    Please help or I am done.
    Thanks Tiff

    Unfortunately, this is not an unfamiliar problem on Windows 7.  Did this occur after a recent Windows update?
    http://www.sevenforums.com/general-discussion/294418-almost-all-programs-has-stopped-worki ng.html
    Nancy O.

  • Sound stops working while using headphones on Retina Macbook Pro (late 2013)

    I have a brand new Retina Macbook Pro (late 2013) with OSX 10.9.1 installed. The sound continuously stops working when I'm using my headphones (which I use on a daily basis). I've noticed that when I unplug the headphones, the sound from the internal speakers and the headphone port stops working.
    I've already checked other answers and have tried their suggestions:
    I've looked at the sound settings and it is not set to mute.
    I've tried unplugging the headphones several times in a row and that still doesn't work.
    I don't see a red light in the headphone port.
    I've checked the headphones and there is nothing wrong with them (I use them with other devices).
    I've tried using different headphones, but the problem persists.
    The only way to get the sound working again is by restarting my laptop which is very inconvenient. I use this laptop for working and having to restart it every time I unplug my headphones is just not a solution. I honestly have no idea what is going on. This is a very new laptop (and my first Macbook); I've had it for less than 3 months. The laptop stays on my desk and has not been dropped or damaged in any way. This is a very expensive laptop and the last thing I would expect is for there to be a problem like this.
    If anyone has a solution to get rid of this problem once and for all, please let me know!
    Thank you.

    I have a brand new Retina Macbook Pro (late 2013)
    Please read the warranty paperwork that came w/your computer.  You have 14 days to return the computer w/no questions asked.  You have 90 days of FREE phone tech support on top of your standard 1 year warranty unless you also purchased AppleCare which gives you an additional 2 years of coverage plus FREE phone support.  Strongly suggest that you take FULL advantage of the above before it runs out.  Let Apple deal w/the problems.  If you DIY and mess up, your warranty will be VOIDED! 

  • Bridge "stops working" and displays split thumbnails and previews.

    When working with Windows XP, my Photoshop/Bridge CS3 was working fine. On my new computer with Vista, Bridge acts up in strange ways. It sometimes shuts down spontaneously, causing a Windows "Bridge has stopped working" message to appear.
    At other times, Bridge displays thumbnails that are split or only half there, with the preview image also split in half with the sides reversed. If I wait a few minutes, the proper thumbnails and preview finally appear, but this is a nuisance. BTW, the same copy of Bridge works just fine on my laptop with XP. When I contacted Adobe, they blamed it on Windows. When I contacted Windows, they blamed it on Adobe. Anyone with similar problems and suggested fix?
    Thanks!

    Hi Gerry,
    as it is nearly two months since your initial post, you may have already solved your problem. In which case I'll continue with this reply for the benefit of anyone else who suffers the same affliction:
    My problem was Bridge CS3 running on a 32-bit Vista Home Premium SP1, Intel Core 2 CPU T5300 @ 1.73GHz and 2GB of RAM (if that makes any difference). Like Curt, I'm no computer expert either but I was experiencing a very similar problem to your's in CS3 Bridge.
    The error message contained something about the "nvlddmkm.sys" not working. The 'nvlddmkm.sys' refers to the driver for my graphics card, a 'NVIDIA GeForce Go 7300', whose driver I had recently updated (to solve a separate conflict between an updated BIOS - it never stops!).
    After some fiddling, I discovered that changing the 3D Graphics setting on the Nvidia Control Panel made Bridge once again behave.
    Open the Nvidia Control Panel (right click on the 'desktop' to access it).
    Under the '3D Settings' task, select 'Adjust Image Settings with Preview'. This should reveal a window with an image of a slowly spinning, three-dimensional Nvidia logo. (I understand that the Nvidia Control Panel is common to all its cards.)
    Under the spinning logo image there are three options for 3D settings. On my computer, while my Bridge was broken, the "Use my preference emphasizing: Balanced" option was selected. I changed the option to, "Let the 3D application decide" and crikey! - when I restarted Bridge the previews were once again working. (It may be my imagination, but Bridge appears to now be going better than ever.)
    I switched the Nividia preferences a couple of times just to make sure. The change appeared to have done the job.
    NB: I noticed another discussion in the forums entitled "Suddenly No Images in Bridge" which appears to be a similar problem. They resolved it this way;
    "Depress and hold Ctrl-Alt-Shift when you start PS or Bridge. A menu comes up with three options. Check them all."
    I didn't see that fix until I had sorted mine so I haven't tried it... but now that 'it ain't broke', I 'ain't gonna fix it'!
    Hope this helps you or someone else.

  • Photoshop Elements 12 has stopped working

    I cannot get my elements to work.  The following message pops up when I go to the front "editor" page:
      "Photoshop Elements 12 has stopped working".
    It's urgent that Elements works now - I don't have time to troubleshoot while I am editing 4,000 photos
    Thank you,
    Catherine

    This is the only way I have found to use PSE-12 since the "Stopped Working" problem appeared;  Perhaps Adobe can use this work-around to solve the problem:
    1. Press Shift and hold (until thumbnails appear).
    2. Open Photoshop Elements 12 (PSE)
    3. Select "My Catalog" or what you call it. (Note: I have PSE open Organizer directly.  I have 2 catalogs, My Catalog and Selling.)
    4. If you have 2 catalogs you must open "My Catalog" first.
    5. When the thumbnails appear you can release the Shift key.  You are in business.
    6.  To open the other catalog use File/Manage Catalogs, Select the other catalog and click Open. (Note:  If you open the secondary/other catalog first PSE will stop working.)
    This is a little more work to get started but I have been using it for 2-3 weeks now without the "Stopped Working" occurring.  Good Luck.

  • Crop tool has stopped working

    I have been scanning slides into iPhoto, then cropping them to fit into iMovie to make a slide show. After doing about ten of them the crop tool stopped working. It still saves any other editing that I do but will not save the crop.
    Any ideas? Please help.

    Hello, Country Mouse,
    As a general help, close iPhoto and delete the iPhoto plist.
    Go to Users->Yourusername->Library->Preferences->com.apple.iPhoto.plist
    Drag the com.apple.iPhoto.plist into the trash. iPhoto will create a new one when you launch it again. See if that fixes the crop tool.

  • Album Cover Flow has stopped working on my MacAir

    Hi,
    My preferred Screen Saver is I-tunes Album Cover flow which has been working fine. Last week it stopped working with an error message there is no art work in I-tunes, however there is. How do I get it tto start working again?
    Regards
    Virgil

    Hi everyone,
    Thanks for the advice Sberman, however this did not work. There when I click into change the screensaver and test it gives me an error message "Your Itunes library does not have any songs with art work. My library does. This just stopped work?
    Any suggestions
    Regards
    Virgil

  • IPod - BMW Connector - Mine just stopped working???

    My factory BMW/Ipod connector has worked perfectly up until last week (over 1yr). I don't recall updating any software on either my ipod or my itunes software recently.
    It just stopped working. When it is plugged into the connector in my vehicle, it is recognizing the power source as it is charging the ipod, however my car won't recognize the ipod anymore.
    If anyone has any suggestions on troubleshooting or history of the same thing happening, I would appreciate it!
    Thanks!

    The same thing happened to me. I have a 40G click wheel model, and it suddenly stopped working. I took it in to MBW, and they said it was my Ipod. But the Ipod works in every other way. I also called BMW, but no help there either. So I tried my daughters 10G dock connector Ipod, and it works! So, I went on ebay and bought a 20G dock connector Ipod, and use it only in my car. Not a great solution, as BMW and Apple should work out this bug. But until then, I will use my backup Ipod, as it is only solution I could come up with. Hopefully it does not also stop working some day!!

  • PowerShell has stopped working

    I keep getting "power shell not working" pop-up" and I keep closing it, and it pops up again. How do I correct this? Thanks.

    More information is needed, namely from Event log. Additional info on update, configuration and application installation as well as info on software is needed too.
    The most probable reason that you can encounter is solved here
    https://social.technet.microsoft.com/Forums/en-US/c8b129a4-27c1-4608-817a-43622c03869f/windows-powershell-has-stopped-working?forum=winserverpowershell
    Regards
    Milos

  • Bluetooth's mic stopped working

    I have a Blackberry Pearl 8220 phone. I've had the bluetooth paired etc successfully and have used it for months prior.  All of a sudden Bluetooth's microphone stopped working. The caller on the other end is unable to hear me. I am able to hear the caller fine.
    It is definitely a problem related to the phone because I have tried two bluetooth earpieces. Both of them showed the same symptom with Blackberry but worked on other phones.  Hoping someone out thre can help.
    Using BlackBerry 8220
    v4.6.0.293 platform 4.1.0.100
    Tried doing a battery pull a few times
    Upgraded software using bb desktop manager
    Solved!
    Go to Solution.

    graphicfx, if you've got T-Mobile, call them even if you're out of warranty.  Tell them the phone is defective, lots of users are having this problem.  Sometimes AT&T will replace a phone even if it is out of warranty as a courtesy if they decide there's really nothing you did.
    Here's what seems like the "master thread" on this issue in these forums in case you need to reference it for T-Mobile:
    http://supportforums.blackberry.com/t5/BlackBerry-Pearl-BlackBerry-8100/8220-Bluetooth-will-not-enab...

  • Bluetooth mic stopped working

    I have a Blackberry Pearl 8220 phone. I've had the bluetooth paired etc successfully and have used it for months prior.  All of a sudden Bluetooth's microphone stopped working. The caller on the other end is unable to hear me. I am able to hear the caller fine.
    It is definitely a problem related to the phone because I have tried two bluetooth earpieces. Both of them showed the same symptom with Blackberry but worked on other phones.  Hoping someone out thre can help.
    Using BlackBerry 8220
    v4.6.0.293 platform 4.1.0.100
    Tried doing a battery pull a few times
    Upgraded software using bb desktop manager

    Hello,
    I think you can try two things : the soft reboot, and if it does not work, the hard reboot. Don't worry, you can't lose data with these two reboots.
    Soft reboot :
    1) Hit the three following keys at the same time :
    - Alt
    - Right Shift
    - Delete
    2) wait 2 minutes for the Blackberry to wake up.
    Hard reboot :
    1) your Blackberry device is on
    2) remove the battery and wait for a minute
    3) Put the battery back
    4) wait 5 minutes for the device to wake up.
    Please tell us if it works for you.
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

Maybe you are looking for