C:\Program Files\Microsoft Lync Server 2010\Deployment\ directory missing.

Hi Guys,
We were trying to “Install the Mobility Service and autodiscover Service” on lync 2010 frontend server, for which we have downloaded the “McxStandAlone.msi” and placed in
“C:\ProgramData\Microsoft\Lync Server\Deployment\cache\4.0.7577.0\setup” location.
As per the document, to execute this we have to run the bootstrapper.exe from the lync powershell at the following location
“C:\Program Files\Microsoft Lync Server 2010\Deployment\Bootstrapper.exe”
But “Deployment folder and bootstrapper exe” are not present in mentioned location.  
So is there any workaround for this ? 
Thanks and Regards, 
Ankit 

Did you happen to install Lync on another drive? Maybe D:?
Also try to run the Lync Deployment Tool and click "Install or Update Lync Server System" and rerun "Setup or Remove Lync Server Components". This should do the same thing as running the bootstrapper.
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.

Similar Messages

  • The distribution agent failed to create temporary files in 'C:\Program Files\Microsoft SQL Server\110\COM' directory. System returned errorcode 5.

    One of my replication job failed with below error, which means job failed because of permission issue on the folder. To resolve that, I have granted the permission and it started working fine. Now the question is as my job was running fine since long time
    without any issue then how suddenly the permission of the folder got omitted automatically? I am sure that no one deleted the permission from the folder and as the server is part of SQL cluster no failover occurs.
    Error:-The distribution agent failed to create temporary files in 'C:\Program Files\Microsoft SQL Server\110\COM' directory. System returned errorcode 5.
    Rahul

    Hi Rahul,
    Error code 5 indicates that the error is "access is denied."  Please make sure that the COM folder is excluded from any antivirus scan that occurs on the system.
    If the issue still persists, I recommend you use
    Process Monitor to find out a bit more about the accounts and access requests involved. Then grant write permission to the exact COM folder for the account that is running the SQL Server Agent service. For more details, please review the following similar
    thread.
    http://www.sqlservercentral.com/Forums/Topic1364832-1550-1.aspx
    Thanks,
    Lydia Zhang
    If you have any feedback on our support, please click
    here.

  • MS14-055 security update for Microsoft Lync Server 2010

    hello
    after applying this security update do I need to Apply it to the back end database? or is that just when regular patches are applied?

    Hi totalnet32,
    From http://support.microsoft.com/kb/2493736, we know that
    "After you install the update for the Core Components server role on a Lync Server 2010 Enterprise Edition front end server, the updated SQL database files are dropped to the computer that has the Core Components server role installed.This
    also applies to a Lync Server 2010 Standard Edition server. To apply the database changes, run the following cmdlets:
    Install-CsDatabase -Update -ConfiguredDatabases -SqlServerFqdn <EEBE.Fqdn> -UseDefaultSqlPaths
    2982388
    (https://support.microsoft.com/kb/2982388/            )    
    MS14-055: Description of the security update for Microsoft Lync Server 2010 (Response Group Service): September 9, 2014
    2982385
    (https://support.microsoft.com/kb/2982385/            )    
    MS14-055: Description of the security update for Microsoft Lync Server 2010 (Security update for Standard/Enterprise edition Server): September 23, 2014
    There's no Core Components server role update, as far as my experience, the DB update is not required.
    And I suggest that reboot the Lync Servers once after the updates have been installed.
    Best regards,
    Eric

  • Unable to open the physical file "D:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\abc.mdf". Operating system error 2: "2(The system cannot find the file specified.)".

    hi,
    am running the below command for moving sql serevr mdf and ldf files  from one  drive to another : c  drive to d drive:
    but am getting the below error
    SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\abc.mdf". Operating system error 2: "2(The system cannot find the file specified.)".
    use master
    DECLARE @DBName nvarchar(50)
    SET @DBName = 'CMP_143'
    DECLARE @RC int
    EXEC @RC = sp_detach_db @DBName
    DECLARE @NewPath nvarchar(1000)
    --SET @NewPath = 'E:\Data\Microsoft SQL Server\Data\';
    SET @NewPath = 'D:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\';
    DECLARE @OldPath nvarchar(1000)
    SET @OldPath = 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\';
    DECLARE @DBFileName nvarchar(100)
    SET @DBFileName = @DBName + '.mdf';
    DECLARE @LogFileName nvarchar(100)
    SET @LogFileName = @DBName + '_log.ldf';
    DECLARE @SRCData nvarchar(1000)
    SET @SRCData = @OldPath + @DBFileName;
    DECLARE @SRCLog nvarchar(1000)
    SET @SRCLog = @OldPath + @LogFileName;
    DECLARE @DESTData nvarchar(1000)
    SET @DESTData = @NewPath + @DBFileName;
    DECLARE @DESTLog nvarchar(1000)
    SET @DESTLog = @NewPath + @LogFileName;
    DECLARE @FILEPATH nvarchar(1000);
    DECLARE @LOGPATH nvarchar(1000);
    SET @FILEPATH = N'xcopy /Y "' + @SRCData + N'" "' + @NewPath + '"';
    SET @LOGPATH = N'xcopy /Y "' + @SRCLog + N'" "' + @NewPath + '"';
    exec xp_cmdshell @FILEPATH;
    exec xp_cmdshell @LOGPATH;
    EXEC @RC = sp_attach_db @DBName, @DESTData, @DESTLog
    go
    can anyone pls help how to set the db offline. currently  i  stopped the sql server services from services.msc and started the  sql server agent.
    should i stop both services for moving from one drive to another?
    note: I tried teh below solution but this didint work:
    ALTER DATABASE <DBName> SET OFFLINE WITH ROLLBACK IMMEDIATE
    Update:
    now am getting the message :
    Msg 15010, Level 16, State 1, Procedure sp_detach_db, Line 40
    The database 'CMP_143' does not exist. Supply a valid database name. To see available databases, use sys.databases.
    (3 row(s) affected)
    (3 row(s) affected)
    Msg 5120, Level 16, State 101, Line 1
    Unable to open the physical file "D:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\CMP_143.mdf". Operating system error 2: "2(The system cannot find the file specified.)".

    First you should have checked the database mdf/ldf name and location by using the command
    Use CMP_143
    Go
    Sp_helpfile
    Looks like your database CMP_143 was successfully detached but mdf/ldf location or name was different that is why it did not get copied to target location.
    Database is already detached that’s why db offline failed
    Msg 15010, Level 16, State 1, Procedure sp_detach_db, Line 40
    The database 'CMP_143' does not exist. Supply a valid database name. To see available databases, use sys.databases.
    EXEC @RC = sp_attach_db @DBName, @DESTData, @DESTLog
    Attached step is failing as there is no mdf file
    Msg 5120, Level 16, State 101, Line 1
    Unable to open the physical file "D:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\CMP_143.mdf". Operating system error 2: "2(The system cannot find the file specified.)"
    Solution:
    Search for the physical files(mdf/ldf) in the OS and copy to target location and the re-run sp_attach_db with right location and name of mdf/ldf.

  • Tempdb in a subdirectory of \Program Files\Microsoft SQL Server\

    Hi,
    SAP ERP 6.0 / Sol. Man. 4.0 Installation Guide say "after initial installation of the database software, the <b>tempdb</b> is located in a subdirectory of <b>\Program Files\Microsoft SQL Server</b>. However later, when SAPinst builds and loads the database, it is transferred to a new <b>\TEMPDB</b> directory and extended to a size of 300 MB."
    I finished the installation some days ago but I still see file tempdb.mdf & templog.ldf in
    C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data\
    May I delete these files because tempdb DB currently use the 2 files in <b>\TEMPDB directory</b>?
    Regards,
    Toan Do

    HI,
    <b>Moving the tempdb database</b>
    As the tempdb database is constantly being used by the SQL Server, it cannot be moved using the same process described above (sp_detach_db, sp_attach_db). Instead, you must use the 'alter database modify file' command.
    a) First display all tempdb database files using the following command:
    select convert(char(20),name) as name, filename from tempdb..sysfiles
    name      filename
    tempdev    d:\TEMPDB\TEMPDB.MDF
    templog    d:\TEMPDB\TEMPLOG.LDF
    (2 row(s) affected)
    b) Set a new storage location for the files by executing an ALTER DATABASE for each file:
    Example:
    alter database tempdb
          modify file (name=tempdev,filename='E:\NEW\tempdb.mdf')
    alter database tempdb
          modify file (name=templog,filename='E:\NEW\templog.ldf')
    c) Restart your SQL Server. The tempdb database is created again during each restart of the SQL Server. In this case, the files are now created in the new directory.
    <b>d) Use the NT Explorer to delete the old database files for the tempdb.</b>
    e) We recommend that you make a full backup of the master database after the change.
    <b>Refrence SAP Note:</b>
    Note 363018 - File management with SQL Server.
    Award points if helpful.
    Thanks,
    Tanuj

  • DCOM was unable to communicate with the computer xyz using any of the configured protocols; requested by PID 7b28 (C:\Program Files\Microsoft\Exchange Server\V15\Bin\MSExchangeHMWorker.exe).

    Hi,
    Previously I've two exchange server 2013 named : ABC and XYZ. After is decomm XYZ, i got this error :
    DCOM was unable to communicate with the computer XYZ using any of the configured protocols; requested by PID     7b28 (C:\Program Files\Microsoft\Exchange Server\V15\Bin\MSExchangeHMWorker.exe).
    EventID:10028
    Source:DistributedCOM
    May I know the reason why the server keep looking for the non-exist server and how to terminate this process?
    Thanks in advance.

    Hello,
    It seems that error message occurs on the same machine with the previous Exchange Server you have decommissioned. Have you reinstall the Windows System after uninstall the Exchange
    Server?
    You need to check the registry keys but this is not efficient solution. The most efficient way is to reinstall the Windows if it is convenient.
    Thanks,
    Simon Wu
    TechNet Community Support

  • Problems launching Microsoft Lync Server 2010 Control Panel

    Just finished setting a new Lync 2010 environment.  I was able to get passed some errors with the Archiving and Monitoring stores.  I ended up removing those server roles to get the setup completed.  Now, when I try launching the Microsoft
    Lync Server 2010 Control Panel I get the following error:
    Could not load type 'System.ServiceModel.Activation.HttpModule' from assembly
    'System.ServiceModel, Version=3.0.0.0, Culture=neutral,
    PublicKeyToken=b77a5c561934e089'
    Description:
    An unhandled exception occurred during the execution of the current web
    request. Please review the stack trace for more information about the error and
    where it originated in the code.
    Exception Details:
    System.TypeLoadException: Could not load type
    'System.ServiceModel.Activation.HttpModule' from assembly 'System.ServiceModel,
    Version=3.0.0.0, Culture=neutral,
    PublicKeyToken=b77a5c561934e089'.
    Source Error:
    An unhandled exception was generated during the execution of the current web request.  Information regarding the origin and location of the exception can be identified using the exception stack trace below.
    If the Stack Trace is needed I will post, any help would be greatly appreciated in solving this error. 
    Thanks in advance,
    Hector

    Were you playing with .NET versions at all? 
    https://support.microsoft.com/kb/2015129?wa=wsignin1.0
    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.

  • Tandberg Codian MCU 4505 integration with Microsoft Lync server 2010

    Hi,
    We are trying to integrate Tandberg Codian MCU 4505 with Microsoft Lync server 2010.
    We do not have any VCS in the setup.
    If anybody has tried it before, please suggest configuration to be done on Tandberg Codian MCU 4505 and Lync server.
    Regards,
    RN

    Hi,
    so, i have the same environment. Lync 2013 and a cisco 1000V router on esxi with VRFs.
    here is m config:
    vrf definition Mgmt-intf
    address-family ipv4
    exit-address-family
    address-family ipv6
    exit-address-family
    voice vrf Mgmt-intf
    voice service voip
    no ip address trusted authenticate
    address-hiding
    media disable-detailed-stats
    allow-connections sip to sip
    no supplementary-service sip moved-temporarily
    no supplementary-service sip refer
    sip
      bind control source-interface GigabitEthernet0
      bind media source-interface GigabitEthernet0
      listen-port non-secure  5066
    voice class codec 1
    codec preference 1 g711ulaw
    codec preference 2 g711alaw
    codec preference 3 g729r8
    voice class codec 2
    codec preference 1 ilbc
    codec preference 2 g722-64
    codec preference 3 g711alaw
    codec preference 4 g711ulaw
    interface GigabitEthernet0
    vrf forwarding Mgmt-intf
    ip address 172.16.1.164 255.255.255.0
    negotiation auto
    dial-peer voice 15 voip
    tone ringback alert-no-PI
    numbering-type unknown
    preference 1
    destination-pattern 4.
    rtp payload-type comfort-noise 13
    session protocol sipv2
    session target ipv4:172.16.2.207:5068
    session transport tcp
    voice-class codec 2
    dtmf-relay rtp-nte
    dial-peer voice 17 voip
    numbering-type unknown
    preference 1
    destination-pattern 7.
    rtp payload-type comfort-noise 13
    session protocol sipv2
    session target ipv4:172.16.1.32:5060
    session transport udp
    voice-class codec 2
    dtmf-relay rtp-nte
    gateway
    timer receive-rtp 1200
    sip-ua
    keepalive target ipv4:172.16.2.207:5068 tcp
    172.16.1.32 - Asterisk with a extensions on it.
    172.16.2.207 - Lync 2013 mediation server with other extension on it
    i can call from Asterisk extension via router and to Lync extension.
    i cannot call from Lync to Asterisk.
    TCP session with the router from Lync on port 5066 does not come up. three way handshake seems to come up.
    strange. lync person seems to configured everything correctly
    any thoughts?

  • Navigation to webpage was canceled when opening Microsoft Lync Server 2010 Control Panel

    Ok, yes I know there are many threads with similar titles, but my problem is different in that it doesn't happen every time.
    The first time I access the Control Panel I get the error:
    "Navigation to the webpage was canceled
    What you can try:
    Refresh the Page"
    Clicking Refresh the Page works, kind of.  It brings up the admin console, but I get the spinning lights, which eventually resolves to an error at the top of the page that reads: "An operation failed.  Network communication failed.  Verify
    your connection and try again." 
    Then if I click to other parts, things seem to be fine for the most part, I sometimes see the Network error, and often it is slow.
    Port 443 is running through an HLB and this is setup exactly like my other Lync cluster, which doesn't have this issue.  Internal web services URL is lynccontent and points to HLB VIP.  Admin redirect is lyncadmin and points to HLB VIP.
    Going to the /cscp page of each FE or of the pool from IE works every time, but lyncadmin seems to have the same issue (at least on FE1).
    Any thoughts?

    Hi,
    Could you perform the followings:
    Make sure there're no duplicate records in the DNS Servers
    Flush your DNS Cache at the Server & Client
    Refresh any DNS Cache at the HLB (if any)
    When the error appears, right click on the console and provide a screenshot on this
    If you suspect that FE1 is the culprit, had you tried turning it off and monitor the situation?
    Thanks!
    James Ooi MCITP Lync Server 2010 | Blog: http://jamesosw.wordpress.com | Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial
    to other community members reading the thread

  • Tring to install Security Update for Lync Server 2010 (KB2982388) ...patch failed to install

    Hi
    Idenitfied the lync security update issue below on server....
    Worker process exited prematurely.  The process will be automatically restarted.
    Process: 'C:\Program Files\Microsoft Lync Server 2010\Server\Core\RtcHost.exe'  Exit Code: E0434F4D!_HRX! (No Message Text Found!_HRM!).
    The KB2982385 has tried to installed and failed 7 times....and as such my lync edge server is down.
    Found solution:
    http://www.microsoft.com/en-us/download/details.aspx?id=44080&fa43d42b-25b5-4a42-fe9b-1634f450f5ee=True
    Downloaded patch and then ran lyncserverupdateinstaller...however it doesnt recognise that there is a patch to be deployed or a component to update.
    Further running the msp by itself results in:
    The upgrade patch cannot be installed by the windows insteller service because thje program to be upgraded may be missing or the upgrade patch may be a different version...
    Please advise how i can get this issue resolved.

    Hi,
    Did you try to download and install the update manually?
    Here is a similar case below, it seems something wrong when updating through Windows Update automatically.
    http://social.technet.microsoft.com/Forums/en-US/dea0e9e2-8375-4599-b4cc-7a0cd45cd9de/kb-2982385-has-broken-my-edge-servers?forum=ocsedge
    You can refer to the step of “Step 1: Install the cumulative updates”, choose “Method 3 Manual install” in the link below:
    http://support.microsoft.com/kb/2493736
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • Microsoft Lync Server 2013, Backup Service user store backup module detected items having pool ownership conflict during import.

    Dear Team,
    I have two Enterprise lync 2013 pools, abcPool and abcpool1. abcPool1 has got two servers, Server1 and server2. and abcpool has one FE server named "Server 3". and they have pool pairing.
    Replication was fine between them when i had only one FE server in each pool, one day FE service broke on one of the FE server on abcpool1 and failed to start so i had to do failover to another pool, at that time i introduced one more FE in abcPool1, that
    why now 2 FEs in abcPool2. Server1 FE service was resolved by reinstalling the binaries. However after that im unable to get the backupservice state to normal, i tried the below articles with no luck,
    http://social.technet.microsoft.com/Forums/lync/en-US/0403621e-26b6-4cd0-bbca-8534a20de665/backup-service-pool-ownership-conflict-during-import?forum=lyncdeploy 
    http://msucmenow.blogspot.in/2013/05/troubleshooting-lync-2013-pool-pairing.html
    "Event on Server 1"
    Log Name:      Lync Server
    Source:        LS Backup Service
    Date:          1/21/2014 8:02:33 AM
    Event ID:      4073
    Task Category: (4000)
    Level:         Warning
    Keywords:      Classic
    User:          N/A
    Computer:      ABC.net
    Description:
    Microsoft Lync Server 2013, Backup Service user store backup module detected items having pool ownership conflict during import.
    Items having pool ownership conflict: 
    ItemId: 1b3be172-b121-43cf-bd4e-b3d368eae6a9, DocId: 7972, DocName: urn:hcd:[email protected]
    ItemId: 1b3be172-b121-43cf-bd4e-b3d368eae6a9, DocId: 7973, DocName: urn:lcd:[email protected]
    ItemId: 1b3be172-b121-43cf-bd4e-b3d368eae6a9, DocId: 7974, DocName: urn:upc:[email protected]
    PS C:\Users\lyncadmin> Get-CsBackupServiceStatus -PoolFqdn pool1.net | fl
    ActiveMachineFqdn   : abc1.net
    OverallExportStatus : SteadyState
    OverallImportStatus : ErrorState
    BackupModules       : {UserServices.PresenceFocus:[SteadyState,ErrorState],
                          ConfServices.DataConf:[FinalState,NormalState],
                          CentralMgmt.CMSMaster:[FinalState,NotInitialized]}
    Following error in "Lync Server" logs on server3 on abcPool.
    Log Name:      Lync Server
    Source:        LS Backup Service
    Date:          1/21/2014 9:37:47 AM
    Event ID:      4069
    Task Category: (4000)
    Level:         Warning
    Keywords:      Classic
    User:          N/A
    Computer:     SQL1.net
    Description:
    Microsoft Lync Server 2013, Backup Service user store backup module encountered an exception that was handled gracefully when importing document batch.
    Batch file: UserServices\PresenceFocus\1-UserServices-8\Data\488bc218-9954-4caf-a5da-89efdb7b85a7_0_1562.xml.
     Exception: System.Data.SqlClient.SqlException (0x80131904): Snapshot isolation transaction aborted due to update conflict. You cannot use snapshot isolation to access table 'dbo.Batch' directly or indirectly in database 'rtcxds' to update, delete, or
    insert the row that has been modified or deleted by another transaction. Retry the transaction or change the isolation level for the update/delete statement.
    Log Name:      Lync Server
    Source:        LS Backup Service
    Date:          1/21/2014 9:52:45 AM
    Event ID:      4064
    Task Category: (4000)
    Level:         Warning
    Keywords:      Classic
    User:          N/A
    Computer:     SQL1.net
    Description:
    Microsoft Lync Server 2013, Backup Service user store backup module encountered an exception that was handled gracefully during export.
    Additional Message: 
     Exception: System.IO.IOException: The process cannot access the file '\\SQl1.net\LyncShare\1-BackupService-10\BackupStore\UserServices\PresenceFocus\Cookie\Cookie.zip' because it is being used by another process.
       at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
       at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath,
    Boolean checkHost)
       at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy)
    Praveen | MCSE Messaging 2003

    When you add a new FE in pool acdpool1, please check you have run the following:
    <system drive>\Program Files\Microsoft Lync Server 2013\Deployment\Bootstrapper.exe
    For the details, check
    http://technet.microsoft.com/en-us/library/jj204773.aspx
    Lisa Zheng
    TechNet Community Support

  • Please help me resolve the Lync server 2013 deployment error: "An error occurred while applying SQL script for the feature BackendStore."

    I am getting an error in "Step 2 - Setup or Remove Lync Server Components" of "Install or Update Lync Server System" step.
    "An error occured while applying SQL script for the feature BackendStore. For details, see the log file...."
    Additionally, all previous steps such as: Prepare Active Directory, Prepare first Standard Edition server, Install Administrative Tools, Create and publish topology are done without any errors. The user that I used to setup the Lync server is member of:
    Administrators
    CSAdministrator
    Domain Admins
    Domain Users
    Enterprise Admins
    Group Policy Creator Owners
    RTCComponentUniversalServices
    RTCHSUniversalServices
    RTCUniversalConfigReplicator
    RTCUniversalServerAdmins
    Schema Admins
    I have tried to re-install all the things and started to setup a new one many times but the same error still occurred. Please see the log below and give me any ideas/solutions to tackle this problem.
    ****Creating DbSetupInstance for 'Microsoft.Rtc.Common.Data.BlobStore'****
    Initializing DbSetupBase
    Parsing parameters...
    Found Parameter: SqlServer Value lync.lctbu.com\rtc.
    Found Parameter: SqlFilePath Value C:\Program Files\Common Files\Microsoft Lync Server 2013\DbSetup.
    Found Parameter: Publisheracct Value LCTBU\RTCHSUniversalServices;RTC Server Local Group;RTC Local Administrators;LCTBU\RTCUniversalServerAdmins.
    Found Parameter: Replicatoracct Value LCTBU\RTCHSUniversalServices;RTC Server Local Group.
    Found Parameter: Consumeracct Value LCTBU\RTCHSUniversalServices;RTC Server Local Group;RTC Local Read-only Administrators;LCTBU\RTCUniversalReadOnlyAdmins.
    Found Parameter: DbPath Value D:\CsData\BackendStore\rtc\DbPath.
    Found Parameter: LogPath Value D:\CsData\BackendStore\rtc\LogPath.
    Found Parameter: Role Value master.
    Trying to connect to Sql Server lync.lctbu.com\rtc. using windows authentication...
    Sql version: Major: 11, Minor: 0, Build 2100.
    Sql version is acceptable.
    Validating parameters...
    DbName rtcxds validated.
    SqlFilePath C:\Program Files\Common Files\Microsoft Lync Server 2013\DbSetup validated.
    DbFileBase rtcxds validated.
    DbPath D:\CsData\BackendStore\rtc\DbPath validated.
    Effective database Path: \\lync.lctbu.com\D$\CsData\BackendStore\rtc\DbPath.
    LogPath D:\CsData\BackendStore\rtc\LogPath validated.
    Effective Log Path: \\lync.lctbu.com\D$\CsData\BackendStore\rtc\LogPath.
    Checking state for database rtcxds.
    Checking state for database rtcxds.
    State of database rtcxds is detached.
    Attaching database rtcxds from Data Path \\lync.lctbu.com\D$\CsData\BackendStore\rtc\DbPath, Log Path \\lync.lctbu.com\D$\CsData\BackendStore\rtc\LogPath.
    The operation failed because of missing file '\\lync.lctbu.com\D$\CsData\BackendStore\rtc\DbPath\rtcxds.mdf'
    Attaching database failed because one of the files not found. The database will be created.
    State of database rtcxds is DbState_DoesNotExist.
    Creating database rtcxds from scratch. Data File Path = D:\CsData\BackendStore\rtc\DbPath, Log File Path= D:\CsData\BackendStore\rtc\LogPath.
    Clean installing database rtcxds.
    Timeout expired.  The timeout period elapsed prior to completion of the operation or the server is not responding.
    ****Creating DbSetupInstance for 'Microsoft.Rtc.Common.Data.RtcSharedDatabase'****
    Initializing DbSetupBase
    Parsing parameters...
    Found Parameter: SqlServer Value lync.lctbu.com\rtc.
    Found Parameter: SqlFilePath Value C:\Program Files\Common Files\Microsoft Lync Server 2013\DbSetup.
    Found Parameter: Serveracct Value LCTBU\RTCHSUniversalServices;RTC Server Local Group.
    Found Parameter: DbPath Value D:\CsData\BackendStore\rtc\DbPath.
    Found Parameter: LogPath Value D:\CsData\BackendStore\rtc\LogPath.
    Trying to connect to Sql Server lync.lctbu.com\rtc. using windows authentication...
    Sql version: Major: 11, Minor: 0, Build 2100.
    Sql version is acceptable.
    Validating parameters...
    DbName rtcshared validated.
    SqlFilePath C:\Program Files\Common Files\Microsoft Lync Server 2013\DbSetup validated.
    DbFileBase rtcshared validated.
    DbPath D:\CsData\BackendStore\rtc\DbPath validated.
    Effective database Path: \\lync.lctbu.com\D$\CsData\BackendStore\rtc\DbPath.
    LogPath D:\CsData\BackendStore\rtc\LogPath validated.
    Effective Log Path: \\lync.lctbu.com\D$\CsData\BackendStore\rtc\LogPath.
    Checking state for database rtcshared.
    Reading database version for database rtcshared.
    Database version for database rtcshared - Schema Version5, Sproc Version 0, Update Version 1.
    Thanks and Regards,
    Thanh Le

    Thanks Lạc
    Phạm 2
    I Had similar issue i end up uninstalling and reinstallting but same issue, then i change the drive but same issue. It was I/O issue. After adjusting my I/O it fix our issue and installation went on without any issue. 
    If any one using KVM here is detail article 
    We just  give this option cache=‘writeback
    using this article http://www.ducea.com/2011/07/06/howto-improve-io-performance-for-kvm-guests/ and http://itscblog.tamu.edu/improve-disk-io-performance-in-kvm/ this fix my issue thanks 

  • Migrating to Office 365, keeping Lync Server 2010 on Premise

    Hi,
    I have a Lync Server 2010 on Premises implemented, it is use a UM Sever to connect with  Exchange Server 2010.
     I migrate to Office 365 Exchange Online and keep all the Lync Server On Premise current functionalities, including "Conversations history", total connection between Lync Server and mailboxes (on O365) for conference calls and Web conferences?
    Thank you,
    Nerio

    Hi,
    If you want to integration Lync 2010 integration with Exchange online, you must configure Edge server in your on-premises Lync Server 2010 deployment by completing the following tasks:
    Configure a shared SIP address space
    Configure a hosting provider on the Edge Server
    Create a DNS Record for Integration with Hosted Exchange
    Verify replication of the updated Central Management store
    More details:
    http://technet.microsoft.com/en-us/library/hh533880.aspx
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • Lync Server 2010 Control Panel - "navigation to the webpage was canceled"

    Hi All,
    I just installed Lync Server 2010. The SQL 2008 is installed on a separate box and both servers are on Windows 2008 R2.
    However, when I try to start the "Lync Server 2010 Control Panel"  i get a blank page with the following message "Navigation to the webpage was canceled"
    The Installation had no errors and went well. But I did have one problem in the Topology Builder where is asked to create a File Share and asked for FQDN and File Share. I entered "Server1.domain.com" and File Share "Poolshare" but it did
    not like it and error with a red cross saying.. 
    "FQDN Server1.domain.com is already used in this topology"
    So in the end I just change it to "Server1" then published and ran the installation sucessfully and all services are started OK
    Any idea? could it be that the file share is not using FQDN?
    Thanks
    ECL

    I have reveiwed this topic but have not been able to fing my answer. I am getting the same result when attempting to connect to the Lync Control Panel and the webpage saying "navigation was canceled..". Here are the details, any assistance is greatly
    appreciated:
    I have an existing OCS 2007 R2 server setup in the domain. My domain is company.CORP. It is a Standard Edition server for IM and Presence only. There is an Edge server as well and I have PIC enabled. My sipinternaltls SRV record to the current SE Front End.
    All works great. There is a SIP.company.com record in the domain too. I am standing up LYNC 2010 environment on HyperV and ran topology builder twice because I had to fix a name. (I see in Mac's comment that I need to run step2 again. Why is that?)
    My Share is on the HyperV server that is hosting the Front End server but they are completely different servernames. My topology published successfully and create some data in the File Share and the Backend DB was created and populated with tables. The certificates
    were successfully applied and all services started right up. The latest version of Silverlight was installed and the server was rebooted. Still the darn White Page with 'Navigation to the webpage was canceled'.
    I am able to go into IIS and launch the Control Panel successfully by browsing on the "cscp" directory for the Lync Server Internal Web Site. I can also connect to the Control Panel by using the
    httpS://admin.company.com/cscp but I have to put  'cscp ' in the path. I cannot browse AD using the Control Panel to find my TestLyncUser1 account but I can find the account, and successfully enable
    the account, using the Lync Management Shell. The account was enables and was able to successfully login to the Lync FE server (manually, since the SRV record point to OCS).
    This is where I am stuck. Why won't it launch from the Programs File Tool and why do I have to designate the CSCP in the URL? I am Not sure why I couldn't browse AD successfully in the Control Panel yet I could with Powershell. I will begin troubleshooting
    that issue next. Could it be because my sip.company.com record points to a different OCS Pool? Or my SRV internaltls record points to the OCS Pool? Microsoft supports standing up the two environments side-by-side and migrating but maybe I am missing something.
    Any ideas anyone?
    I want to add that I will be having a FE Pool and have named and published my second FE but I have not installed it. The Pool VIP is created in DNS and only pointing to FE1 right now.

  • Error Upgrading from the Evaluation Version of Microsoft Lync Server 2013

    Hi,
    I try to upgrade from Evaluation to full Version using:
    http://technet.microsoft.com/en-us/library/gg521005.aspx
    but after i run: msiexec.exe /fvomus server.msi EVALTOFULL=1 /qb
    i get a popup:
    "Another version of this product is already installed. installation of this version cannot continue. To configure or remove the existing version of this product, use Add/Remove Programs on the Control Panel."
    Get-CsServerVersion :-> Microsoft Lync Server 2013 (5.0.8308.0): Evaluation license key installed.
    Any ideea?

    Hi Iulius
    As your upgrading the Licence on the Lync 2013 FE it shouldn't care about the Lync 2010 Environment. As your moving from Eval to Full Licence on 2013. I have come across the below url that might help.
    http://pei.com/2013/03/how-to-change-lync-license-from-evaluation-to-licensed/
    http://jackstromberg.com/2013/02/how-to-activate-lync-evaluation-to-licensed-version/
    I would personally go with from Lync Management Shell with Elevated Permission
    cd /
    cd /d: (Other what other drive letter)
    cd /Setup\Amd64\Setup
    msiexec.exe /fvomus Server.msi EVALTOFULL=1 /qb
    But that's just me Id rather run the command from the directory than pointing to it.
    Regards
    Andrew Price

Maybe you are looking for