Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
Write-Output "Removing Windows 10 Mail Appx Package" Get-AppxPackage Microsoft.windowscomminicationsapps | Remove-AppxPackage Get-AppxPackage Microsoft.windowscomminicationsapps | Remove-AppxPackage -Allusers if(Get-AppxPackage -Name Microsoft.windowscommunicationsapps -AllUsers){ Get-AppxPackage -Name Microsoft.windowscommunicationsapps -AllUsers | Remove-AppxPackage -AllUsers - Verbose -ErrorAction Continue } else{ Write-Output "Mail app is not installed for any user" } if(Get-ProvisionedAppxPackage -Online | Where-Object {$.Displayname -match "Microsoft.windowscommunicationsapps"}){ Get-ProvisionedAppxPackage -Online |Where-Object {$.DisplayName -Match "Microsoft.windowscommunicationsapps"} | Remove-AppxProvisionedPackage -Online -AllUsers -Verbose -ErrorAction Continue } else { Write-Output "Mails app is not installed for the system" }
Hi, this is a comment.
To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
Commenter avatars come from Gravatar.