Friday, October 18, 2013

The Expected version of the product was not found on the system while installing CU Updates in SharePoint

 The Expected version of the product was not found on the system while installing CU Updates in SharePoint.

                                     

 Cause: The issue\Error is due to the Missing of previous versions of Updates or patches.

 Resolution: Follow the below steps to Remediate\Bypass the Error.


  • Go to CMD ->Go to Specific path where CU locates. Run the below command

                          Package name PACKAGE.BYPASS.DETECTION.CHECK=1

          Package name should be like for EX: ubersrv2010-kb2825949-fullfile-x64-glb.exe


Please Comment if you need Any Help. Your Feed back is always Welcome. I Am Happy to Help !!!!!

 

How to Rename WebApplication Name In SharePoint 2010

How to Rename Web Application Name In SharePoint 2010

There are so many reasons one would like to rename a SharePoint 2010 web application, whether for consistency sake, even to correct misspellings, now with the power of Power Shell it’s just simple. Please be consider the
following script would not rename the IIS site and the Application pool,

 So, let’s get down to the renaming the web application by creating a new Power Shell (.ps1) file using Notepad and by pasting the following code into it:

$rwa=Get-SPWebApplication | where {$_.Name -match "Your Old Web Application Name"}
$rwa.Name
$rwa.Name="Your New Web Application Name"
$rwa.Update()
Get-SPWebApplication | where {$_.Name -match "Your New Web Application Name"}

Give it a name, like RenameWebApp.ps1 and save in your SharePoint 2010 server.
Open SharePoint 2010 Management Shell, make sure you are under the path, where your .PS1 file located.

 Example: C:\> ./RenameWebApp.ps1

 Hit Enter and your web application has a new name.

Go to SharePoint 2010 Central Administration >> Application Management and click on “Manage web application” to see that you web application has a new name



Please Comment if you need Any Help. Your Feed back is always Welcome. I Am Happy to Help !!!!!

ShareThis

X