Provision default TileDataLayer with FSlogix profile containers for non-persistent

Reading Time: 2 minutes Since Microsoft released the Windows 10 Creators update on April 11th 2017 the TileDataLayer has been deprecated. The TileDataLayer is a database which exist of vedatamodel.edb base file, some checkfiles and transaction logfiles. This database contains the various settings around the startmenu

Fix AutoMapping

Reading Time: < 1 minute [code language=”powershell”] $FixAutoMapping = Get-MailboxPermission sharedmailbox |where {$_.AccessRights -eq "FullAccess" -and $_.IsInherited -eq $false} $FixAutoMapping | Remove-MailboxPermission $FixAutoMapping | ForEach {Add-MailboxPermission -Identity $_.Identity -User $_.User -AccessRights:FullAccess -AutoMapping $true} [/code]