How to disable Windows Hello for Business

Method 1: Using Group policy settings. If using Windows 10 Pro edition, it’s possible to change the group policy settings to disable PIN sign-in option for all users. Open the Run dialog box by pressing the Windows key and the R key together. Type GPEDIT.MSC and hit the Enter key. Go to Computer Configuration -> Administrative Templates -> System -> Logon. […]

How to Geolock an Office 365 tenancy to only be accessible from one country

First go to https://entra.microsoft.com 1. Next, go to Protection > Conditional Access > Named Locations 2. Next click ‘+ Countries location’ 3. Name the ‘New location’ as ‘Approved Countries’ 4. Tick the countries you need to ‘approve’ and click ‘Create’ 5. Next, go to ‘Policies’ 6. Click ‘New policy’ and name the policy ‘Block access from […]

Managing Calendar Permissions in O365 with PowerShell

Getting Calendar Permissions: First, use: Get-MailboxFolderPermission -Identity [email protected]:calendar PowerShellCopy Make sure to add the relevant ‘User’  Example below: This will then tell you who has permissions for the user’s calendar and what ‘Access Rights’ they have Adding Calendar permissions: First, use: Add-MailboxFolderPermission -Identity [email protected]:calendar -User [email protected] -AccessRights PowerShellCopy Make sure to add the relevant ‘Access […]