I recently needed to get a client SharePoint 2010 product key (about 3 minutes ago). Finding some reusable code I was able to get it but it was popped up as an alert that couldn’t be copied from so I changed the code a little to output to the console. PowerShell: Gets SharePoint License Key for SharePoint Server 2007, 2010, or 2013. Get-SPLicenseKey.ps1. Open command prompt and run following script to retrieve your SharePoint product key from the SharePoint 2013 Server. Function Get-SP-2013-ProductKey. Install SharePoint Server 2016 using an Enterprise product key. Create a SharePoint Server 2016 farm. Launch the SharePoint 2016 Management Shell. Execute the following command in the SharePoint 2016 Management shell: Enable-ProjectServerLicense -Key Key You can use the following trial license key. The trial period is. Change product key by reinstalling Sharepoint. SharePoint Designer 2013 with SharePoint Server 2013 Trial. The trial period for this product has expired.
- Products
In this post I will describe how to install and activate a new license key.
This is important if a trial version of any of our SharePoint solutions is already installed and you want to use a full license key without repairing/reinstalling the solution.
To purchase a license key, go to the product page, click “Licensing Details”, select the license and click on “purchase on ShareIt”. After you’ve purchased a license you will receive a new key by email.
To activate the new key follow these steps:
- Rerun setup.exe (as administrator). If you can’t find the setup folder, download the new one*.
- Click “Next” on the Welcome screen.
- Click “Next” after the system check.
- On the “Repair or Remove” step choose “Activate License Key”** and click next.
- Enter the new key and click “Next”.
- After the wizard is finished you should recycle the Application pool(s) to fully apply the new key.
- If the new key is still not applied, make sure there is no validated surety file in the setup folder.
*) In the SharePoint Web Parts and Templates overview select the solution, click on “Download free trial” and on “click here to download the setup” in the dialog.
**) If this option is not available you have to download the new setup*. We published the new setup with the “Activate License Key” option on 4/2/2013.
Popular SharePoint Web Parts and Templates
Stay updated
We will provide you with information about new products and updates.
Sharepoint 2016 Preview Product Key
Need help?
If you have any questions about our products or services, let us know.
e-mail: support@sharepointsapiens.com
Follow us!
Keep yourself informed about our products, company news and helpful blog posts.
Sharepoint Server 2010 Product Key
<# |
.SYNOPSIS |
Gets the SharePoint License Key for 2007, 2010, or 2013 |
.DESCRIPTION |
Gets the SharePoint License Key for 2007, 2010, or 2013. |
.PARAMETERversion |
Version of SharePoint installed. |
.EXAMPLE |
Get-SPLicenseKey 2013 |
Get-SPLicenseKey -version 2010 |
Get-SPLicenseKey 2007 |
.NOTES |
AUTHOR: System Center Automation Team |
LASTEDIT: Dec 18, 2014 |
#> |
Param( |
[Parameter(Mandatory=$True,Position=1)] |
[string] |
$version |
) |
$map='BCDFGHJKMPQRTVWXY2346789' |
$property=@{'2007'='12.0';'2010'='14.0';'2013'='15.0'} |
# Get Property |
$value= (get-itemproperty'HKLM:SOFTWAREMicrosoftOffice$($property[$version])Registration{90$(($property[$version] -replace'.',''))000-110D-0000-1000-0000000FF1CE}').digitalproductid[0x34..0x42] |
# Begin Parsing |
$ProductKey='' |
for ($i=24; $i-ge0; $i--) { |
$r=0 |
for ($j=14; $j-ge0; $j--) { |
$r= ($r*256) -bxor$value[$j] |
$value[$j] = [math]::Floor([double]($r/24)) |
$r=$r%24 |
} |
$ProductKey=$map[$r] +$ProductKey |
if (($i%5) -eq0-and$i-ne0) { |
$ProductKey='-'+$ProductKey |
} |
} |
$ProductKey |