In my case I couldn’t open explorer view on a SharePoint 2007 library. the resolution was to switch my IE 11 compatibility view to 10, this resolved the issue. Add…
Month: March 2018
Powershell cleaning orphan objects in content DB
The below script help to identify and clean orphan objects in content databases. clear if ((Get-PSSnapin -Name Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue) -eq $null ) {Add-PSSnapin Microsoft.SharePoint.Powershell} $CDBs = Get-SPContentDatabase ForEach ($CDB…
Copy SharePoint 2010 site from one site collection to another
In this test case I needed to copy (not move) a SharePoint 2010 site with its content from one site collection to another within the same sp2010 farm. Creating Site Template…
Clean install windows 10 without a CD
You can install a clean copy of windows 10 on a new formatted hard drive without the need of windows installation CD. all you need is 4 GB thumb drive/memory…
SharePoint 2010 and 2013 PowerShell script for showing list columns
clear $site= New-Object Microsoft.SharePoint.SPSite (“http://domain/site/”) $web=$site.OpenWeb() $list=$web.Lists[“listName”] $list.Fields |select ID, title, internalname,type | more