Powershell and Outlook Issues

So my ultimate goal is to export emails after a specific length of time as a .msg and then upload them to sharepoint for archival purposes.
My issue is all the examples I find never seem to work for me. I use PowerGUI for my ISE, I have powershell 2.0 and Outlook 2007 SP3
So for example, when I try something very simple according to the scripting guy
Reference, I try this line of code:
[Reflection.Assembly]::LoadWithPartialname("Microsoft.Office.Interop.Outlook") | out-null
[enum]::GetNames("Microsoft.Office.Interop.Outlook.OlDefaultFolders")
This should list the enums used to point to the different folders in outlook....here are some of them:
olFolderDeletedItems
olFolderOutbox
olFolderSentMail
olFolderInbox
olFolderCalendar
olFolderContacts
olFolderJournal
When I run it, either PowerGUI or straight in the console I receive the following error:
Cannot convert argument "0", with value: "Microsoft.Office.Interop.Outlook.OlDefaultFolders", for "GetNames" to type "System.Type": "Cannot convert the "Microsoft.
Office.Interop.Outlook.OlDefaultFolders" value of type "System.String" to type "System.Type"."
At C:\Users\clayman\AppData\Local\Temp\ceb3eca9-5cf1-4dd2-92aa-c2c29d3ca438.ps1:2 char:17
+ [Enum]::GetNames <<<< ("Microsoft.Office.Interop.Outlook.OlDefaultFolders")
+ CategoryInfo : NotSpecified: (:) [], MethodException
+ FullyQualifiedErrorId : MethodArgumentConversionInvalidCastArgument
Truth be told, no matter what sample I try they all fail, for instance try and run this function (yet another scripting guy article)
Function Get-OutlookInBox
Add-type -assembly "Microsoft.Office.Interop.Outlook" | out-null
$olFolders = "Microsoft.Office.Interop.Outlook.olDefaultFolders" -as [type]
$outlook = new-object -comobject outlook.application
$namespace = $outlook.GetNameSpace("MAPI")
$folder = $namespace.getDefaultFolder($olFolders::olFolderInBox)
$folder.items |
Select-Object -Property Subject, ReceivedTime, Importance, SenderName
And this one fails with:
Add-Type : Could not load file or assembly 'Microsoft.Office.Interop.Outlook, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c' or one of its dep
endencies. The system cannot find the file specified.
At C:\Users\clayman\AppData\Local\Temp\51f81593-6a0f-4261-9888-5499432508e7.ps1:3 char:10
+ Add-Type <<<< -AssemblyName "Microsoft.Office.Interop.Outlook" | Out-Null
+ CategoryInfo : NotSpecified: (:) [Add-Type], FileNotFoundException
+ FullyQualifiedErrorId : System.IO.FileNotFoundException,Microsoft.PowerShell.Commands.AddTypeCommand
Exception calling "GetDefaultFolder" with "1" argument(s): "Value does not fall within the expected range."
At C:\Users\clayman\AppData\Local\Temp\51f81593-6a0f-4261-9888-5499432508e7.ps1:8 char:39
+ $folder = $nameSpace.getDefaultFolder <<<< ($olFolders)
+ CategoryInfo : NotSpecified: (:) [], MethodInvocationException
+ FullyQualifiedErrorId : ComMethodTargetInvocation
If I change:
Add-Type -AssemblyName "Microsoft.Office.Interop.Outlook" | Out-Null
To:
[Reflection.Assembly]::LoadWithPartialName("Microsoft.Office.Interop.Outlook") | Out-Null
The first error goes away, but the second one remains. What the heck am I doing wrong?
If you find that my post has answered your question, please mark it as the answer. If you find my post to be helpful in anyway, please click vote as helpful.
Don't Retire Technet

Hi,
How about change
$folder = $namespace.getDefaultFolder($olFolders::olFolderInBox)
to
$folder = $namespace.getDefaultFolder($olFolders.olFolderInBox)
Please test it.
Regards,
Yan Li
TechNet Subscriber Support
If you are
TechNet Subscription
user and have any feedback on our support quality, please send your feedback
here.
Cataleya Li
TechNet Community Support

