Pages

Friday, October 5, 2012

Windows 8 activation Error 0x8007007B

When i tried to activate windows 8 OS, I got "Error 0x8007007B  The File name, directory name, or volume label syntax is incorrect, contact your administrator" error message and tried below commands to change my product key and activation.

Open Command as administrar and type below command one by one

slmgr.vbs /ipk XXXXX-XXXXX-XXXXX-XXXXX-XXXXX

slmgr.vbs /ato

The first command will update the key.
The second command will activate Windows.
Replace the "XXXX" bits with your Windows 8 Key





Saturday, August 4, 2012

Sharepoint Search working only for Sharepoint Admin

Sharepoint Search is not working anyone Except Sharepoint Admin

I configured Sharepoint Search and Crawled the Sharepoint Websites in the Sharepoint 2010 Server and verified Search is working using Sharepoint Admin Account but the search was not working for all sharepoint Users.

Found the Solution:
                             Finally found cause for the Issue that needs to Sharepoint Search Service Account in windows server 2003 Active Directory "Add Users to the Pre-Windows 2000 Compatible Access Group" .

Once we added the Service Account on that group then Search was working for Everyone.

We refer below links
http://tristanwatkins.com/index.php/sharepoint-server-2010-search-scopes-and-pre-windows-2000-compatibility-access/

http://support.microsoft.com/kb/303973



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.





Thursday, July 21, 2011

MSCRM 2011 Integration with sharepoint for document management

      Below steps for integrating MSCRM 2011 with Sharepoint for Document Management

      1.       Download and install the CRM list component for SharePoint on the SharePoint site.
2.       Activate the CRM list component feature in the SharePoint site

3.       Now go to the CRM online site or CRM on promise site
4.       Go to the Settings Area and select “Document Management” and select “Document management settings”
5.       In the document management settings page, Give the SharePoint site url where you have installed CRM list component and Click Next
6.       Now the url get validated
7.       Then  select folder structure based on specific entity  and click next


8.       Now the document library creation will happen in SharePoint once you give the confirmation.



9.       Once the document library creation is done, click finish.
   
10.   Now go the CRM record which you want to create a folder and storing the document in.

11.   Click on document in the left navigation and click OK button for confirmation dialog box
12.   Now the folder created in the SharePoint where the user wants to store document.
         


Friday, July 8, 2011

Failed to create the configuration database.One or more types failed to load

I have got the following error message when running the sharepoint configuration wizard on MOSS 2007 "Failed to create the configuration database.
An exception of type Microsoft.SharePoint.Upgrade.SPUpgradeException was thrown.  Additional exception information: One or more types failed to load. Please refer to the upgrade log for more details.
Microsoft.SharePoint.Upgrade.SPUpgradeException: One or more types failed to load. Please refer to the upgrade log for more details"


Cause:
            I hae installed MS office 2010 on that machine. So that sharepoint getting the Error message.

Resolution:
                I have uninstalled the MS office 2010 and ran the configuration wizard.

I have refer the below link to fix this issue http://www.networksteve.com/enterprise/topic.php/Failed_to_create_Configuration_Database_for_MOSS_2007_on_Windows/?TopicId=3887&Posts=12