Hi everyone Answering Ravinder Singh, in his post on Linkedin Modern Endpoint Management (MECM | SCCM | Intune | AzureVD | Security | MacOS | iOS ) Group I have used the following PowerShell Script to list all apps installed with their DisplayName, UninstallString, and other properties. Feel free to tweak the script to use … Continue reading Use PowerShell to find application uninstall keys
Tag: Powershell
Intune Stale Devices ā part 2
Hi again! If you looked on my previous post you probably asked yourself how would be able to retrieve the same information using Powershell. There you go. Install-Module Microsoft.Graph -Scope AllUsers Connect-MSGraph $Devices = Get-IntuneManagedDevice -Filter "contains(operatingsystem, 'Windows')" | Get-MSGraphAllPages Now you have the full list to work with $Devices | Where-Object {$_azureADDeviceId -eq "00000000-0000-0000-0000-000000000000"} … Continue reading Intune Stale Devices ā part 2
Microsoft Teams – Check who can create Microsoft 365 Groups / Team and Channels
Hi there Today I'm walking you through the Microsoft Teams script to check who can create Microsoft 365 Groups We use security groups (Azure AD synced) or Azure AD dynamic groups (cloud based) to control who can create a Team on Microsoft Teams That doesn't mean a user can't join a Team clicking on a … Continue reading Microsoft Teams – Check who can create Microsoft 365 Groups / Team and Channels
Create Distribution Group in ADDS from CSV file.
Hi thereThis article it's to show how to create DG (Distribution Groups) from CSV file into ADDS.We got an export from Lotus Notes Distribution Group (same client) where we have:Group NameMembers: with CN and email (as contacts) on the same columnĀ Challengescreate the Distribution Groups from CSV file (as is, with blank spaces on name)import members … Continue reading Create Distribution Group in ADDS from CSV file.
Creating Contacts in Active Directory from CSV
Hi thereIn this article I'm covering how to create contacts in Active Directory from CSV with prefix avoiding duplicate entries when we have info@gmail.com and info@yahoo.com where Name / Display name should be "info" under your Contacts OU.In order to avoid that we have the following scriptPrefix : "CA-Contact-"Contact name / displayname : $contactname = … Continue reading Creating Contacts in Active Directory from CSV