Social Icons

OthersA collection of 11 posts

Intranet Trends to Look Out for in 2018

Workplaces are no longer physical spaces occupied by employees. Organizations now are advancing towards ‘Digital Workplaces’ – this allows employees to connect more easily with each other across…

How to Activate MIME Type using Powershell

$mime = “text/html” $webAppUrl = “http://test.company.com” $webApp = Get-SPWebApplication $webAppUrl If ($webApp.AllowedInlineDownloadedMimeTypes -notcontains $mime) { Write-Host -ForegroundColor White “Adding MIME Type “$mime #$webApp.AllowedInlineDownloadedMimeTypes.Add($mime) #$webApp.Update() Write-Host -ForegroundColor Green “MIME…