Monthly Archives: June 2013

Setting up WebDav for iPads on Server 2008 or 2012

WebDav – How to install and configure on Server 2008 R2 These screenshots were taken from a fresh installation of server 2008 R2 (Standard) with no roles or features added. 1. On the Start menu, click Start, point to Administrative … Continue reading

Posted in Uncategorized | Leave a comment

Idiot Guide to Powershell Part 2 (O365 Exchange)

  Can’t be bothered typing in your credentials every time you connect? include your credentials in the script (password and admin email account in red) # Connect to Outlook Set-ExecutionPolicy RemoteSigned$Password = ConvertTo-SecureString ‘password‘ -AsPlainText -Force$Cred = New-Object System.Management.Automation.PSCredential(“mailmaster@xxx.com“, $Password)$s … Continue reading

Posted in Uncategorized | Leave a comment