Link to home
Start Free TrialLog in
Avatar of SAM2009
SAM2009Flag for Canada

asked on

I want to see the status of: UnifiedGroupWelcomeMessageEnabled

Hi,

I run this PowerSell cmd in O365:

Set-UnifiedGroup $groupName -UnifiedGroupWelcomeMessageEnabled:$false

But how can do the contrary with Get-UnifiedGroup?

I want to see the status of: UnifiedGroupWelcomeMessageEnabled
Avatar of David Johnson, CD
David Johnson, CD
Flag of Canada image

To undo
Set-UnifiedGroup $groupName -UnifiedGroupWelcomeMessageEnabled:$true

Open in new window

Avatar of SAM2009

ASKER

Not undo but I just need to check the status.
Get-UnifiedGroup $groupName | select UnifiedGroupWelcomeMessageEnabled
or
Get-UnifiedGroup $groupName | format-list
Avatar of SAM2009

ASKER

That's the problem, the property " UnifiedGroupWelcomeMessageEnabled" does not exist with Get-UnifiedGroup
ASKER CERTIFIED SOLUTION
Avatar of Vasil Michev (MVP)
Vasil Michev (MVP)
Flag of Bulgaria image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of SAM2009

ASKER

Thanks