Lync Server 2013 - Disaster Recovery Plan

Hi All,
I am looking for a document which has the information about the different scenarios regarding High Availability and Disaster Recovery and things to perform during that situation
Eg.
If a front end Server is failed. then the load will be moved to another front end server in the pool
similarly back end Server fails, then the load gets moves back to SQL mirroring server by SQL Witness server
Anil Kumar (MCITP)
Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.

Hi Anil
A similar thread for your reference which might help you
https://social.technet.microsoft.com/Forums/lync/en-US/67e5dfa3-92ee-4732-ab1a-48b52f028650/lync-2013-site-resiliency?forum=lyncdeploy
Remember to mark as helpful if you find my contribution useful or as an answer if it does answer your question.That will encourage me - and others - to take time out to help you Check out my latest blog posts on http://exchangequery.com Thanks Sathish
(MVP)

Similar Messages

  • Same Server 2013 Disaster Recovery using Database Portability

    Hi,
    I need to rebuild a 2012 Server with AD (Domain controller) + Exchange 2013 starting totally from scratch.
    I do have a copy of the clearly unmounted Mailbox Database.
    For whatever reasons, the new server MUST use the old Computer Name and the old AD domain configured as a new forest on the new server. So, the old DC was DC.mydomain.com and it has to be the same on the new machine.
    I did the AD configuration respecting these constrains.
    When it comes to Exchange 2013, I did a clean install of the 2013 CU3 (same as it was on the old server) and used the same organization name (as required by Database Portability). Then, I followed  the procedure reported at: http://technet.microsoft.com/en-us/library/dd876926%28v=exchg.150%29.aspx
    and sadly, when I run the
    Get-Mailbox -Database <SourceDatabase>
    I get no results, even if the DB contains several mailboxes.
    I double checked every step of my procedure also according to different forum/blog posts I found googling but no luck.
    Please, give me an advice.
    Any help is appreciated.

    I believe that you might be able to mount an EDB file under the circumstances you describe.
    Get-Mailbox does an Active Directory lookup of users, and returns the mailboxes it finds.  Simply restoring the database does not populate all the data in AD with the mail-enabled attributes.  You might be able to do that by using Connect-Mailbox
    to connect the user account with the disabled mailbox in the database.
    So, if you can get the database (with no log files) mounted using Mount-Database -AcceptDataLoss, then you might be able to use Connect-Mailbox to connect the newly-created user accounts with the disabled mailboxes in the database you mounted.
    I believe this should work, but I've never had to do it myself, so I can't promise anything.
    Ed Crowley MVP "There are seldom good technological solutions to behavioral problems."

  • How do I enforce "Show My Picture" instead of "Hide My Picture" in Lync Server 2013?

    I was scouring TechNet and the web for a script that could perform the same task as one that I previously used for Lync 2010.
    In Lync 2010, we had already used Lync policy to enforce that only the Active Directory photo could be used. One thing that we couldn't set via policy however was the ability to complete remove the "Hide My Picture" option in Lync 2010 client.
    This left users with the ability to freely switch between showing the Corporate photo or no photo. I did eventually find and make use of script that constantly checked for this setting switch, then switched all users back to the desired "Show My Picture"
    setting. I don't recall who wrote it, but it's easy to find on technet. As we started to move more and more users to our Lync 2013 enterprise pool, I noted that even though the script was running, the setting seemed to be changeable. A closer look revealed
    that the script didn't function correctly against SQL for our 2013 pool.
    I took the concept and applied it to Lync Server 2013 after studying the differences in Userdata. In Lync 2013, because UserData is in .zip, you need to convert it to 2010 format XML to use logic intended for Lync 2010. My script will extract 2013 data,
    convert it to 2010, query for users who are set to "Hide My Picture" and then export any guilty users to an edited2010 XML. The script then converts this to 2013 Format .zip, and uploads the data for these users only. I chose to use Update-CSUserData
    insted of Import-CSUserData as this avoids having to restart my Front End. I then use a scheduled task on my Front End server which runs this script every hour.
    Please note: You can use this script, but I guarantee nothing about it's functionality, and I am not responsible for how you positively/negatively use it. You should always test things in a Lab Environment. Furthermore, this script was run on a relatively
    smaller Enterprise system in which we are by default set to "Show My Picture" and already assigned as part of our user policy the ForceADPhoto attribute. This means that running the script is less intensive on my FE than say on a FE with 10,000 users
    where none of the users were set to "Show My Picture". Please keep this in mind when planning to execute against your FE. You may want to edit my script and insert the -UserFilter or -WhatIf in the Export-CsUserData UpDate-CsUserData.
    Anyways, I hope this solves the similar issue for many of you Lync 2013 administrators. Please feel free to share my work with others if it does, and also give this post some good feedback and/or mark my post as the answer to your problem.
    Alas, here's the script (save it as a .ps1 , i.e. ForceShowMyPicture.ps1)
    #Lync 2013 ForceShowMyPicture - Compiled by Octavio A. Serpa (Octavio-Admin on TechNet)
    # Import Lync Module
    Import-Module “C:\Program Files\Common Files\Microsoft Lync Server 2013\Modules\Lync\Lync.psd1"
    ###Variables To Set
    #This variable is a folder where files will be temporarily written
    $folderPath = “C:\Lync2013Scripts\Export”
    #This is the FQDN of the pool in which the users you want to target reside
    $poolFQDN = “<lyncpool.domain.local>”
    ###Done
    #Message Out
    Write-Host -ForegroundColor YELLOW “CHECKING THAT TEMP EXPORT FOLDER PATH EXISTS"
    If (-not (Test-Path "$folderPath" -pathType container))
     "ERROR: Your Export Directory doesn't exist!"
     Exit
    Write-Host -ForegroundColor Green “TEMP EXPORT FOLDER DOES EXIST"
    Write-Host -ForegroundColor YELLOW “PRE-CLEANING OLD EXPORT/IMPORT FILES"
    If (Test-Path "$folderPath\Lync2013UserData.zip") { Remove-Item "$folderPath\Lync2013UserData.zip" }
    If (Test-Path "$folderPath\Lync2010UserData.xml") { Remove-Item "$folderPath\Lync2010UserData.xml" }
    If (Test-Path "$folderPath\Lync2010EditedUserData.xml") { Remove-Item "$folderPath\Lync2010EditedUserData.xml" }
    If (Test-Path "$folderPath\Lync2013EditedUserData.zip") { Remove-Item "$folderPath\Lync2013EditedUserData.zip" }
    Write-Host -ForegroundColor Green “PRE-CLEANING COMPLETED SUCCESSFULLY"
    #Message Out
    Write-Host -ForegroundColor YELLOW “EXPORTING LYNC 2013 POOL USER DATA”
    Export-CsUserData -PoolFqdn $poolFQDN -FileName $folderPath\Lync2013UserData.zip
    Write-Host -ForegroundColor Green “EXPORT COMPLETED SUCCESSFULLY"
    #Message Out
    Write-Host -ForegroundColor YELLOW “CONVERTING LYNC 2013 USER DATA TO 2010 FORMAT”
    Convert-CsUserData -InputFile "$folderPath\Lync2013UserData.Zip" -OutputFile "$folderPath\Lync2010UserData.xml" -TargetVersion Lync2010
    Write-Host -ForegroundColor Green “CONVERSION COMPLETED SUCCESSFULLY"
    #Message Out
    Write-Host -ForegroundColor YELLOW “CHECKING THAT FORMAT CONVERSION WAS SUCCESSFUL AND .XML EXISTS”
    If (-not (Test-Path "$folderPath\Lync2010UserData.xml" -pathType leaf))
     "ERROR: Verify that $folderPath is writable!"
     Exit
    Write-Host -ForegroundColor Green “CONVERSION COMPLETED SUCCESSFULLY"
    #Message Out
    Write-Host -ForegroundColor YELLOW “LOADING XML”
    $d = [xml] (Get-Content "$folderPath\Lync2010UserData.xml")
    Write-Host -ForegroundColor Green “XML LOADING COMPLETED SUCCESSFULLY"
    #Message Out
    Write-Host -ForegroundColor YELLOW “CORRECTING AD PHOTO SETTING”
    $changes = 0
    $lastProcessedUser = $null
    foreach ($hr in $d.HomedResources.HomedResource)
     $found = 0
     foreach ($c in $hr.Containers.Container)
      foreach ($p in $c.Publication)
       If ($p.CategoryName -eq 'contactCard' -and $p.InstanceNum -eq 6 -and $p.Data.contactCard.displayADPhoto -eq 'false')
        If ($hr.UserAtHost -ne $lastProcessedUser)
         "$($hr.UserAtHost) reset"
         $lastProcessedUser = $hr.UserAtHost
        $p.Data.contactCard.displayADPhoto = 'true'
        $p.Version = (([int] $p.Version) + 1).ToString()
        $p.PrevPubTime = $p.LastPubTime
        $p.LastPubTime = (Get-Date -Format s).ToString()
        $found = 1
        $changes++
     If ($found -eq 0) { [Void]$d.HomedResources.RemoveChild($hr) }
    Write-Host -ForegroundColor Green “AD PHOTO SETTING CORRECTIONS COMPLETED SUCCESSFULLY"
    #Message Out
    Write-Host -ForegroundColor YELLOW “Changes: $changes"
    If ($changes -ne 0)
     #Message Out
     Write-Host -ForegroundColor YELLOW “RE-SAVING XML”
     $d.Save("$folderPath\Lync2010EditedUserData.xml")
    #Message Out
    Write-Host -ForegroundColor YELLOW “CONVERTING LYNC 2010 .XML BACK TO 2013 .ZIP FORMAT"
    Convert-CsUserData -InputFile "$folderPath\Lync2010EditedUserData.xml" -OutputFile "$folderPath\Lync2013EditedUserData.zip" -TargetVersion Current
    #Message Out
    Write-Host -ForegroundColor Green “CONVERSION BACK TO 2013 .ZIP FORMAT SUCCESSFUL"
    #Message Out
    Write-Host -ForegroundColor YELLOW “IMPORTING LYNC 2013 POOL DATA FOR CORRECTED USERS”
    Update-CsUserData -FileName $folderPath\Lync2013EditedUserData.zip -Confirm:$false -Verbose
    Write-Host -ForegroundColor Green “IMPORT COMPLETED SUCCESSFULLY"
    Write-Host -ForegroundColor YELLOW “STARTING POST-IMPORT-CLEANUP OF EXPORT/IMPORT FILES"
    If (Test-Path "$folderPath\Lync2013UserData.zip") { Remove-Item "$folderPath\Lync2013UserData.zip" }
    If (Test-Path "$folderPath\Lync2010UserData.xml") { Remove-Item "$folderPath\Lync2010UserData.xml" }
    If (Test-Path "$folderPath\Lync2010EditedUserData.xml") { Remove-Item "$folderPath\Lync2010EditedUserData.xml" }
    If (Test-Path "$folderPath\Lync2013EditedUserData.zip") { Remove-Item "$folderPath\Lync2013EditedUserData.zip" }
    Write-Host -ForegroundColor Green “POST-IMPORT-CLEANUP COMPLETED"
    #Message Out
    Write-Host -ForegroundColor Green “AD PHOTO SETTING SUCCESSFULLY UPDATED"

    When I try to run this I get the follow error.  Any thoughts?
    Update-CsUserData : Unable to cast COM object of type 'System.__ComObject' to interface type
    'Microsoft.Rtc.Interop.User.ICsUserManagement'. This operation failed because the QueryInterface call on
    the COM component for the interface with IID '{D5ADD966-BDC3-4A8F-BFE8-6A59A9F74CB2}' failed due to the
    following error: Class not registered (Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG)).
    At C:\Lync2013Scripts\ForceDisplayPhoto.ps1:113 char:1
    + Update-CsUserData -FileName $folderPath\Lync2013EditedUserData.zip -Confirm:$fal ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : InvalidOperation: ([email protected]:String) [Update-CsUserData], Invalid
       CastException
        + FullyQualifiedErrorId : Microsoft.Rtc.Management.AD.Cmdlets.ImportOcsUserDataCmdlet

  • Disaster Recovery Plan

    We're running xMII 11.5 SP3 in a three-tiered centralized server environment (Development, Staging and Production).  We plan on having a project up and running in production by October 1.  Before we do so, however, we need to develop a disaster recovery plan in the event of a failure of our production server.  Our staging server is in a different city and we plan on using it as our temporary production server.
    Does anyone have any recommendations on putting together a disaster recovery plan for this scenario?
    Thanks!

    Dave,
    Good to see you active on the forums, hope all is well...
    As for disaster recovery the procedures will follow along similar to your roll out plan, where content is moved from Dev -> Staging -> Prod.  The main difference will be that you will have to reconfigure the xMII system.  In 11.5 this is all file based XML files in the following directories:
    <Drive>:\Lighthammer\Illuminator\conf
    <Drive>:\Lighthammer\Illuminator\sysconf
    <Drive>:\Lighthammer\Illuminator\properties
    <Drive>:\Lighthammer\Security\*
    <Drive>:\Lighthammer\Xacute\Configuration
    These are the main ones, there may be others depending on your development specifics.
    Hope this helps.
    -Sam

  • Disaster Recovery Plan for BW Production db

    Hello Experts,
    We at IP are trying to evaluate and institute a sound and
    cost-effective disaster recovery plan for the BW production system.
    In this regard, we would like to hear from you(or from your infrastructure folks) about the experience(s) at
    client sites of such scenarios for BW.
    We are specifically interested in knowing answers to:
    0. Customer Name
    1. Do you have currently have Disaster Recovery Plan for BW Production?.
    2. How large is your BW production database?
    3. Is the alternate server being replicated real time or using tapes or ......?
    4. What are your target service levels?
    5. Location specifics or any other pertinent info.
    Any input is highly appreciated.
    Thanks in advance,
    Kumar Gudiseva.

    I don't think people will give this information out - especially the customer name will certainly not be published in a public forum.
    For DR plans check http://service.sap.com/ha
    Markus

  • Disaster Recovery Plan for BW Production

    Hello Experts,
    We at IP are trying to evaluate and institute a sound and
    cost-effective disaster recovery plan for the BW production system.
    In this regard, we would like to hear from you(or from your infrastructure folks) about the experience(s) at
    client sites of such scenarios for BW.
    We are specifically interested in knowing answers to:
    1. Do you have currently have Disaster Recovery Plan for BW Production?.
    2. How large is your BW production database?
    3. Is the alternate server being replicated real time or using tapes or ......?
    4. What are your target service levels?
    5. Location specifics or any other pertinent info.
    Any input is highly appreciated.
    Thanks in advance,
    Kumar Gudiseva.
    Edited by: Kumar Gudiseva on Jan 9, 2008 3:35 PM

    Hi,
    The disaster recovery strategy should include a backup and restore plan that determines which data should be backed up and the procedures that will be used to recover it.
    Please check these links:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/001ef297-9bbf-2910-bbaa-babedc1b01ca
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/6efca1a6-0301-0010-6f9d-82cf87340e45
    /people/nicholas.holshouser/blog/2006/09/07/the-square-root-of-an-it-disaster-is-recovery
    Hope it helps.
    Regards,
    Mona

  • Lync Server 2013 Installation Error

    Hello,
    I am using my AD in Windows Azure VMs. I created new VM of A3 (4 cores, 7 GB Memory) Windows Server 2012 R2, Port 1433 MSSQL added, made it a member of Domain and planned to install first Lync Server 2013 on it.
    In "Setup or Remove Lync Server Components" of "Install or Update Lync Server System", got an Red Coloured text "An error
    occurred while applying SQL script for the feature BackendStore."
    I have not enabled monitoring and archiving server in topology builder. I added "Network Service" and assign "Full Control" in Security Permissions of "C:\CsData" and "C:\LyncShare".
    I executed the SQL Setup Wizard and upgraded any instance to 2012.
    Please guide.
    Thanks, Divyaprakash Koli

    Is the Lync deployment in Azure as well? If so please check this
    blog by Guy Bachar. Look for "Houston, we have a problem" 
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question, please click "Mark As Answer"
    Lync Sorted blog

  • Lync Server 2013 in a Remote Desktop Environment

    Hello Community,
    We have a client who is sold on Lync. He wants to install Lync server in a Terminal Server but his environment is RDHS 2008v2 and his end users have thin clients. According to MS official position It is not supported. Has anyone successfully implemented
    this ? If yes what are the pitfalls that lay ahead with regards to audio/video redirection, desktop sharing etc. He has traditional phones but really he wants to get rid of them and go Lync full blown.

    The Virtualizing Lync Server 2013
    (WindowsITPro) article presents a nice overview to this topic.
    In additon, do take a look at the following resources which may be helpful:
    Planning a Lync Server 2013 Deployment on Virtual Servers
    http://www.microsoft.com/en-us/download/details.aspx?id=41936
    Deploying the Lync VDI plug-in in Lync Server 2013
    http://technet.microsoft.com/en-us/library/jj204683.aspx
    Making the Microsoft Lync to work best in your virtualization environment
    http://www.youtube.com/watch?v=WiZX3uoVKV8
    Note that unlike Lync Server 2010, the Lync 2013 VDI browser plug-in is designed to support VDI environments (with paired audio/video) running on supported platforms (from Windows Server 2008 R2 to 2012/R2).
    Hope this helps.
    Thanks / rgds,
    TechNet/MSDN Forum Moderator - http://www.leedesmond.com

  • How to run a Lync Server 2013 in amazon ec2 Instance ?

    Hi Friends,
    I would like to install a Lync server 2013 in amazon ec2 instance. Let me know can i install Active Directory server, Lync Server 2013 and Media server in a single amazon instance ?. If it possible how can i do it ?. And is any other features need to install
    to get the fully functional Lync server. Please help me am newbie in Lync environment  

    You can get Lync working in EC2 and I have lab'd his many times. Having said that the process isn't that straight forward (especially if you plan to do voice) a lot of planning and testing, specifically of the network would need to be undertaken.
    You can add multiple interfaces to an EC2 instance (see here http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-eni.html)
    If you're hard set on using EC2 you can get it to work, but I personally would look at Office 365 E4 or a small on-premise deployment depending on your requirements. 
    If this helped you please click "Vote As Helpful" if it answered your question please click "Mark As Answer"
    Georg Thomas | Lync MVP
    Blog www.lynced.com.au | Twitter
    @georgathomas
    Lync Edge Port Check (Beta)
    This forum post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • How can I connect the phone network to LYNC Server 2013?

    Greetings,
    We have a working implementation of Lync Server 2013 (pc to pc), our objective is to connect lync to our phone central, receive and send calls from lync clients (pc, phone, etc), basically enterprise voice services.
    I would like to know the following:
    Hardware that I need for this beside the server.
    Extra configurations that must be done.
    If you could recommend me the hardware needed it would be helpful.

    You'll need a gateway typically. You can find a list of qualified IP gateways here: http://technet.microsoft.com/en-us/office/dn788945.aspx
    I typically lean towards the AudioCodes Mediant line, though many here love Sonus as well.  You'll need to pick a method to connect to your PBX before you begin, such as via a T1/E1 trunk, FXO ports, or a SIP trunk depending on what your PBX will
    support. 
    You'll need to configure the PBX to route calls through the T1 towards Lync and vice versa.  You'll also need to configure the gateway itself, so I'd go with a consultancy with experience here or purchase remote implementation support from the hardware
    manufacturer.
    On the Lync side, you'll need to configure dial plans, voice policies, usages, and routes:
    http://technet.microsoft.com/en-us/library/gg398272.aspx
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question please click "Mark As Answer".
    SWC Unified Communications
    This forum post is based upon my personal experience and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • HLB for Lync Server 2013 Standard Edition

    Hi Guys,
    I am planning to add an additional new Lync Central site with paired Lync Server 2013 standard edition in Primary and DR data centers. with 1 or 2 OWAS Servers in each DCs. No Edge
    server in this new Lync central site as we already have an Edge pool in another central site for federation. Only IM & P and Conferencing, no External Access, Mobility and EV.
    My question is, for LS2013 Standard edition paired pools in the new Lync Central site. should I use HLB or DNS LB should be ok? as technically we do not have any HA here only DR.
    Any advantage using HLB over DNS LB in LS2013 Standard edition?
    Thanks for your help.
    Cheer....

    You typically wouldn't need HLB with standard edition at all.  What were you planning to accomplish?
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question please click "Mark As Answer".
    SWC Unified Communications

  • Deployment of Lync Server 2013

    HI , 
    Please help to get deployment plan of Lync 2013 including all steps.

    Hi,
    Before deploy Lync Server 2013, you can firstly use Lync Planning Tool to provide prescriptive guidance to get you started with planning your topology.
    More details:
    http://www.microsoft.com/en-hk/download/details.aspx?id=36823
    Then deploy Lync Server 2013 with the help of other Lync guidance.
    Best Regards,
    Eason Huang  
    Eason Huang
    TechNet Community Support

  • IOPS & Lync Server 2013 - Guidance

    Is there any formula MS released for IOPS calculation for Lync Server 2013.
    Do we need to take IOPS into consideration for Lync Server 2013 while planning, how to calculate the Lync Server 2013 IOPS requirements?

    The official disk guidelines are here:
    https://technet.microsoft.com/en-us/library/gg615015(v=ocs.15).aspx but they don't mention IOPS specifically.  The front ends in 2013 can get beaten a bit due to all the presence subscriptions and related queries. 
    They also touch on it a bit when it comes to virtualization:
    https://www.microsoft.com/en-us/download/details.aspx?id=41936
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question please click "Mark As Answer".
    SWC Unified Communications
    This forum post is based upon my personal experience and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • SQL Server Sizing for Lync Server 2013

    Hi,
    We are planning to install Lync Server 2013 with 800 users, but I can find any information about the SQL Server instance sizing.
    Can anyone give me an estimation or prior experience with similar installations? I need to know Disk size, memory an CPU number.
    Thanks in advance.

    There are a few variables to consider.  Are you turning on monitoring, archiving, and is enterprise voice enabled?  Is persistent chat enabled?  Is it virtualized?  Is this Lync enterprise edition or standard with a portion of the
    databases hosted on full SQL?  Are you required to retain any information or logs for a specific amount of time?  Are you keeping SQL backups local with maintenance plans and for how long?
    I would suggest not going below 16GB for a SQL Server, but you may not need much more.  If it's virtual I'd throw 4 cores at it at least and disk space will vary based upon what you're doing and how long you want to keep things.  Thick provision
    those drives and make sure the logs and databases are on separate partitions.  
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question please click "Mark As Answer".
    SWC Unified Communications

  • Deploy Exchange 2013 , Lync server 2013 and shrepoint server 2013

    Hi dears ,
    I have a deployment requirement in which I have to plan for deploy Exchange 2013 , Lync server 2013 and SharePoint server 2013 on premise for 500 user and for one organization , now I have been asked to provide the software and hardware requirement
    for this deployment .
    so I wonder , is there any guide or link to find the hardware and software requirements for this deployment ?

    Hi,
    You can refer to the link below about the hardware/system requirements for Lync Server 2013:
    https://technet.microsoft.com/en-us/library/gg398438.aspx
    Note: it is not supported to install Lync Server in the same computer with DC, Exchange Server and SharePoint Server.
    If you want to deploy Lync Server, you’d better read the guide firstly before deploy it:
    https://technet.microsoft.com/en-us/library/gg398616.aspx
    For the deployment of Exchange 2013 and SharePoint 2013, you can also post case on Exchange and SharePoint forum, and there are more experts will help you:
    Exchange 2013:
    https://social.technet.microsoft.com/Forums/office/en-US/home?category=exchangeserver
    SharePoint 2013:
    https://social.technet.microsoft.com/Forums/office/en-US/home?category=sharepoint
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

Maybe you are looking for

  • My mac mini keeps freezing up on me at random

    Completely at random it gives me the turning beachball? I have tried to google the issue but anything i have found doesnt seem to work, i did see some suggestions from other people to run etrecheck so i did and here are the results. I should also add

  • User exits in HR-ABAP

    Hi all, Please can you give me the any small example on USER EXITS in HRmodule... thanks pooja

  • Facetime with iPad issues. Help please

    Own an iPhone 4 and iPad (3rdgen) and using facetime without issue until ios7 upgrade. iPhone not upgraded as no space. Now I cannot receive facetime calls on iPad but can make them. Can receive calls on iPhone but they cannot connect. Not sure if ju

  • Need Suggestion  to learn BPEL

    Hi Friends Iam totally new to BPEL please help me to learn it and to become Familiar in BPEL My Qusetion ========= 1) In short what is BPEL .why we are using it and what the actual purpose? 2)From were i start learning bpel 3)what technology is neede

  • IPhoto shuts down during import

    I have recently downloaded the upgrade to Mac OS X 10.5.2 which included the iPhoto update to 7.1.2 but now whenever I try to do any kind of importing iPhoto freezes and shuts down. I can edit, and view all of my photos just fine but I can't add phot