List all the Apps – this can be a long list!
Get-AppxPackage -User username
Get rid of that sucker.
Remove-AppxPackage PackageFullName
List all the Apps – this can be a long list!
Get-AppxPackage -User username
Get rid of that sucker.
Remove-AppxPackage PackageFullName
Commands I frequently use when checking and setting mailbox permissions:
Check and set mailbox permissions
Get-MailboxPermission -Identity “MailboxOwnerUsername“
Add-MailboxPermission -Identity “MailboxOwnerUsername“ -User “UserGettingPermission“ -AccessRights FullAccess
Give Send As permission
Add-RecipientPermission MailboxOwnerUsername -AccessRights SendAs -Trustee UserGettingPermission
Calendar Permissions
Of course these would work with any folder and yes, I could teach the user how to do this themselves, but they do it less frequently than I do; this is just easier.
List the current permissions on the Calendar
get-mailboxfolderpermission -Identity username:\calendar
Add permissions
(use set-mailboxfolderpermissions to change)
add-mailboxfolderpermission -Identity username:\calendar -user otheruser -accessrights Editor
Delete/remove Permissions
remove-mailboxfolderpermission -Identity username:\calendar -user otheruser -confirm:$false
Permission levels: