FAQ

PPTP

Is PPTP insecure?

Yes. PPTP is (and always has been) insecure. It is a very common protocol (present in Microsoft Windows ever since Windows 95). There are several known security issues with PPTP, and it’s likely that intelligence agencies (and perhaps others?) decrypt PPTP with ease. It may be easy to set up and available on many platforms,

Is PPTP insecure? Read More »

How to connect to Office 365 with PowerShell

Before connecting for the first time, enable Windows PowerShell to run signed scripts: Set-ExecutionPolicy RemoteSigned Every time you want to connect, run the following commands: $UserCredential = Get-Credential (enter your Office 365 username & password) $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection Import-PSSession $Session And don’t forget to close your

How to connect to Office 365 with PowerShell Read More »

reduction