My computer at work is installed with Windows 10 (sorry…).
I recently had the unpleasant surprise of seeing a piece of software installed without my consent: the Samsung Printer Experience App.
So, since I don't want it, I don't need it. So I'll show here what I did to remove it.
PS C:\Windows\system32> Get-AppxPackage -AllUsers | ? { $_.Name -match "samsung" }
PS C:\Windows\system32> Get-AppxPackage -AllUsers | ? { $_.Name -match "SAMSUNGELECTRONICSCO.LTD.SamsungPrinterExperience" } | Remove-AppxPackage -AllUsers
As with Samsung Printer Experience, a new application has appeared out of nowhere: Lexmark Printer Home, so let's apply exactly the same method.
PS C:\Windows\system32> Get-AppxPackage -AllUsers | ? { $_.Name -match "lexmark" }
PS C:\Windows\system32> Get-AppxPackage -AllUsers | ? { $_.Name -match "58539F3C.LexmarkPrinterHome" } | Remove-AppxPackage -AllUsers
Contact :