PowerShell

PowerShell : Modifying Web AppPool Account

English I think you may already know Set-SPServiceApplicationPool. This command can be used to modify apppool account for service application - but it doesn’t work for Web Application. I am looking for Set-SPWebApplicationPool but I can not find it anywhere. So here is the PowerShell script param([string] $url, [string] $account) $SPWebApp = Get-SPWebApplication $url $SPManagedAccount = Get-SPManagedAccount –Identity $account $SPWebApp.ApplicationPool.ManagedAccount = $SPManagedAccount $SPWebApp.ApplicationPool.Update()

PowerShell : Desktop Experience Feature

English Today I find a strange behaviour, my Office 2010 can not browse to the SharePoint 2010 document library. In short, I can not save my document directly to SharePoint 2010. Office 2010 provide Save and Send functionality, which should give me functionality to save directly to SharePoint 2010 as what it does in previous version; so what could be the problem? Saving to SharePoint 2010 document library requires WebDAV functionality via Web Client service.

PowerShell : Working with XML

[admin]( “cakriwut@hotmail.com”) - Jul 4, 2010 You’re welcome Jeff. Don’t forget to browse other topics.

PowerShell : Working with XML

[admin]( “cakriwut@hotmail.com”) - Jul 4, 2010 You’re welcome Jeff. Don’t forget to browse other topics.

PowerShell : Working with XML

English I have found 2 good articles on how work with XML in PowerShell. http://www.pluralsight-training.net/community/blogs/dan/archive/2006/11/25/42506.aspx http://www.pluralsight-training.net/community/blogs/dan/archive/2006/11/28/43561.aspx Don’t be surprised that you will find % notation that represent ForEach-Object.

PowerShell : Working with XML

English I have found 2 good articles on how work with XML in PowerShell. http://www.pluralsight-training.net/community/blogs/dan/archive/2006/11/25/42506.aspx http://www.pluralsight-training.net/community/blogs/dan/archive/2006/11/28/43561.aspx Don’t be surprised that you will find % notation that represent ForEach-Object.