Iphone contacts "not available" to car phonebook after messing around with Outlook.pst file names and backups. Iphone4 connects to car though and other phones connect properly.

iphone contacts "not available" to car phonebook after messing around with Outlook.pst files, names and backups, on my ms XP 2003 laptop. I substituted a much smaller new Personal Folder -Contacts File, with a smaller list of phone numbers (4 only as a test) which successfully synced to the iPhone 4. The iPhone connects to the Skoda Octavia HandsFreeSystem OK (Bluetooth works fine), but now iPhone wont load the new Contacts as it did originally. However a family Nokia (never messed with) can connect properly. So must be the iPhone or more likely an Outlook.pst \ Contacts problem. Ideas?

After fiddling a little more, the following fixed my corrupted outlook.pst file:
1) I made a backup
2) In outlook under file, I exported the calendar to excel
3) In outlook under file, I imported the calendar back to outlook
And voila, it worked.

Similar Messages

  • Hi, I am new to Applescript and after messing around with it have a few questions.

    Firstly, I love applescript so far and have made an alarm clock, simple get weather app and applescript app that announces the time and date. i would like to be able to use this as a jarvis like combined app where i can have all of these built into one applescript. secondly i would like a better version of my weather app to be included that can give me weather based on my location (not the location i have it set too). lastly it would also be a miracle if someone could give me a way to make a simple chat like bot that can talk back because i have tried setting up eliza (chat bot from apple) but because it uses ichat things are much more difficult for me as a novice to set up properly.  for instance type hi in a display dialog box and have the text returned open up in messages and be able to communicate with my chat bot that would have predefined responses for what i type. like if i type weather it would know to tell me the weather.  anyway ill have my codes listed below and if anyone can help with any part of this that would be fantastic and greatly appreciated. also just a note i will never sell this thing if someone helps me by giving me coding to get this idea working.  i just want it because i could greatly use having a virtual assistant and to use personally.  thanks in advance for all people who do help.
    --codes for getting date
    set {year:y, month:m, day:d} to (current date)
    y --> 2006
    m --> April
    d --> 15
    -- note that the month given above is not text unless coerced to text. "April" is a word in the AppleScript lexicon.
    -- these results can also be obtained directly, one at a time:
    month of (current date) --> April
    -- or as a list:
    {year, month, day} of (current date) --> {2006, April, 15}
    -- and finally, the day of the week can be extracted:
    weekday of date "Saturday, April 15, 2006 4:29:04 PM" --> Saturday
    say date string of (current date)
    --codes for getting time
    set currentDate to current date
    set amPM to "AM"
    set currentHour to (currentDate's hours)
    set currentMinutes to currentDate's minutes
    if (currentHour ≥ 12 and currentHour < 24) then
              set amPM to "PM"
    else
              set amPM to "AM"
    end if
    --  make minutes below 10 sound nice
    if currentMinutes < 10 then
              set currentMinutes to ("0" & currentMinutes) as text
    end if
    --  ensure 0:nn gets set to 12:nn AM
    if currentHour is equal to 0 then
              set currentHour to 12
    end if
    --  readjust for 12 hour time
    if (currentHour > 12) then
              set currentHour to (currentHour - 12)
    end if
    set currentTime to (currentHour as text) & ":" & ((currentMinutes) as text) & " " & amPM as text
    say currentTime
    --alarm with weather
    -- prompt the user for the desired wake up time
    set targetTime to the text returned of (display dialog "Enter the wake-up time:" default answer "7:00 AM")
    say "Goodnight sir…"
    -- wait until we reach the target date/time
    repeat while (current date) is less than date targetTime
      -- should be 60
      delay 2
    end repeat
    say "It is " & getTimeInHoursAndMinutes()
    on getTimeInHoursAndMinutes()
      -- Get the "hour"
              set timeStr to time string of (current date)
              set Pos to offset of ":" in timeStr
              set theHour to characters 1 thru (Pos - 1) of timeStr as string
              set timeStr to characters (Pos + 1) through end of timeStr as string
      -- Get the "minute"
              set Pos to offset of ":" in timeStr
              set theMin to characters 1 thru (Pos - 1) of timeStr as string
              set timeStr to characters (Pos + 1) through end of timeStr as string
      --Get "AM or PM"
              set Pos to offset of " " in timeStr
              set theSfx to characters (Pos + 1) through end of timeStr as string
              set theHours to hours of the (current date)
              if theHours > 18 then
                        say "good Evening"
              else if theHours > 12 then
                        say "good Afternoon"
              else if theHours > 6 then
                        say "good Morning"
              else if theHours > 0 then
                        say "good Morning"
              end if
              return (theHour & ":" & theMin & " " & theSfx) as string
    end getTimeInHoursAndMinutes
    tell application "Mail" to launch
    tell application "Calendar" to launch
    tell application "iTunes" to launch
    set CityCode to 2353736
    set t_format to "F"
    set v_format to "S"
    set a_format to "Y"
    set IURL to "http://weather.yahooapis.com/forecastrss?w=" & CityCode
    set file_content to (do shell script "curl " & IURL)
    --looking for the line with actual condition
    set theText to text ((offset of "yweather:condition" in file_content) + 1) thru -1 of file_content
    set sub_1 to text ((offset of "\"" in theText) + 1) thru -1 of theText
    set actual_condition to text 1 thru ((offset of "\"" in sub_1) - 1) of sub_1
    set sub_1a to text ((offset of "temp=" in sub_1)) thru -1 of sub_1
    set sub_1b to text ((offset of "\"" in sub_1a) + 1) thru -1 of sub_1a
    set actual_temp to text 1 thru ((offset of "\"" in sub_1b) - 1) of sub_1b
    if t_format is equal to "C" then
              set actual_temp to (5 / 9) * (actual_temp - 32) as integer
    end if
    set theText to text ((offset of "yweather:forecast" in file_content) + 1) thru -1 of file_content
    set sub_2 to text ((offset of "\"" in theText) + 1) thru -1 of theText
    set today_min_temp to word 9 of sub_2
    set today_max_temp to word 12 of sub_2
    if t_format is equal to "C" then
              set today_min_temp to (5 / 9) * (today_min_temp - 32) as integer
              set today_max_temp to (5 / 9) * (today_max_temp - 32) as integer
    end if
    set sub_3 to text ((offset of "text" in sub_2) + 1) thru -1 of sub_2
    set sub_4 to text ((offset of "\"" in sub_3) + 1) thru -1 of sub_3
    set today_forecast to text 1 thru ((offset of "\"" in sub_4) - 1) of sub_4
    set sub_5 to text ((offset of "yweather:forecast" in sub_4) + 1) thru -1 of sub_4
    set sub_6 to text ((offset of "\"" in sub_5) + 1) thru -1 of sub_5
    set tomorrow_min_temp to word 9 of sub_6
    set tomorrow_max_temp to word 12 of sub_6
    if t_format is equal to "C" then
              set tomorrow_min_temp to (5 / 9) * (tomorrow_min_temp - 32) as integer
              set tomorrow_max_temp to (5 / 9) * (tomorrow_max_temp - 32) as integer
    end if
    set sub_7 to text ((offset of "text" in sub_6) + 1) thru -1 of sub_6
    set sub_8 to text ((offset of "\"" in sub_7) + 1) thru -1 of sub_7
    set tomorrow_forecast to text 1 thru ((offset of "\"" in sub_8) - 1) of sub_8
    if a_format is equal to "Y" then
              say "The current weather in Alpine is " & actual_temp & " degrees and " & actual_condition
    end if
    delay 4
    tell application "Mail"
              set unreadMessages to (get every message of mailbox "INBOX" of account "jarvisMail" whose read status is false)
              set numberofmessages to (count of (every message of mailbox "INBOX" of account "jarvisMail" whose read status is false))
              if (count of (every message of mailbox "INBOX" of account "jarvisMail" whose read status is false)) is 1 then
                        tell application "Mail"
                                  say "There is only " & numberofmessages & " new email"
                                  repeat with eachMessage in unreadMessages
                                            say "From! "
                                            say (get sender of eachMessage)
                                            say "Subject."
                                            say (get subject of eachMessage)
                                            set read status of eachMessage to true
                                  end repeat
                        end tell
              else if (count of (every message of mailbox "INBOX" of account "jarvisMail" whose read status is false)) is greater than 1 then
                        tell application "Mail"
                                  say "There are " & numberofmessages & " new messages"
                                  repeat with eachMessage in unreadMessages
                                            say "From! "
                                            say (get sender of eachMessage)
                                            say "Subject."
                                            say (get subject of eachMessage)
                                            set read status of eachMessage to true
                                  end repeat
                        end tell
              else
                        say "You have no new messages"
              end if
              tell application "Mail" to quit
    end tell
    delay 4
    set today to (current date)
    set today's time to 0
    set tomorrow to today + days
    set myHome to {}
    tell application "Calendar"
              set futureEvents to every event of calendar "Home" whose start date is greater than or equal to today and end date is less than or equal to tomorrow
              tell application "Calendar" to quit
    end tell
    repeat with anEvent in futureEvents
              tell application "Calendar" to set {summary:theSummary, start date:theStartDate, allday event:allDayEvent} to anEvent
              if (allDayEvent) then
                        set theTime to "At some time today"
              else
                        set {hours:Eventhour, minutes:Eventminute} to theStartDate
                        if (Eventhour > 12) then
                                  set Eventhour to Eventhour - 12
                                  set pre to "PM"
                        else
                                  set pre to "AM"
                        end if
                        if (Eventminute is 0) then set Eventminute to ""
                        set theTime to "At " & Eventhour & " " & Eventminute & " " & pre
              end if
              set the end of myHome to theTime & " you have the event… " & theSummary
    end repeat
    set numberOfHome to (count myHome)
    if (numberOfHome is less than 1) then
              say "you have no events today."
    else if (numberOfHome is equal to 1) then
              say "you have one event today"
      delay 1
              say item 1 of myHome
    else
              say "you have" & numberOfHome & " Home today"
      delay 1
              repeat with thismeeting in myHome
      say thismeeting
                        delay 0.5
              end repeat
    end if
    delay 4
    tell application "iTunes"
              play playlist "Jarvis Alarm"
              delay 900
              tell application "iTunes" to quit
    end tell
    --weather
    set weather to "curl " & quote & "http://weather.yahooapis.com/forecastrss?p=USNY0996&u=f" & quote
    set postWeather to "grep -E '(Current Conditions:|F<BR)'"
    set forecast to do shell script weather & " | " & postWeather
    say (characters 1 through -7 of paragraph 2 of forecast) as string

    4piper wrote:
     I have a HP Envy 15 Notebook PC "without" a cd/dvd drive. I bought one that plugs in which is a pain, but I am findind myself having to install updates that lasts for hours. Please, can someone help me??? I am almost ready to go back to Dell because I have had to many issues! I have spent more time on the upgrades/updates than I have actual enjoyment on this PC. And it is 13 days old.
    And getting a PC that does not have a cd player is completely, well I am not going to say it. How was I going to download the printer? Or any other software?
    Can someone please tell me if there is a one button upgrade/update that will get this done and over with?
    Thank you.
    Piper
    Hi,
    Could you tell us what Envy 15 it is, please? I mean the full model name. The new laptops don't have any DVD drives because all drivers etc can be downloaded from the internet and all bootable images don't have to be burned to DVDs but simple converted to usb drives. Tell us also what printer you have got so we can find the right drivers for you.
    Dv6-7000 /Full HD/Core i5-3360M/GF 650M/Corsair 8GB/Intel 7260AC/Samsung Pro 256GB
    Testing - HP 15-p000
    HP Touchpad provided by HP
    Currently on Debian Wheeze
    *Please, help other users with the same issue by marking your solved topics as "Accept as Solution"*

  • My Photos is empty after messing around with my iPhone but i can see my pics taking by my camera when i start Camera and i click on the buttom left corner, it opens the camera roll pics which i can't see choosing Photos

    any help will be appreciated, thank you

    Photos is an app for creating albums of photos that are ON YOUR COMPUTER. The Camera Roll is photos taken with the iPhone. You cannot transfer photos from the Camera Roll to the Photos app directly; you must copy them to your computer using a photo management app on the computer. After they are on the computer you can sync them to the Photo app.
    I suggest reading the manual, as it describes the process much better than I have. http://manuals.info.apple.com/en_US/iphone_user_guide.pdf

  • How can i fix "the sim card inserted in this iphone does not appear to be supported " after restoring a factory unlocked iphone 4

    how can i fix "the sim card inserted in this iphone does not appear to be supported " after restoring a factory unlocked iphone 4

    The term "factory unlocked" has no meaning. Your phone was not legitimately unlocked. Contact the carrier it is locked to and find out if you can get it unlocked.

  • Iphone 4s not getting detected in macbook after connecting via usb cable, also photos taken in iPhone not showing in macbook pro

    iphone 4s not getting detected in macbook after connecting via usb cable, also photos taken in iPhone not showing in macbook pro    

    Thanks. I realises that i will hv to go to iphoto to see the photo. Its now working !!!!!

  • TS1702 The app game that I bought for iphone is not available in the itunes store anymore. How can I get it back on my iphone 4

    The app game that I bought for iphone is not available in the itunes store anymore. How can I get it back on my iphone 4

    If it's no longer in the store then you won't be able to re-download it - do you have a copy of it on your computer's iTunes (or on a backup) that you could sync back to your phone ?

  • My iphone is not showing updates in appstore after ios 6.1 update p.why is this happening....

    my iphone is not showing updates in appstore after ios 6.1 update p.why?

    I have the same problem here, appstore still notice me that an app need to be updated, but when it opened, it wont shown up. Only white blank screen without any loading on update tab in appstore.

  • Synchronization-Contacts (not available)

    Long-time BB user. Curve 8530. Desktop Software 5.0 Bundle 1596.Have been a successful user of software since release. Sync calendar and contacts from Outlook 2010.Generally, one-way sync from computer to device. Sync calendar and contacts separately.  Have about 1,000 contacts in Outlook 2010 Contacts. Tried to sync Contacts last night and today - indicates Contacts(not available)  in the Select Organizer Data to Synchronize ("gray'd out, option to select not available).
    First time this has happened.  How can I get the Contacts option active to sync?
    Last time I sychronized each of Calendar and Contacts prior to yesterday, Wednesday, February 20, 2013, was Monday, February 18, 2013.
    Appreciate some help, guidance and direction.  R, Marathon04

    Hello Marathon04 and welcome to the BlackBerry Support Community Forums.
    Sorry to hear you're having an issue syncing your Contacts.
    Have you recently added an email account, such as Gmail or Yahoo and enabled wireless Contact sync? 
    If you reboot by pulling the battery then reinsert it, do you get the option to configure the Contacts? 
    It would be recommended you upgrade your BlackBerry Desktop Software to the latest version. You can download it from www.blackberry.com/desktop and once updated see if you're able to configure your Contacts for sync.
    Thanks!
    -HMthePirate
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • BBM video contact not available

    I have a z30 and the wife has my old z10. When I try to connect bbm video to the z10 it says contact not available for bbm video, 
    What am I doing wrong? I'm new to bbm as it is

    Hello
    Welcome to http://supportforums.blackberry.com
    I suggest the following
    To see what you can do Video Contact Calls
    Join to contact, then press the Button All
    Here choose BBM Video
    The contacts shown in BBM list are the ones you can make video calls to those who go online connected
    Enter the contact's profile and choose BBM Video.
    Regards.
    Response you like me? Want THANK? Click 
    If it was the SOLUTION click "Accept as Solution"!
    #4LL   #ichooseBlackBerry10 @Gutijose14
    BBM Channels  PIN: C0007093A
    Do not forget to give LIKE    Those people who help you and advise you about your doubts.  if the review has been SOLVED** # 4LL  #ÉliteRoad  Make a backup of your BlackBerry
    BlackBerry Protect and  BlackBerry Link constantly.  #ichooseBlackBerry10 Gutijose14 Forums Veteran I

  • HT4623 My iPhone is not available for Hotspot?

    Hi,Apple
    my iphone is not available for personal hotspot?

    You are not addressing Apple here. This is a user to user support forum. If your carrier supports Personal Hotspot and your account is provisioned for Personal Hotspot, you should find the ability to turn it on in Settings. If you do have that and cannot get it to work, then see this support document for troubleshooting help. http://support.apple.com/kb/TS2756

  • My Iphone will not let me download apps because it says my apple id is disabled, I have changed my password four times and it still is saying the same thing. What do I do now?

    My Iphone will not let me download apps because it says my apple id is disabled, I have changed my password four times and it still is saying the same thing. What do I do now?

    Contact iTunes to re-enable your account at expresslane.apple.com
    You can reach them by chat or email.

  • Adobe encore the software that's used to decode the media is not available on this system. installing the correct decoders for the file you are working with may help correct the problem

    Hi,
      I got this message after importing about ten or so H.264 files that I encoded from Adobe media encoder.  "adobe encore the software that's used to decode the media is not available on this system. installing the correct decoders for the file you are working with may help correct the problem."
    The files we're shot with HD cameras.  Edited in Premiere Pro CS3.  I installed the update 3.0.1 with still the same error.
    I also tried a brand new project and after about ten or so files being imported into a timeline, the system crash.  I tried this twice....
        Thanks in Advance

    Hi Hunt,
           Here is the skinny.  A window base PC.  footage shot with HD sony HD cameras,  Project imported to Premiere CS3.  Once completed sent file to Adobe media encoder and render them as H.264 widescreen high Quality.  Imported them to Adobe Encore CS3.  After about ten files or so.  I got the error message.  Did all the basic trouble shoot like restarting the computer, got latest patch.  Even build a new test project with the same problem.
        Something else I read in the forums, is the encore will transcoded the project to Mpeg 2 anyway, after looking at my project I realized those few files were indeed untranscoded.  So it will be a double compression and I dont want that.  So, my new question is, what is H.264 good for ?????????? I was research that Mpeg 2 is a faster render but H.264 is a slower render but better quality.....
       what do you think ????
       Peter

  • Anyone  lose the contacts from their I-5 after syncing it with outlook 2013?

    Has anyone lost the contacts on their phone after syncing it with outlook 2013.

    You are correct. There is no other way to recover this material, and yes it would have been a good idea to backup the iPhone prior to the restore. Remember that a restore to a previous date deletes everything on the device and puts it back to the state of things on the date you choose. The texts and contacts would be gone. Did you possibly sync the contacts with a supported application on the computer? That is the only other way to recover contacts. They are designed to be synced with a supported application on the computer, or with a cloud service such as iCloud, Google or Yahoo.

  • TS1410 MY LAP TOP DOES NOT RECOGNIZE MY IPOD. AFTER ABOUT 20 MINUTES I GET A MESSAGE THAT SAYS MY IPOD HAS BEEN CORRUPTED AND NEEDS TO BE RESTORED. ALSO THE IPOD ITSELF HAS FROZEN AND CAN NOT BE TURNED OFF OR RE-SET BUY HOLDING THE MIDDLE BUTTON.

    MY LAPTOP DIES NOT RECOGNIZE MY IPOD. AFTER ABOUT 20 MINUTES I GET A MESSAGE THAT SAYS MY IPOD HAS BEEN CORRUPTED AND NEEDS TO BE RESTORED. ALSO AFTER THE IPOD HAS BEEN CONNECTED TO THE COMPUTER THE IPOD WILL FREEZE. I AM ONLY ABLE TO USE IT AFTER THE BATTERY HAS RUN OUT. WHAT COULD BE CAUSING THESE PROBLEMS AND HOW DO I RESTORE MY IPOD!!!!!

    Hey gwscrt,
    Since iTunes directed to you to restore your iPod, I'd check out the following article that goes over the steps to do so:
    Restoring iPod to factory settings
    http://support.apple.com/kb/ht1339
    I would read the document in full, but here are the applicable steps for you:
    How to restore iPod
    Verify that you have an active Internet connection, because you may need to download new versions of the iTunes and iPod Software.
    Download and install the latest version of iTunes if necessary.
    Open iTunes. Connect your iPod to your computer using the USB or FireWire cable that came with your iPod.
    After a few moments, your iPod will appear in the Source panel in iTunes.
    Select your iPod in the Source panel. You will see information about your iPod appear in the Summary tab of the main iTunes window.
    Click Restore.
    If you are using a Mac, you will be asked to enter an administrator’s name and password.
    A progress bar will appear on the computer screen, indicating that stage one of the restore process has begun. When this stage is done, iTunes will present one of two messages with instructions specific to the iPod model you are restoring.
    Disconnect iPod and connect it to iPod Power Adapter (typically applies to older iPod models).
    Leave iPod connected to computer to complete restore (typically applies newer iPod models).
    During stage two of the restore process, the iPod displays an Apple logo as well as a progress bar at the bottom of the display. It is critical that the iPod remain connected to the computer or iPod power adapter during this stage.
    Note: The progress bar may be difficult to see, because the backlight on the iPod display may be off.
    After stage two of the restore process is complete, the iTunes Setup Assistant window will appear. It will ask you to name your iPod and choose your syncing preferences, as it did when you connected your iPod for the first time.
    Have a good one,
    David

  • The calendar week view on my iphone 4s starts on a Sunday.  I am synching with outlook on my computer which starts the week view on a Monday which I prefer.  How do I change my iphone calendar view to start the week on a Monday?

    The calendar week view on my iphone 4s starts on a Sunday.  I am synching with outlook on my computer (pc)  which starts the week view on a Monday which I prefer.  How do I change my iphone calendar view to start the week on a Monday?  I am in Australia.
    I have just noticed the other discussion points - mine is set to Australia. 
    Dear Apple - as the day that the week starts on can depend on country and religion - how about making it an option that the user can change????

    I believe the week view on the iPhone is handled by the Region settings in the phone. I am not aware of any other manner to change it, as you can with Outlook.

Maybe you are looking for