My work computer is installed with a Windows 10 OS (sorry…).
I recently had the unpleasant surprise to see software installed without my consent : the Samsung Printer Experience App.
So, as I : don't want it, don't need it, I will show here what I've done 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
Like with Samsung Printer Experience a new application came out of nowhere : Lexmark Printer Home, so lets apply 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 :