TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Remove the SharePoint site theme using powershell
Vijai Anand Ramalingam
Apr 26, 2011
10.7
k
0
0
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
In this blog we will be seeing how to remove the SharePoint site theme using powershell
Using powershell remove the site theme
The site theme will be changed to Default(No theme).
$site=Get-SPSite "
http://ctsinmbpmoss:1111/sites/sample
"
$web=$site.OpenWeb()
[Microsoft.SharePoint.Utilities.ThmxTheme]::RemoveThemeFromWeb($web,$false)
$web.Update()
$web.Dispose()
$site.Dispose()
Remove the SharePoint site theme using powershell
Next Recommended Reading
How to Remove an App from a SharePoint 2013 Site using Powershell Script