Categories

Archives

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 [...] [read more...]

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; [...] [read more...]

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. Related Posts:PowerShell : Modifying Web AppPool AccountPowerShell : Desktop Experience Feature [read more...]