Friday 10 January 2014

Removing the Name ActiveX Control Warning in SharePoint 2010


Hi , 

When you open your Share Point application in Internet explorer the popup message appears on browser.

here is a screenshot :


To turn off this message from central admin.

here is a screenshot  :

Open Central Administration and click Manage Web Application. From there select your web application from the list and then from the ribbon click General Setting >General Settings :




After that simply change the "Enable Person Name smart tag and Online Status for members" to No, and click OK:


That's all.

Thursday 10 October 2013

Deleting Custom Timer Job Using Power shell


About Timer Job:

A timer job runs in a specific Windows service for SharePoint 2010. Timer jobs perform tasks for the Timer service, such as clearing the timer job history and recycling the Timer service. Timer jobs also perform tasks for web applications, such as sending email alerts.

Power Shell Command:
Find timer job ID by Timer_Job_Name using command. 

Get-SPTimerJob | where { $_.name -like "*Timer_Job_Name*" } |ft id,name


Then you will get ID of Timer Job.


Then Set job to a variable
$job = Get-SPTimerJob -id <GUID>

And delete it.
$job.Delete()



and It's Done...!!!!



Wednesday 9 October 2013

How to hide an option into the My Site Edit Profile


For hiding My site Edit Profile Action please follow these steps.

Step 1 :
Go to Central Administration of your service Farm, under the Application Management > Service Applications, select the "Manage Service Applications" link.

Step 2:

Then, select your User Profile Service Application, and select People>Manage Policies link.

Edit the needed policy, and uncheck the "Show on the Edit Details page" box.


Thats It.