With Windows 10 alot of people run into the problem that when they, or some software, needs to install .NET 3.5 it claims it cannot download the files. There is a “simple” fix to this issue by running the installer directly from the Windows CD using an Elevated command prompt with the following command: Dism […]
Posts from January 2016
Script to remove AutoMapping from select or all users in Exchange
An adeptation of the script by Matthias R Jessen. # Get all mailboxes in the forest $Mailboxes = Get-User -OrganizationalUnit “Employees” | Get-Mailbox -ResultSize unlimited -IgnoreDefaultScope $ConfirmPreference = “None” # Iterate over each mailbox foreach($Mailbox in $Mailboxes) { try { # Try to run the example fix against the current $Mailbox […]