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