- Stop the Timer Service on all machines in the farm except for 1, in my case I left it running on the APP server.
- Add the new product key and hit OK to start the SKU upgrade process in the Central Admin GUI.
- Watch the event log of the APP server and wait for an entry with a source of “SharePoint 2010 Products Configuration Wizard” which will inform you that it was Successful.
- Start the Timer Service on the next machine in the farm.
- Watch the event log and wait again for the successful entry…
- Continue with steps 4-5 on all additional servers in the farm.
- Once you’ve received all successful entries in your event logs, a minute or so later you should get a successful notification in the GUI for the SKU upgrade.
Friday, 16 December 2016
Upgrading a multi-server SharePoint farm from Standard to Enterprise
Tuesday, 22 November 2016
Wednesday, 16 November 2016
Friday, 11 November 2016
How to add Desktop Experience feature on Windows Server 2012 “Server
https://blogs.technet.microsoft.com/meamcs/2012/05/01/how-to-add-desktop-experience-feature-on-windows-server-2012-server-8-beta/
Thanks Tamer
Tuesday, 25 October 2016
Using Script
http://blog.qumsieh.ca/2010/02/16/hide-columns-in-sharepoint-new-edit-and-disp-forms/
Using Designer
http://promx.net/en/2016/09/how-to-hide-columns-from-sharepoint-forms/ -
Using Power Shell
First load SharePoint Core Assembly
[System.Reflection.Assembly]::LoadWithPartialName(“Microsoft.SharePoint”)
$url = "http://ulabtechnologies.sharepoint.com";
$list = "Employee";
$fieldname = "NewColumn";
#Setting up context
$contextSite = New-Object Microsoft.SharePoint.SPSite($url);
$contextWeb = $contextSite.OpenWeb();
$list = $contextWeb.Lists.TryGetList($list);
$field = $list.Fields[$fieldname];
# Controls Field in Edit Form
$field.ShowInEditForm = 1;
# Controls Field in New Form
$field.ShowInNewForm = 0;
# Controls Field in New Form
$field.ShowInDisplayForm = 1;
# Hides fields from list settings
$field.ShowInListSettings = 1;
# Hides fields from version history
$field.ShowInVersionHistory = 1;
# Hides fields form selection in views
$field.ShowInViewForms = 1;
# Don't forget to update this field
$field.Update();
# And finally dispose everything.
$contextWeb.Dispose();
$contextSite.Dispose();
Wednesday, 12 October 2016
Set Privileges for Using PowerShell to Manage SharePoint
To execute a command in the SharePoint 2013 Management Shell, open the Management Shell on a SharePoint 2010 server. To execute commands, the user must have the necessary privileges to the SharePoint object model and to the SharePoint databases. When you are working with SharePoint objects, connections to the database are generally created with the permissions of the current user.
You can use SPShellAdmin for configuring a user’s privileges and security. Here’s how.
To list Shell administrators:
Get-SPShellAdmin
To add a user as a Shell administrator:
Add-SPShellAdmin -UserName -Database
For example, to allow user Jeff Hay to execute commands against the PartnerNet site, use the following command:
Add-SPShellAdmin -UserName Contoso\Jeff Hay
-Database (Get-SPContentDatabase -Identity PartnerNet_ContentDatabase)
Note that the Get-SPContentDatabase cmdlet and the PartnerNet content database name are used to retrieve the SPContentDatabase object.
To remove a user from Shell Admin:
Remove-SPShellAdmin -UserName -Database
You can use SPShellAdmin for configuring a user’s privileges and security. Here’s how.
To list Shell administrators:
Get-SPShellAdmin
To add a user as a Shell administrator:
Add-SPShellAdmin -UserName
For example, to allow user Jeff Hay to execute commands against the PartnerNet site, use the following command:
Add-SPShellAdmin -UserName Contoso\Jeff Hay
-Database (Get-SPContentDatabase -Identity PartnerNet_ContentDatabase)
Note that the Get-SPContentDatabase cmdlet and the PartnerNet content database name are used to retrieve the SPContentDatabase object.
To remove a user from Shell Admin:
Remove-SPShellAdmin -UserName
Thursday, 15 September 2016
SharePoint 2010 and 2013 Subsite backup and restore using Powershell
export-spweb -identity "http://ulabtechnologies/legal" -path "D:\subslitebacku\legasubsite.cmp"
Restore
import-spweb -identity "http://ulabtechnologies/lcs" -path "D:\subslitebacku\legasubsite.cmp"
Note:
Master page template should be same as backup site in restore site
Subscribe to:
Comments (Atom)