Windows store, calc application
Published: October 30, 2020 - 5:27 PM
by EdG973
Hello,
In Windows 10, the "calc" application has disappeared and been replaced by "calculatrice" from the Windows Store...
The WAPT Store offers "tis-remove-windows-appx" to remove all applications from the Microsoft Store.
"Calculatrice" deserves to be kept; is there a package that allows selecting (in the package's Python code) which applications to keep?
Sincerely,
Ed
Re: Windows store, calc application
Published: October 30, 2020 - 5:34 PM
by EdG973
Oops, sorry.
While exploring the code of the tis-remove-windows-appx package, I noticed that it's possible to specify which apps to uninstall...
apps = [
### Windows 10 default apps
'Microsoft.3DBuilder',
'Microsoft.Print3D',
'Microsoft.Microsoft3DViewer',
'Microsoft.MixedReality.Portal',
'Microsoft.YourPhone',
'Microsoft.WindowsFeedbackHub',
'Microsoft.Windows.Cortana',
'Microsoft.GetHelp',
#'Microsoft.Appconnector',
'Microsoft.BingFinance',
'Microsoft.BingNews',
'Microsoft.BingSports',
'Microsoft.BingWeather',
'Microsoft.FreshPaint',
#'Microsoft.MSPaint',
'Microsoft.Getstarted',
'Microsoft.MicrosoftOfficeHub',
'Microsoft.MicrosoftSolitaireCollection',
#'Microsoft.MicrosoftStickyNotes',
#'Microsoft.Office.OneNote',
'Microsoft.OneConnect',
'Microsoft.People',
'Microsoft.SkypeApp',
#'Microsoft.Windows.Photos',
'Microsoft.WindowsAlarms',
#'Microsoft.WindowsCalculator',
'Microsoft.WindowsCamera',
'Microsoft.WindowsMaps',
'Microsoft.WindowsPhone',
'Microsoft.WindowsSoundRecorder',
#'Microsoft.WindowsStore',
'Microsoft.Xbox*',
'Microsoft.ZuneMusic',
'Microsoft.ZuneVideo',
'microsoft.windowscommunicationsapps',
'Microsoft.MinecraftUWP',
'Microsoft.MixedReality.Portal'
'Microsoft.ScreenSketch'
### Threshold 2 apps
'Microsoft.CommsPhone',
#'Microsoft.ConnectivityStore',
'Microsoft.Messaging',
#'Microsoft.Office.Sway',
### Redstone apps
'Microsoft.BingFoodAndDrink',
'Microsoft.BingTravel',
'Microsoft.BingHealthAndFitness',
'Microsoft.WindowsReadingList',
### non-Microsoft
'9E2F88E3.Twitter',
'Flipboard.Flipboard',
'ShazamEntertainmentLtd.Shazam',
'king.com.*',
'ClearChannelRadioDigital.iHeartRadio',
'4DF9E0F8.Netflix',
'6Wunderkinder.Wunderlist',
'Drawboard.DrawboardPDF',
'2FE3CB00.PicsArt-PhotoStudio',
'D52A8D61.FarmVille2CountryEscape',
'TuneIn.TuneInRadio',
'TheNewYorkTimes.NYTCrossword',
'828B5831.HiddenCityMysteryofShadow',
'Microsoft.Advertising.Xaml',
'SpotifyAB.SpotifyMusic',
### Apps which cannot be removed using Remove-AppxPackage
#'Microsoft.BioEnrollment',
#'Microsoft.MicrosoftEdge',
'Microsoft.Windows.Cortana',
'Microsoft.WindowsFeedback',
'Windows.ContactSupport'
]
Calculator is not included.
Should I conclude that it is not uninstalled?
Re: Windows store, calc application
Published: October 30, 2020 - 6:06 PM
by Valentin Ficis
Good morning,
EdG973 wrote: ↑Oct 30, 2020 - 5:34 PM
While exploring the code of the tis-remove-windows-appx package, I noticed that it's possible to specify which apps to uninstall...
apps = [
### Windows 10 default apps
[...]
'Microsoft.SkypeApp',
#'Microsoft.Windows.Photos',
'Microsoft.WindowsAlarms',

#'Microsoft.WindowsCalculator',
[...]
Calculator isn't included.
Should I conclude that it's not uninstalled?
Microsoft Windows Calculator It seems to be listed correctly, but with comments. So I assume it won't be uninstalled.