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…
Read More
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…
Read More
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…
Read More

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…
Read More
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