Adding Calendar Permission using PowerShell
List individual Calendar Permissions
Get-MailboxFolderPermission username:\calendar
List Calendar Permissions for all users
Get-Mailbox | ForEach-Object {Get-MailboxFolderPermission $_”:\calendar”} | Select Identity, User, AccessRights
List Calendar Permissions
AzureAD Disable Security Defaults
Log into the 365 Admin Portal
From the left menu select "Azure Active Directory admin center"
From the left menu Select "Azure Active Directory"
Select "Properties" from the
Add additional S2S connections to a VNet: Azure portal
Prerequisites
Verify the following items:
You are NOT configuring a new coexisting ExpressRoute and VPN Gateway Site-to-Site connection.
You have a virtual network that was created using the Resource
Access WSUS with SQL Server Management Studio
Open Microsoft SQL Server Management Studio by using right click, “Run as administrator”
WID2008np:\\.\pipe\MSSQL$MICROSOFT##SSEE\sql\query
WID2012+np:\\.\pipe\MICROSOFT##WID\tsql\query
Source: https://www.ajtek.ca/wsus/how-do-i-connect-to-the-windows-internal-database-wid/
Add non-clustered indexes to the WSUS database
Add non-clustered indexes to the WSUS database
-- Create custom index in tbLocalizedPropertyForRevision
USE [SUSDB]
CREATE NONCLUSTERED INDEX [nclLocalizedPropertyID] ON [dbo].[tbLocalizedPropertyForRevision]
(
[LocalizedPropertyID] ASC
)WITH (PAD_INDEX