As most we have a auditing requirements for when we need to do forensic excercises. Unfortunatly we turned auditing on with no real thought. We are now in the situation that we have hundreds of millions of rows of AuditData. We have attempted to delete this data using the standard powershell methods (SPSite.Audit.DeleteEntries(SomeDate), however we have found this method causes outages as is causing locks at the database. We have attempted deleting a tiny amount of data (last hour) this does not cause database locks but it would take a year to delete all data.
We have been in contact with Microsoft Premier support and they have given us approval to Truncate the AuditData table, which will save our problems. You must contact premier support to get specific approval your self or your SharePoint environment will be un-supported. Below is a script that will backup the database and Truncate the AuditData table for you.
It goes with out saying but make sure you test this in a non-production enviornment!
DECLARE @DatabaseName VARCHAR(254)
DECLARE @Path VARCHAR(1000)
DECLARE @Truncate VARCHAR(1000)
SET @DatabaseName = 'SP_PP'
SET @Path = 'C:\Program Files\Microsoft SQL Server\MSSQL10_50.SP2010\MSSQL\Backup\'
SET @Truncate = 'TRUNCATE TABLE AuditData'
--Configure Path
IF (SUBSTRING(@Path, LEN(@Path), 1) != '\')
BEGIN
SET @Path += '\'
END
SET @Path += @DatabaseName + '-Truncate.bak'
--Backup Database
BEGIN TRY
BACKUP DATABASE @DatabaseName TO DISK = @Path WITH NOFORMAT,
NOINIT,
NAME = N'TODEL-Full Database Backup', SKIP, NOREWIND, NOUNLOAD, STATS = 10
PRINT 'Backup has Completed'
END TRY
BEGIN CATCH
PRINT 'Backup Failed Stopping.................'
RETURN
END CATCH
BEGIN TRY
EXEC ('USE [' + @DatabaseName + '] ; EXEC sp_executesql N''' + @Truncate +'''')
PRINT 'Truncate Success'
END TRY
BEGIN CATCH
PRINT 'Truncate Failed........................'
END CATCH
Wednesday, 31 October 2012
Wednesday, 5 September 2012
SharePoint Email Tester (SPUtility.sendmail)
Formatting email using SPUtility.SendMail is a bit of a nightmare, most development VM's do not have exchange installed on them so I have written a little console application that you can run in an integration environment or production environment (not recommended) and test your email formatting. You could also use this for testing email to exchange integration is working it is a lot quicker than telneting to port 25 and manually constructing an email to exchange. How it works:
Let me know if you have any issues happy to help out.
- Unzip the files
- Open up the EmailContent.xml
- Update the to / from and body etc.
- Run the exe following the instructions on the screen (1 to send email and 2 to create a new xml file in case you delete it)
To put line feeds in the body of your mail message do the following in the xml file <![CDATA[<br/>]]>
Let me know if you have any issues happy to help out.
Wednesday, 13 June 2012
User Profile Sync Issues
I just came across an issue in one of our development environments with User Profile Sync. UPS can be the bane of a SharePoint guy's existence if you run into issue with it. I have spent quite a bit of time with Microsoft Premier Support working on UPS issues they are very well versed in resolving the issues with UPS. I highly recommend reading this article on the UPS infrastructure it has completely changed since the MOSS 2007 days http://technet.microsoft.com/en-us/library/gg188041.aspx. Here are my top tips for resolving UPS issues:
Patch your SharePoint Farm
UPS RTM had some "interesting features" which have most likely caused the issue your are currently having the June 2011 Cumulative Update resolved a substantial amount of the issues. Patch to a minimum of June 2011!
Re-Provision the FIM configuration
This will fix 95% of User Profile Sync issues something will get corrupt with the connection between SharePoint and FIM. Stopping the User Profile Synchronization Service de-provisions the FIM configuration and starting it re-provisions it. It does a substantial amount of configuration that is why it takes so long.
Generally the following procedure will resolve the issue:
If this does not resolve your issue you may need an extended outage:
Some of the error messages I have seen that this will resolve are:
System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.ResourceManagement, Version=4.0.2450.34, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.
File Not Found
Patch your SharePoint Farm
UPS RTM had some "interesting features" which have most likely caused the issue your are currently having the June 2011 Cumulative Update resolved a substantial amount of the issues. Patch to a minimum of June 2011!
Re-Provision the FIM configuration
This will fix 95% of User Profile Sync issues something will get corrupt with the connection between SharePoint and FIM. Stopping the User Profile Synchronization Service de-provisions the FIM configuration and starting it re-provisions it. It does a substantial amount of configuration that is why it takes so long.
Generally the following procedure will resolve the issue:
- Stop the User Profile Synchronization Service (Central Administration --> Manage Services on server)
- Wait until the service has completely stopped!!
- iisreset
- Start the User Profile Synchronization Service (Central Administration --> Manage Services on server)
- iisreset
The iisresets appear to be needed due to the ability to reference the Microsoft.ResourceManagement dlls in the GAC.
If this does not resolve your issue you may need an extended outage:
- Stop the User Profile Synchronization Service (Central Administration --> Manage Services on server)
- Stop the User Profile Service
- Wait for an hour (I have seen configuration changes occur after the services stop)
- Restart the server
- Start the User Profile Service
- Start the User Profile Synchronization Service and the User Profile Service
- Wait for an hour (I have seen configuration changes occur after the services start as well)
- Restart the server
Some of the error messages I have seen that this will resolve are:
System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.ResourceManagement, Version=4.0.2450.34, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.
File Not Found
Wednesday, 11 April 2012
Disable All Content Deployment Jobs
Just a quick script drop we have around 20 content deployment jobs that require disabling and enabling when we are service packing / upgrading. This number is increasing constantly and will eventually be quite large. Here is a one liner to disable and re-enable your content deployment jobs, I have two ps1 files on the server (Turn Off Content Deployment Jobs and Turn On Content Deployment Jobs):
Enable
Get-SPContentDeploymentJob | ForEach-Object {$_.IsEnabled = $true; $_.Update()}
Disable
Get-SPContentDeploymentJob | ForEach-Object {$_.IsEnabled = $false; $_.Update()}
Enable
Get-SPContentDeploymentJob | ForEach-Object {$_.IsEnabled = $true; $_.Update()}
Disable
Get-SPContentDeploymentJob | ForEach-Object {$_.IsEnabled = $false; $_.Update()}
Monday, 26 March 2012
Automated SSL Certificate Import (Certutil)
Just a quick script drop. You can use this script to import SSL certificates. It will import all the the PFX files in the directory to your COMPUTER\Personal\ Store. Which is the required store for your SSL Certificates. It does not import intermediate or CA certificates. I might add that functionality one day. Any questions post a comment below:
set CURDIR=%CD%
for /f "usebackq delims=|" %%f in (`dir /b "%CURDIR%" ^| findstr /i pfx`) do certutil.exe -f -p <PFX File Password> -importpfx "%CURDIR%\%%f"
pause
- Create a Directory called "SSL" (or something like that)
- Drop all your PFX files into the SSL folder
- Create a Batch File "InstallCert.bat"
- Run a command prompt as administrator
- Change Directory to your batch file and run it
set CURDIR=%CD%
for /f "usebackq delims=|" %%f in (`dir /b "%CURDIR%" ^| findstr /i pfx`) do certutil.exe -f -p <PFX File Password> -importpfx "%CURDIR%\%%f"
pause
Thursday, 15 March 2012
SharePoint 2010 Automated Patcher (Alpha Release)
Here is an alpha version of the source code. There is still a lot of work to do one this one but it is a starting point. I used AutoSPInstaller as the foundation for the launching http://autospinstaller.codeplex.com/.
USAGE:
USAGE:
- Download SharePoint Foundation SP1 / SharePoint Server SP1 / Office Web Apps SP1 and put them in the SP directory
- Download the latest cumulative update and put it in the CU directory
- Copy files to all SharePoint Servers
- Open Command Prompt as an administrator
- Run Launcher.bat on each SharePoint Server
- Run Products and Configuration Wizard on each server
- Done
This is the end to end procedure that we follow here:
SharePoint Service Pack / Cumulative Update Procedure
The following procedure outlines the SharePoint
patching process. This is appropriate for both Service Packs and
Cumulative Updates. This does not include Windows Service Packs or
Hot Fixes.
The procedure has been developed for a farm that has two Web Front End
Servers and one Application Server. This procedure can be scaled
up to suit a larger farm.
This procedure is to be used for the following SharePoint and Related
Services Patches:
-
SharePoint Foundation
-
SharePoint Server
-
Office Web Applications
SharePoint Patches will be packaged and installed via the command
line.
Upgrading a SharePoint Farm is a two phase process which consists of:
Phase
|
Description
|
Update Phase
|
During the update phase the farm can continue to be in production
with no downtime. The update process consists of installing the
binaries for the next version of SharePoint on each SharePoint
server
|
Upgrade Phase
|
During the upgrade phase the SharePoint farm must be taken off line
as concurrent connections during an upgrade can cause locks thus causing upgrade
failures. During the Upgrade Phase the SharePoint Configuration
database and Content databases are upgraded to the latest version.
|
Before proceeding with this procedure verify that the
following conditions are true:
-
All the Web Front End Servers are load balanced and are in the rotation of the TMG Load Balancer
-
All the farm servers are operating correctly
-
All the databases are active and operating correctly
-
SQL Database backups are present from the previous evening
Do not proceed with the upgrade if any of the
preceding conditions are not true. Resolve all issues before you
continue.
Update Phase
The following illustration shows the sequence of steps
that are required to install the update on the farm.
1. Copy installation package to
all SharePoint Servers (this will be done ahead of time)
2. Drain Stop PNWB1 from rotation in the TMG Load Balancer
a. Check to validate that all users have been relocated to PNWB2 by checking the Web Service Current Connections performance monitor variable
b. Shutdown PNWB1
c. Snapshot PNWB1
d. Start PNWB1
3. Run Command Prompt as an administrator, Browse to SharePoint Patcher Location and Run Launcher.bat on PNWB1
a. Monitor the Upgrade Status until it completes successfully
b. Verify Upgrade
c. Test to verify the server is operational
4. Bring PNWB1 back into rotation in the TMG Load Balancer
5. Drain stop PNWB2 from rotation in the TMG Load Balancer
a. Check to validate that all users have been relocated to PNWB2 by checking the Web Service Current Connections performance monitor variable
b. Shutdown PNWB2
b. Snapshot PNWB2
c. Start PNWB2
6. Run Command Prompt as an administrator, Browse to SharePoint Patcher Location and Run Launcher.bat on PNWB1PNWB2
a. Monitor the Upgrade Status until it completes successfully
b. Verify Upgrade
c. Test to verify the server is operational
7. Bring PNWB2 back into rotation in the TMG Load Balancer
a. Snapshot PNAP1
8. Run upgrade.bat on PNAP1
a. Monitor the Upgrade Status until it completes successfully
b. Verify Upgrade
c. Test to verify the server is operational
9. At this point all SharePoint Servers have been upgraded to the latest binaries
2. Drain Stop PNWB1 from rotation in the TMG Load Balancer
a. Check to validate that all users have been relocated to PNWB2 by checking the Web Service Current Connections performance monitor variable
b. Shutdown PNWB1
c. Snapshot PNWB1
d. Start PNWB1
3. Run Command Prompt as an administrator, Browse to SharePoint Patcher Location and Run Launcher.bat on PNWB1
a. Monitor the Upgrade Status until it completes successfully
b. Verify Upgrade
c. Test to verify the server is operational
4. Bring PNWB1 back into rotation in the TMG Load Balancer
5. Drain stop PNWB2 from rotation in the TMG Load Balancer
a. Check to validate that all users have been relocated to PNWB2 by checking the Web Service Current Connections performance monitor variable
b. Shutdown PNWB2
b. Snapshot PNWB2
c. Start PNWB2
6. Run Command Prompt as an administrator, Browse to SharePoint Patcher Location and Run Launcher.bat on PNWB1PNWB2
a. Monitor the Upgrade Status until it completes successfully
b. Verify Upgrade
c. Test to verify the server is operational
7. Bring PNWB2 back into rotation in the TMG Load Balancer
a. Snapshot PNAP1
8. Run upgrade.bat on PNAP1
a. Monitor the Upgrade Status until it completes successfully
b. Verify Upgrade
c. Test to verify the server is operational
9. At this point all SharePoint Servers have been upgraded to the latest binaries
Upgrade Phase
The following illustration shows the sequence of steps that are required to finish the patching process by upgrading the farm servers. During this process, the sites that are being upgraded will not be available to users.
1. Remove
both PNWB1 and PNWB2 from rotation in the TMG Load Balancer
2. Run
SharePoint Products Configuration Wizard on the Central Administration Server
PNAP1
3. Run
SharePoint Products Configuration Wizard on PNWB1
4. Run
SharePoint Products Configuration Wizard on PNWB2
5. Bring
PNWB2 and PNWB2 back into rotation in the TMG Load Balancer
Upon completion of User Acceptance Testing remove the Snapshots created in
the Update Phase
Monday, 12 March 2012
SharePoint 2010 December 2011 Cumulative Update Install Fails
I have found an issue with the installation of SharePoint 2010 December 2011 Cumulative Update. If you are seeing the following error in you Application Log:
Product: Microsoft Shared Components - Update 'Hotfix for Microsoft Office Server (KB2597014)' could not be installed. Error code 1603. Additional information is available in the log file C:\Users\??\AppData\Local\Temp\osrv-x-none_MSPLOG.LOG.
Open the file and if you search for return value 3 you will find the actual error message just above the return code. In my situation the error was:
MSI (s) (04:18) [12:33:42:190]: Executing op: End(Checksum=0,ProgressTotalHDWord=0,ProgressTotalLDWord=9722923)
MSI (s) (04:18) [12:33:42:425]: Assembly Error:The process cannot access the file because it is being used by another process.
MSI (s) (04:18) [12:33:42:425]: Note: 1: 1935 2: {E3DD2806-A5AB-43D8-AE84-DFAF878F579C} 3: 0x80070020 4: IAssemblyCacheItem 5: Commit 6: Microsoft.Office.Server.FilterControls,fileVersion="14.0.6108.5000",version="14.0.0.0000000",culture="neutral",publicKeyToken="71E9BCE111E9429C",processorArchitecture="MSIL"
MSI (s) (04:18) [12:33:42:425]: Note: 1: 2205 2: 3: Error
MSI (s) (04:18) [12:33:42:425]: Note: 1: 2228 2: 3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1935
MSI (s) (04:18) [12:33:42:428]: Note: 1: 2205 2: 3: Error
MSI (s) (04:18) [12:33:42:428]: Note: 1: 2228 2: 3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1709
MSI (s) (04:18) [12:33:42:428]: Product: Microsoft Shared Components -- Error 1935. An error occurred during the installation of assembly 'Microsoft.Office.Server.FilterControls,fileVersion="14.0.6108.5000",version="14.0.0.0000000",culture="neutral",publicKeyToken="71E9BCE111E9429C",processorArchitecture="MSIL"'. Please refer to Help and Support for more information. HRESULT: 0x80070020. assembly interface: IAssemblyCacheItem, function: Commit, component: {E3DD2806-A5AB-43D8-AE84-DFAF878F579C}
Product: Microsoft Shared Components - Update 'Hotfix for Microsoft Office Server (KB2597014)' could not be installed. Error code 1603. Additional information is available in the log file C:\Users\??\AppData\Local\Temp\osrv-x-none_MSPLOG.LOG.
Open the file and if you search for return value 3 you will find the actual error message just above the return code. In my situation the error was:
MSI (s) (04:18) [12:33:42:190]: Executing op: End(Checksum=0,ProgressTotalHDWord=0,ProgressTotalLDWord=9722923)
MSI (s) (04:18) [12:33:42:425]: Assembly Error:The process cannot access the file because it is being used by another process.
MSI (s) (04:18) [12:33:42:425]: Note: 1: 1935 2: {E3DD2806-A5AB-43D8-AE84-DFAF878F579C} 3: 0x80070020 4: IAssemblyCacheItem 5: Commit 6: Microsoft.Office.Server.FilterControls,fileVersion="14.0.6108.5000",version="14.0.0.0000000",culture="neutral",publicKeyToken="71E9BCE111E9429C",processorArchitecture="MSIL"
MSI (s) (04:18) [12:33:42:425]: Note: 1: 2205 2: 3: Error
MSI (s) (04:18) [12:33:42:425]: Note: 1: 2228 2: 3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1935
MSI (s) (04:18) [12:33:42:428]: Note: 1: 2205 2: 3: Error
MSI (s) (04:18) [12:33:42:428]: Note: 1: 2228 2: 3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1709
MSI (s) (04:18) [12:33:42:428]: Product: Microsoft Shared Components -- Error 1935. An error occurred during the installation of assembly 'Microsoft.Office.Server.FilterControls,fileVersion="14.0.6108.5000",version="14.0.0.0000000",culture="neutral",publicKeyToken="71E9BCE111E9429C",processorArchitecture="MSIL"'. Please refer to Help and Support for more information. HRESULT: 0x80070020. assembly interface: IAssemblyCacheItem, function: Commit, component: {E3DD2806-A5AB-43D8-AE84-DFAF878F579C}
A simple reboot and re-run of the install resolved the issue.
I am going to do some additional testing to see if I can establish why this requires a restart / re-run.
Sunday, 11 March 2012
SharePoint 2010 Automated Patcher
SharePoint Patching is a pain especially when you have 29 production servers and 60 non production servers like we do. I have written an automated patcher to cut the operational overhead of SharePoint patching. I am running the first test as I write this and it is looking really positive. I should be able to get a couple up here by Wednesday I would say.
How it works, you put your Cumulative Update in the CU directory and run install.bat. This is what it does.
How it works, you put your Cumulative Update in the CU directory and run install.bat. This is what it does.
- Checks to make sure you are past SP1 if you are not it installs SharePoint Foundation / Server SP1
- Checks to see if Office Web Apps are installed it will install SP1 for Office Web Apps if you have it installed
- Checks to see what CU's you have put in the directory and installs them one after the other
What it does not do:
- PSCONFIG Upgrade that will be a separate script
- Only supports the two latest CU's, if people would like previous CU's post a comment below and I will write the code
- Drain Stop the node from the TMG cluster (I am going to add this in next release)
- Check to see if you are a Farm admin (I am going to add this in next release)
Post a comment if you want additional functionality
<UPDATE> Got a bit held up with this due to other priorities. Doing the first release into production this afternoon if that is successful. I will hopefully have something up here tomorrow</UPDATE>
<UPDATE> Got a bit held up with this due to other priorities. Doing the first release into production this afternoon if that is successful. I will hopefully have something up here tomorrow</UPDATE>
Scripted Decommission SharePoint 2007 Web Application
We have approval to decommission one of our last SharePoint 2007 Web Applications! Only two more to go then we are a full 2010 shop!! I was going to write a script to perform the whole process with one click but can not justify it as we only have two web applications left to decommission. I am happy with this THREE step process. Feel free to use it or post comments.
Get the list of Site Collections
Get the list of Site Collections
- Run the following command to get all of the site collection URL's and
- stsadm -o enumsites -url https://webapplication.url > c:\temp\SiteCollections.xml
This will give you all of the details in an XML file that you need to work with
Generate the STSADM / SQL Delete statements
- Open the XML file in Excel 2010 (it will put everything into columns for you
- Create a new column with the following formula (this is your "Site Collection Delete Script")
- ="stsadm -o deletesite -url " &[@Url] & " -gradualdelete"
- Create a new column with the following formula (this is your "Content DB Delete Script")
- ="stsadm -o deletecontentdb -url https://webapplication.url -databasename " & [@ContentDatabase]
- In this web application we have one Site Collection for each Content Database if you do not you will have to remove non Unique values for this script (or just let it fail)
- Create a new column with the following formula (this is your "DROP Database script")
- ="DROP DATABASE [" & [@ContentDatabase] &"]"
- Your scripts will look like this:
- stsadm -o deletesite -url https://webapplication.url/stuff/eight -gradualdelete
- stsadm -o deletecontentdb -url https://webapplication.url -databasename eight -data
- DROP DATABASE [eight]
I always thought that if you have a multi server farm you had to specify the database server to delete the content database. Turns out you don't.
Run the scripts
- Run the "Delete Site Collection Script"
- Check to make sure you got all of the Site Collections by going to Central Admin --> Application Management --> Content Databases
- Every Content Database should by in a stopped State and have 0 Sites
- Run the "Content Database Delete Script"
- Check to make all the Content Databases have been deleted by going to Central Admin --> Application Management --> Content Databases
- This only detaches the databases from SharePoint! You still have Drop the Databases
- Run the "DROP Database script" (on the SQL Server)
The only thing left to do is delete the Web Application I did that in Central Admin though not using stsadm.
If some one writes a one click decom prodecdure let me know.
Thursday, 1 March 2012
Kerberos Nuance
N:B Real IP’s and DNS names have been changed to protect the
innocent
We are setting up a new Business Intelligence farm 2 WFE’s 1 APP Server and Physical behemoth of a DB server to replace the old farm that is a bit lack lustre in performance . Luke Welch and I sat down to perform the Kerberos configuration, I have done this a million times normally it goes off without a hitch but run into issues. Luke came up the suggestion so all credit to Luke for this one.
We are setting up a new Business Intelligence farm 2 WFE’s 1 APP Server and Physical behemoth of a DB server to replace the old farm that is a bit lack lustre in performance . Luke Welch and I sat down to perform the Kerberos configuration, I have done this a million times normally it goes off without a hitch but run into issues. Luke came up the suggestion so all credit to Luke for this one.
I am an ex-developer so things on one line are cool still in
my head, so I like to do host entries one line for the one IP. The old URL is bob.compay and we are
configuring the new farm on bob2.company for testing purposes. So the HOST entry looks like this.
192.168.1.140 bob.company bob2.company
After I turned Kerberos Logging on we noticed For some
reason it did not work looking at the error log we spotted the following error
The Kerberos client received a KRB_AP_ERR_MODIFIED
error from the server svc_bob. The target name used was HTTP/bob.company. This
indicates that the target server failed to decrypt the ticket provided by the
client. This can occur when the target server principal name (SPN) is
registered on an account other than the account the target service is using.
Please ensure that the target SPN is registered on, and only registered on, the
account used by the server. This error can also happen when the target service
is using a different password for the target service account than what the
Kerberos Key Distribution Center (KDC) has for the target service account.
Please ensure that the service on the server and the KDC are both updated to
use the current password. If the server name is not fully qualified, and the
target domain (COMPANY) is different from the client domain (COMPANY), check if
there are identically named server accounts in these two domains, or use the
fully-qualified name to identify the server.
That should read HTTP/bob2.company not bob.company. Luke thought that the fancy one line HOST
entry was causing the issue. I pinged
bob2.company
C:\Windows\system32>ping
bob2.company
Pinging
bob.company [192.168.1.140] with 32 bytes of data:
Reply
from 192.168.1.140: bytes=32 time<1ms TTL=128
Notice the bob resolution in the ping! So IE was requesting a Kerberos ticket for
bob.company instead of bob2.company which the service account svc_bob is not
allowed to do. All we had to do was spit
the HOST entry onto two lines and all was fine.
Thursday, 9 February 2012
Update-SPSolution Automated Install
Just a quick script
drop, I am going to polish this up a bit over the coming weeks. This
script will Update all of the WSP’s in the install folder. It will not add new
solutions only update old ones. How it
works:
- Create the following folder structure (where OutofBand is the name of your release):
- Drop your wsps you want to release in the install folder
- Drop your current production wsps in the rollback folder (if you do not have them check this out)
- Create setup.ps1 in the OutofBand folder with the following code
- Do not run this from PowerShell ISE, the Get-Location will fail. This will cause an IISReset
- To deploy your solution files simply run setup.ps1 from SharePoint 2010 Management Shell
- If you need to roll back update the $Rollback variable to $true
#Release Script for SharePoint 2010 wsps
(assumes wsps have already been released)
asnp Microsoft.SharePoint.PowerShell
–erroraction SilentlyContinue
[string]$strDeploymentFiles = Get-Location
-PSProvider FileSystem;
[bool]$Rollback = $false;
if ($Rollback)
{$strDeploymentFiles +=
"\rollback\";}
else
{$strDeploymentFiles +=
"\install\";}
$strd = dir -Recurse $strDeploymentFiles *.wsp;
foreach($wsp in $strd)
{
[string]$strWSPName = $wsp
Update-SPSolution -Identity $strWSPName -LiteralPath
"$strDeploymentFiles$wsp" -Force -GAC
}
Subscribe to:
Posts (Atom)