Initial plan and assistance for intranet upgrade work

Source: Internet
Author: User

Based on our communication yesterday, we tested it locally, and the results show that KB2880552 is installed, the version number in central administration is still 4569, not 4571, but the version number in the registry has been updated to 4571.

April CU is checked for the version number before it is installed, and looking at the XML file after extracting the installation package can be found similar to the following conditions:

<targetversion validate= "true" comparisontype= "Equal" comparisonfilter= "Majorminorupdate" >15.0.4571.1502 </TargetVersion>

Follow the script in the SharePoint server below to check the registry.

Check version:

# PowerShell script to display SharePoint products from the registry.

Param (

# decide on whether all the sub-components belonging to the product should being shown as well

[Switch] $ShowComponents

)

# Registry to get info about installed software

$RegLoc = Get-childitem Hklm:\software\microsoft\windows\currentversion\uninstall

# Get SharePoint Products and language packs

Write-host "Products and Language Packs"

Write-host "-------------------------------------------"

$Programs = $RegLoc |

Where-object {$_. Pspath-like "*\office*"} |

foreach {Get-itemproperty $_. Pspath}

$Components = $RegLoc |

Where-object {$_. Pspath-like "*1000-0000000ff1ce}"} |

foreach {Get-itemproperty $_. Pspath}

# output either just the info about products and Language Packs

# or also for sub components

if ($ShowComponents. IsPresent)

{

$Programs | foreach {

$_ | FL DisplayName, DisplayVersion;

$productCodes = $_. ProductCodes;

$Comp = @ () + ($Components |

Where-object {$_. Pschildname-in $productCodes} |

foreach {Get-itemproperty $_. Pspath});

$Comp | Sort-object DisplayName | FT DisplayName, Displayversion-autosize

}

}

Else

{

$Programs | FL DisplayName, DisplayVersion

}

The results of my output:

-------------------------------------------

Displayname:microsoft SharePoint Server 2013

displayversion:15.0.4571.1502

Displayname:language Pack for SharePoint and Project Server 2013-chinese (PRC)/medium d? (Jane ¨° body?)

displayversion:15.0.4571.1502

The following validation is performed in the UAT environment:

1. Install SP1 Chinese Language Pack, can I install it successfully? If you can, run the Configuration Wizard after installation, and then install CU.

https://www.microsoft.com/zh-CN/download/details.aspx?id=42543

2. If the installation is unsuccessful, test the following scenarios:

A. Uninstall the Chinese Language pack:

B. Installing CU

C. Run the Configuration Wizard

D. Install SP1 Chinese Language Pack

E. Running the Configuration Wizard

F. Installing the CU again

G. Running the Configuration Wizard

Initial plan and assistance for intranet upgrade work

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.