Enable visio file (.vsd) preview in SharePoint 2013

​If you want to open your Visio (.VSD) file using Visio Services in SharePoint 2013 then unfortunately SharePoint will not open .VSD files in browser. If you have  Visio 2013 then save those files as .VSDX and SharePoint 2013 will open those files in Browser or you can save your Visio file as Web Drawing (.VDW) and they should open in browser as well.

​Also please make sure you have Visio Services Enabled.

How to set SharePoint Search Crawl Schedule as None via Powershell command

​If you wanted to reset your SharePoint 2013 or SP 2010 Search Crawler schedule to none using PowerShell then you can use the following code. The key here is to set the Scheduel to $null. These properties are nullable and by setting them to null will clear all your crawling schedule.

$ssa = "Search Service Application"​

$contentSource = Get-SPEnterpriseSearchCrawlContentSource -SearchApplication $ssa -Identity "Local SharePoint Sites"

$contentSource.IncrementalCrawlSchedule = $null

$contentSource.FullCrawlSchedule = $null

$contentSource.Update​()​