Pages

Thursday, August 11, 2011

Lync Online Features

Lync online is next-generation cloud Communications services that connect people in new ways, from virtually anywhere.Lync is integrated of Office communicator and Live meeting.

Features of Lync online​ 

1. connect with others through lync contact photos, activity feed and interactive contact card in office
2. move easily from instant messaging into ad-hoc online meetings, including audio, video and screen sharing
3. conduct online presentation including audio, video, screen sharing and a virtual whiteboard
4. Invite external contacts to easily join online meetings via a pc or web based client
5. connect with customers and partners through IM, audio and video federation
6. View presence status and click to communicate from within Microsoft Outlook, Office SharePoint, and other Office applications.
7. Connect with Windows Live Messenger contacts using IM, audio and video calls directly from Lync

Thursday, August 4, 2011

Outlook Social Connector is not updating Sharepoint My Site Feeds

I have configured User profile service and My Site inSharepoint 2010and I have installed Outlook Social Connector to all Client Machine. When the Sharepoint User Made the Changes in Activity Feeds in Sharepoint My Sites,  it was not updated in the users outlook Social connector. So i have done the below steps in sharepoint server 2010.

1. Open Central Admin Site and Click Monitoring
2. Select "Review Job Definitions" and Enable the " User Profile Application - Activitiy Feed Job"  Timer service.

Monday, August 1, 2011

Sharepoint Config/administration database status in Suspend Mode

I have received the " Cannot connect to the Sharepoint configuration  database " Error Message when opening the Central admin site and Finally found that " Sharepoint_config" Database was in Suspend Mode.



I ran the following SQL Query Script on the Sql Management, before running the query, please take the backup of the .mdf and ldf file.

– Use the Master database
Use Master

– Verify that database has issues
EXEC sp_resetstatus ‘SharePoint_Config’

– Put the database in emergency mode
ALTER DATABASE SharePoint_Config SET EMERGENCY
DBCC checkdb(‘SharePoint_Config’)

– Set the database in single user mode
ALTER DATABASE SharePoint_Config SET SINGLE_USER WITH ROLLBACK IMMEDIATE

– Repair the database with data loss
DBCC CheckDB (‘SharePoint_Config’, REPAIR_ALLOW_DATA_LOSS)

– Set the database in multi-user mode
ALTER DATABASE SharePoint_Config SET MULTI_USER

– Verify that database is reset
EXEC sp_resetstatus ‘SharePoint_Config’

Now the Sharepointconfiguration database mode should be running smooth and you could open the central admin site as well.

I have Reffered the below urls for the issue.