Microsoft Teams with on-premises Exchange Server

In this article, will see how to integrate Microsoft Teams with On-premises Exchange using Hybrid environment. Pre-requisites: Requirements for integrating and using Microsoft Teams functionality in a hybrid environment: Exchange Server 2016 Hybrid Exchange configured Microsoft 365 tenant with relevant licenses Hybrid Identity (identity object in Active Directory on premises and Azure AD) In case … Read more

Microsoft Teams Security Policy Best Practices

Microsoft Teams is your hub for teamwork, which brings together everything your team needs with the power of Microsoft 365 applications. Due to COVID-19 pandemic. Many people started work from home and many organization started using Collaboration and Communication tools. Thus, many security analyst and experts started researching the security aspect of communication and collaboration … Read more

Microsoft Teams Security Features

Microsoft offering a new unified communication and collaboration app i.e. Microsoft Teams. Which is rapidly growing and gaining popularity because, Microsoft offers Office 365 suite with complete productive package – integrating tools like; SharePoint, Word and Excel within a messaging and calling feature. Microsoft Teams offer an efficient way to deliver an integrated communication, collaboration … Read more

How to Get AD User’s Group Membership

To Get User’s security group membership Run below command: Get-ADPrincipalGroupMembership -Identity user  | where {$_.groupCategory -eq ‘Security’} |  add-adgroupmember -members USER To get all groups that a user is a member of Run below command: Get-ADPrincipalGroupMembership username | select name Name —- Domain Users Domain Computers Workstation Admins Company Users Company Developers AutomatedProcessingTeam You may … Read more

Solutions to Fix Outlook Error 0x80040115

Generally, the Outlook error 0x80040115 occurs due to over sized .PST files or when trying to send receive email in outlook. Now will talk about causes and how to fix Outlook Error 0x80040115. Causes of the Microsoft Outlook Error 0x80040115 Corrupt Outlook Installation Oversize PST file/Corrupt PST file Network Problem/Internet Connection Email Server/Third-Party add-ins Issue … Read more

PowerShell Script to List Installed Software

Open PowerShell and copy paste the below command: Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Format-Table –AutoSize The above script will provide you a list of all your programs, complete with the version, name of the developer, and even the date you installed it. Check the below screen-shot. In order to export this … Read more

How to Fix Windows Error Code 0x80070005

In this article will see how to fix windows error code 0x80070005. The article divided into three parts as all three are related to windows error code 0x80070005 and their solutions, those are: Windows Update Error Code 0x80070005 Error code: 0x80070005 – “Something happened and this app couldn’t be installed. Please try again. Error code: … Read more

How to Fix – Event ID: 1121 Source: NTDS

The format of the schedule attribute of the following object is unrecognizable. As per Microsoft: “The format of the specified object’s Schedule attribute is not recognizable. A default schedule will be substituted. This event will continue to occur until the Schedule attribute on this object is corrected”. – Have you made any changes in AD … Read more

How to Fix – Roaming Profile Error 1521

Couple of things you can do to troubleshoot Roaming Profile Error 1521. Check the permission, may be you don’t have the right permissions on the share. Check if you can browse to the correct share and folder on that server. Try creating a new user in AD and logon to the users PC and see … Read more