Similar Messages

  • Powershell and Outlook 2007, trying to delete messages in a folder older than date

    I was hoping to get a powershell script that would do the following
    1) Connect to outlook 2007
    2) Go to Mailbox folder (not an inbox subfolder) called 'Processes'
    3) Delete all email from that folder older than 3 days old
    I did some searching, I have found very useful things like how to empty a deleted items folder.  I can even display all messages in that folder using this script snippet.  But whenever I try to filter it down to email older than 3 days old, it blows up on me.  I was attempting to use a | Where-Object pipe to reduce it and there are thousands of messages in that folder.
    $outlook = New-Object -ComObject Outlook.Application
    $olFolderInbox=6
    $n = $outlook.GetNamespace("MAPI")
    $f = $n.GetDefaultFolder($olFolderInbox)
    $mailbox = $n.Folders.Item($f.Parent.Name)
    $folder = $Mailbox.Folders.Item("Processes")
    $folder.Items
    #Clean out any open connections
    $outlook = $n = $f = $mailbox = $folder = $null;

    I thought I might offer another solution for this.  I came across this post looking to do the same, but I found it didn't always delete messages.  Based on some other information on another site I was able to come up with a modified version.
    The two other sites I referenced were:
    http://gallery.technet.microsoft.com/ScriptCenter/en-us/966637b9-0b70-41c0-99d0-4647a89da70a
    http://msdn.microsoft.com/en-us/library/bb220369%28office.12%29.aspx
    ----Script----
    #Name of folder to access.  You can specify subfolders by using FolderName\Subfolder
    $folderPath = "FolderName"
    #Filter older than 7 days
    $olderThan = (get-date).AddDays(-7)
    #Set format of date to use
    $dateFormat = "g" # This will base on time to do just date choose "M/dd/yyyy"
    #Create filter
    $sFilter = "[LastModificationTime] < `'$($olderThan.tostring($dateFormat))`'"
    $outlook = New-Object -ComObject Outlook.Application
    $olFolderInbox=6
    $n = $outlook.GetNamespace("MAPI")
    $f = $n.GetDefaultFolder($olFolderInbox)
    $mailbox = $n.Folders.Item($f.Parent.Name)
    $folders = $mailbox.Folders
    #Navigate to the proper folder
    foreach ($folderName in $folderPath.split("\"))
      $folder = $folders.Item($folderName)
      $folders = $folder.Folders
    $Items=$folder.items
    $FilteredItems = $Items.Restrict($sFilter)
    for ($i = $FilteredItems.Count; $i -gt 0; $i--) {
        Write-Host "Deleting $($FilteredItems.Item($i).Subject)"
        $FilteredItems.Item($i).Delete()
    #Clean out any open connections
    $outlook = $n = $f = $mailbox = $folder = $folders = $Items = $FilteredItems = $null;

  • RESTORING BACKUP FROM Z10 TO Q10 AND OUTLOOK ISSUE!

    Hello Everyone!
                                 just yesterday I got new blackberry q10 and now its been 8 hours am searching and trying to restore my z10 backup to q10 and am getting error says (incompatible device restore) please need help and I wanted to export my z10 contacts to outlook but I searched allot but I did nt see any option of exporting contact please if anyone can help i'll be very gladfull to hiim please 

    Hey MustafaAli,
    Welcome to the BlackBerry® Support Community Forums.
    Please review the following article that covers BlackBerry Link displays "Incompatible Device Software" error when restoring a BlackBerry 10 backup file from a later version of the BlackBerry 10 OS
    http://btsc.webapps.blackberry.com/btsc/KB34338
    Let us know if you have any questions.
    Thanks.
    -HB
    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)!

  • PowerShell and Outlook

    Greetings,
    I wrote a script that traverses a mailbox, extracts an email then removes that email from a contacts list.  It works but it is running very slow because the contacts list is 40k+ items.
    This is a marketing contacts list.  When I receive email bounces, those emails are moved to a folder.  This is the folder the script scans then removes the associated contact.  This way I don't keep sending emails to an account that no longer
    exists.  Pretty simple.
    Is there a way for me to load the contacts list in to memory so the contact look up operations runs faster?  All I really need to load in memory is the email address.  Then I would need a way to delete the actual contact based on that email address.
    Any thoughts?
    Thank you!

    Hi Bob,
    Any updates about this issue?
    If there is anything else regarding this matter, please feel free to post back.
    If you have any feedback on our support, please click here.
    Best Regards,
    Anna Wang
    TechNet Community Support

  • Need to create Meeting Request using Powershell with Outlook 2010 / 2013

    We will be creating around 100 meeting request based on data from excel, so planning to migrate it to SQL & using powershell we need to speed-up the progress.
    Script tried :
    http://social.technet.microsoft.com/Forums/scriptcenter/en-US/e88ca51c-62dd-493b-a0d1-ffe6a8696fdf/create-view-in-outlook-2013-using-powershell?forum=ITCG
    http://en.community.dell.com/techcenter/powergui/f/4833/t/19576698.aspx
    http://www.amandhally.net/2013/08/30/powershell-and-outlook-create-and-send-a-new-email-using-powershell-outlooktools-module/
    Do we have any working scripts, i tried few scripts it fails throwing error as below:
    New-Object : Exception calling ".ctor" with "0" argument(s): "Retrieving the COM class factory for component with CLSID 
    {0006F03A-0000-0000-C000-000000000046} failed due to the following error: 80080005 Server execution failed (Exception from HRESULT: 
    0x80080005 (CO_E_SERVER_EXEC_FAILURE))."
    At line:2 char:6
    + $o = New-Object Microsoft.Office.Interop.Outlook.ApplicationClass
    +      ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : InvalidOperation: (:) [New-Object], MethodInvocationException
        + FullyQualifiedErrorId : ConstructorInvokedThrowException,Microsoft.PowerShell.Commands.NewObjectCommand
    You cannot call a method on a null-valued expression.
    At line:4 char:1
    + $a = $o.CreateItem($olAppointmentItem)
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : InvalidOperation: (:) [], RuntimeException
        + FullyQualifiedErrorId : InvokeMethodOnNull
    Ganapathy

    Hi Ganapathys,
    For the error "failed due to the following error: 80080005", please Make sure that Outlook and Powershell are either both running as a standard user (not elevated) or that they are both running elevated as Administrator. They need to be running at the same
    integrity level to avoid that error.
    Please try to run powershell as standard user without "run as admin".
    If you have any feedback on our support, please click here.
    Best Regards,
    Anna Wang
    TechNet Community Support

  • Hoping for some help with a very frustrating issue!   I have been syncing my iPhone 5s and Outlook 2007 calendar and contacts with iCloud on my PC running Vista. All was well until the events I entered on the phone were showing up in Outlook, but not

    Hoping for some help with a very frustrating issue!
    I have been syncing calendar and contacts on my iPhone 5 and Outlook 2007 using iCloud  2.1.3 (my PC is running Vista). All was well until the events I entered on the phone were showing up in Outlook, but not the other way around. I’ve tried the usual recommended steps: deselecting calendar and contacts in the iCloud control panel and then re-selecting, signing out of the panel and back in, and repairing the Outlook installation in control panel.  I even uninstalled iCloud on the PC and downloaded it again (same version). 
    The furthest I’ve gotten is step 2 (and once, step 3) of 7 while performing “Outlook Setup For iCloud.” At that point I get, “Your setup couldn’t be started because of an unexpected error.”  After the first attempt at all this, all my calendar events disappeared from Outlook, although they are still in iCloud calendar and on my phone.
    Sound familiar?  Any ideas on how to solve this iCloud/Outlook issue?  Thanks much in advance!

    Hoping for some help with a very frustrating issue!
    I have been syncing calendar and contacts on my iPhone 5 and Outlook 2007 using iCloud  2.1.3 (my PC is running Vista). All was well until the events I entered on the phone were showing up in Outlook, but not the other way around. I’ve tried the usual recommended steps: deselecting calendar and contacts in the iCloud control panel and then re-selecting, signing out of the panel and back in, and repairing the Outlook installation in control panel.  I even uninstalled iCloud on the PC and downloaded it again (same version). 
    The furthest I’ve gotten is step 2 (and once, step 3) of 7 while performing “Outlook Setup For iCloud.” At that point I get, “Your setup couldn’t be started because of an unexpected error.”  After the first attempt at all this, all my calendar events disappeared from Outlook, although they are still in iCloud calendar and on my phone.
    Sound familiar?  Any ideas on how to solve this iCloud/Outlook issue?  Thanks much in advance!

  • Issue on sync for iPhone4S(iOS6.1) with iTune Ver11.3.1.2 to Win7 and Outlook 2007

    Hi Fans of iPhone, Anyone can advise? Thanks a lot.
    After I synchronized my iPhone4S (iOS6.1) with iTune Version 11.3.1.2 to my PC (Chinese Win 7 and Outlook 2007), then most 95% of Contact's phone number be also disappeared in my iPhone & Outlook.
    Additional Info: While it was synchronizing the iPhone in between, iTunes did ever showed the option dialog such as "Cancel" and "Combined Information (M)" and "Cancel Information (R)". I clicked the button of "Combined Information (R)" then.
    As a resul, it is being only showed the each Profile's Contact's name without the phone number in both of iPhone4S and Outlook2007, affected over 95% contact profiles' in my iPhone and Microsoft Outlook. It affected as I lost most of all contact persons' phone number. Seriously, it affect my life and mental. Please advise for help to fix and  advise urgently. Million Thanks!!!

    Hello kylhk,
    I would start with looking to when you had a back up before the issue with your contacts. If you do, then I would recommend to restore your iPhone and put that back up back on to get your contacts back. Check out the article below for the steps on how to do that. 
    Back up and restore your iOS device with iCloud or iTunes
    http://support.apple.com/kb/ht1766
    Regards,
    -Norm G. 

  • Issue on sync for iPhone4S (iOS6.1) with iTune Version 11.3.1.2 to Win7 and Outlook 2007

    Urently>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    After I synchronized my iPhone4S (iOS6.1) with iTune
    Version 11.3.1.2 to my PC (Chinese Win 7 and Outlook 2007), then most
    95% of Contact's phone number be also disappeared in my iPhone & Outlook.
    It is only showed the each Profile's Contact's name without the phone number in
    iPhone4S and Outlook2007, affected over 95% contact profiles' in my iPhone and
    Outlook. It affected as I lost most of all contact persons' phone
    number. Please help to fix and  advise urgently.

    Hello kylhk,
    I would start with looking to when you had a back up before the issue with your contacts. If you do, then I would recommend to restore your iPhone and put that back up back on to get your contacts back. Check out the article below for the steps on how to do that. 
    Back up and restore your iOS device with iCloud or iTunes
    http://support.apple.com/kb/ht1766
    Regards,
    -Norm G. 

  • Outlook and VPN issues

    All - I have an issue when connecting through Company VPN to MS Outlook 2007 from my home.  This problem is only with Outlook.  When I connect to company VPN from home, I can see all the company network drives, printers, etc, however when opening Outlook, it try's to connect until it shows disconnected.  Works fine when at work, on the company network backbone.  Also, VPN and Outlook works and connects fine when I disconnect E3000 and connect directly to the SpeedStream ADSL modem.  I just hate disconnecting all my other home computers from the internet every time I need to Compose and send work e-mails.  I also tried to change MTU values down to 1431 with no luck.  It is definitely a setting in the E3000 configuration.  Any feedback would be appreciated.  My 10 yr old Linksys router worked great until it burned out.

    I'm having exactly the same problem - WRT110 wireless router and before I installed it I had no problem connecting to MS Outlook via VPN.  My VPN connects perfectly - only the Outlook MDB is affected.  Searching other forums revealed this problem has been around for a while.
    A solution from back in 2004 suggested changing some registry to allow larger packets through but I tried that and it didn't work.  I suspect it's something really simple because it works EVERYWHERE else but at my house.
    http://www.techspot.com/vb/topic16057.html
    Did not work for me.
    I have a back-up cell modem built in that is a workaround but has become unreliable as the network speeds have increased.
    If you guys figure this out - I'd appreciate finding out how!

  • I am having multiple issues with syncing my iphone calendar and outlook There are often 1 hour time differences in the entries on the 2 devices and sometimes events that have been amended are not updated on iphone I mostly enter items on my laptop

    I am having multiple issues with syncing my iphone calendar and outlook calendar on my laptop
    I mostly enter the original items on my laptop
    There are often 1 hour time differences in the entries on the 2 devices and sometimes events that have been amended are not updated on iphone

    This sounds like an error in Time Zone support. The time zone needs to be the same in Outlook as well as the phone.

  • Icloud 2.0 and outlook 2007 send issues

    icloud 2.0 and outlook 2007 send issues
    i cannot send email any longer in outlook 2007

    Look at this discussion:
    Re: Excel 2007 problem opening xlsx files when iCloud control panel is installed
    .... and the problem is still not solved (iCloud 3.1.0.40) and I guess will never be. We need to rename or delete the shellstreams.dll or save the excel-files as .xls to solve the problem for ourselves!
    What a shame!

  • Calendar and Outlook sync issues and inconsistencies

    Hello,
    These issues have existed since my first iPhone (3GS) and Outlook 2007, and they continue today with my 5S and Outlook 2010:
    1.  When I add an appointment on my iPhone calendar, after I sync with my PC the appointment in my Outlook calendar has a 99 day alarm and is marked as private.  I do not set either of these attributes when creating the appointment on my iPhone calendar.
    2.  Some all-day appointments that I create in Outlook show as 12am to 12am across two days on my iPhone calendar.
    3.  Some all-day appointments that I create in Outlook show as No Time on the iPhone, others show as the entire day.
    4.  After syncing through iTunes, some iPhone calendar items that have specific times get moved to the no time area in Outlook.
    5.  Notes for calendar appointments lose their formatting when I edit and update the note on my iPhone.
    Looking for resolutions to the above annoyances.
    Thank you,
    Jeff

    There was a setting I hadn't found in the PC Companion software:
    On the start sync page there is a settings heading next to a spanner on the righthand side - this takes you to sync settings
    Select Personal Data Selection and then the properties button for Calendar
    You can then set the sync to select all your appointments or a subset.
    I hope that this helps someone - it has taken hours to find this setting!

  • I use a Win7 PC with iCloud and Outlook 2010 for syncing my calendar and contacts. I can enter data in my Outlook Calendar and it will appear in iCloud, but data entered in iCloud does not sync back to Outlook.  ICloud syncs to my iphone fine both ways.

    I use Win 7 PC with iCloud and Outlook 2010 for syncing my Contacts and Calendar.  They have stopped syncing...mostly.
    Now, appointments I enter on my local Outlook (iCloud) Calendar goes up to iCloud fine.  But, data I enter on iCloud directly does not come down to my local Outlook iCloud Calendar.  If I reboot the computer, the iCloud data shows up.
    Also, Contacts I try to enter on my Outlook (iCloud) Contacts goes up to iCloud fine, but does not show up in my local iCloud Contacts.
    All syncing works with my iPhone.
    I have signed out of iCloud on PC.  I have stopped syncing and re-started.  No change.
    I have an .aplzod folder for iCloud.  I have a separate Earthlink.net.pst email account in Outlook and a me.com.pst Outlook email account (which I don't actually use) listed under Data Files.
    Any help would be appreciated.  Curious that Outlook will upload to iCloud but not receive downloads unless I reboot.  However, rebooting does not download the missing Contacts.
    Jim Robbins

    Hi Jim!
    You've started off with some good troubleshooting steps, so let's see if we can take this a little further and figure out what the issue is with your iCloud contacts and calendars. I have two articles here that will help you troubleshoot this issue a little further, but the troubleshooting steps for both articles are exactly the same, so I will lay those out for you here:
    Note: When using iCloud Control Panel 2.0 and later, iCloud Calendar event descriptions in Outlook 2010 do not support text formatting (bold, italics, or underline), HTML, images, or attachments. The contextual (right-click) menu has also been disabled.
    If you are having trouble with a PC (with Outlook 2007 or 2010) and iCloud Calendar, try each of these steps, testing after each to see if the issue is resolved:
    Verify that you are using a Windows configuration that is supported by iCloud. For more information, see iCloud system requirements.
    When enabling Calendars in the iCloud Control Panel, part of the setup process is to copy your Calendars data from the default Outlook ".pst" file to iCloud, and then remove the Calendars from the ".pst" file by placing them in the Deleted Items folder in Outlook. The Calendars data is then stored in the iCloud data set within Outlook so that changes can be pushed to and from Outlook by iCloud. Be sure you are looking for your data within the iCloud dataset within Outlook after enabling Calendars in the iCloud Control Panel. The deleted files can be seen by viewing Deleted Items within your Outlook Folder List. This is not iCloud removing your data; iCloud simply copies your data into the iCloud data set and then removes the local Calendars data by placing it in the Deleted Items folder.
    Make sure your computer is online. Attempt to view www.apple.com and iCloud.com. If you can't connect to the Internet, your iCloud calendars and events will not update in Outlook. Click here for more information about troubleshooting your Internet connection.
    Open a secure website to test if you are online as is necessary for iCloud Calendar. This also tests if the ports 80 and 443 are accessible. Outlook requires port 443 access to iCloud in order to push and pull updates to and from the iCloud Calendar servers.
    Verify that your iCloud member name is entered into the iCloud Control Panel pane. See iCloud Setup for more information about setting up iCloud on Windows.
    Completely close and reopen the iCloud Control Panel.
    If you recently made changes in Outlook and they are not moving to your other devices or vice-versa, click the Refresh button in Outlook.
    Turn iCloud Calendar off and back on:
    Close Outlook.
    Open the Windows Control Panel:
    In Windows 8, move the pointer to the upper-right corner of the screen to show the Charms bar, click the Search charm, and then click the iCloud Control Panel on the left.
    In Windows 7 and Vista, choose Start menu > All Programs > iCloud > iCloud.
    Remove the checkmark in the checkbox next to Mail, Contacts, Calendars & Tasks, and click Apply. Wait a few seconds, then replace the checkmark, and click Apply.
    Open Outlook and test to see if the issue has been resolved.
    Ensure the iCloud Outlook Add-in is active within Outlook.
    Outlook 2010:
    Open Outlook 2010.
    Click the File menu.
    Click Options in the left panel of the Outlook window.
    Click Add-Ins in the left panel of the Outlook Options window.
    Look at the list of add-ins beneath "Active Application Add-Ins" and verify that the "iCloud Outlook Add-in" is listed.
    For Outlook 2007, follow these steps to verify the iCloud Outlook Add-in is active
    Open Outlook 2007.
    From the Tools menu, choose Trust Center.
    Select Add-ins from the left column.
    Look at the list of add-ins beneath "Active Application Add-Ins" and verify that the "iCloud Outlook Add-in" is listed.
    For additional information about managing Add-ins with Microsoft Outlook, see this Microsoft support document.
    Restart your computer. This may sound simple, but it does reinitialize your network and application settings and can frequently resolve issues.
    iCloud: Troubleshooting iCloud Contacts
    http://support.apple.com/kb/ts3998
    iCloud: Troubleshooting iCloud Calendar
    http://support.apple.com/kb/ts3999
    Thanks for using the Apple Support Communities!
    Cheers,
    Braden

  • I have an Ipad2, an Iphone 4 . I want to be able to sync both of these with my Windows desktop and Outlook 2007. I would like to sync to and from the Idevices and Outlook.

    I have an Ipad2, an Iphone 4 . I want to be able to sync both of these with my Windows desktop and Outlook 2007. I would like to sync to and from the Idevices and Outlook. When I attempt to sync in itunes I get a popup message asking if I want to delete, Merge or cancel. Not wanting to delete of cancel the only option left is Merge.
                When selecting Merge all of the entries in outlook are added to the idevice. The next time I merge all of the same entries plus any new ones are added, resulting in older entries being repeated i.e an entry like “John’s Birthday” will appear 5 or 6 times on the same date.
                How do I resolve this issue? How do I get the the sync process to add only new entries?

    This is a great question. First, facetime will not work because it has to establish a Call connection first. iMessage should work, but how to get it going I am not sure. Two great Apps to try are, Viber and Skype. Viber is excellent, it works over WiFi, you can make free calls and free text messages all over the world with other users who have Viber installed. It does not even have to be open on screen to work. Viber does have to recieve one text message with activation code, to activate it, this will be your only hurdle, but maybe Verizon can help you get that one text message. Skype does have to be open on screen however, but this can function like Facetime with WiFi connection. Definitely get Viber free in App Store, and put it on all your iDevices so the old Verizon iPhone can function as a telephone when on WiFi.

  • Installed Windows 8.1 and Outlook 2013 - have to use iCloud Outlook Add-in to sync my Iphone 5 with Outlook - reminders work on iPhone, but reminder window & email reminders don't work in Outlook 2013. Help

    Using windows 8.1 and outlook 2013 with iCloud Outlook Add-in so that my iPhone 5 will sync with outlook. Now reminders work on iPhone 5, but don't work in outlook 2013. Help, I've tried everything I can think of or found on the internet.

    Hi,
    Please follow the steps below to make sure the reminders have been enabled in Outlook:
    On the File tab, click Options.
    Select Advanced in the Outlook Options dialog box.
    In the Reminders section, select Show reminders.
    Click OK.
    I also found a similar thread here:
    http://social.technet.microsoft.com/Forums/windows/en-US/70bbd99e-6c1b-4a56-b1eb-f1812f96ed56/outlook-2010-reminders-not-appearing-in-outlook-but-appearing-on-iphone
    As mentioned in the thread, you can try these steps:
    Use MFCMAPI to delete the Reminders Folder, then run "outlook.exe /resetfolders" to recreate this folder:
    Download MFCMAPI:http://mfcmapi.codeplex.com/releases/view/118446
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    If the problem persists, try to recreate the user’s profile of the Outlook to check this issue:
    http://support.microsoft.com/kb/829918/en-us
    Regards,
    Melon Chen
    TechNet Community Support

Maybe you are looking for