Windows store, calc application

Questions about WAPT Packaging / Requests and help regarding Wapt packages.
Forum Rules
Community Forum Rules
* English support on www.reddit.com/r/wapt
* French community support is available on this forum
* Please prefix the topic title with [RESOLVED] if it is resolved.
* Please do not edit a topic that is tagged [RESOLVED]. Open a new topic referencing the old one.
* Specify the installed WAPT version, full version, and build number (2.2.1.11957 / 2.2.2.12337 / etc.) as well as the Enterprise/Discovery edition.
* Versions 1.8.2 and earlier are no longer supported. The only questions accepted regarding version 1.8.2 are related to upgrading to a supported version (2.1, 2.2, etc.).
* Specify the server OS (Linux/Windows) and version (Debian Buster/Bullseye - CentOS 7 - Windows Server 2012/2016/2019).
* Specify the OS of the administration/package creation machine and the machine with the problematic agent, if applicable (Windows 7/10/11/Debian 11/etc.).
* Avoid asking multiple questions when opening a topic, otherwise it may be ignored. If there are multiple topics, open separate topics, preferably one after the other and not all at the same time (i.e., do not spam the forum).
* Include code snippets, screenshots, and other images directly in the post. Links to Pastebin, Bitly, and other third-party sites will be systematically removed.
* As with any community forum, support is provided voluntarily by members. If you require commercial support, you can contact Tranquil IT's sales department at 02.40.97.57.55
Locked
EdG973
Messages: 25
Registration: June 9, 2020 - 5:31 PM

October 30, 2020 - 5:27 PM

Hello,

In Windows 10, the "calc" application has disappeared and been replaced by "calculatrice" from the Windows Store... :twisted:

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
EdG973
Messages: 25
Registration: June 9, 2020 - 5:31 PM

October 30, 2020 - 5:34 PM

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?
Valentin Ficis
Messages: 14
Registration: Oct 27, 2020 - 2:32 p.m.
Location: Metropolitan France
Contact :

October 30, 2020 - 6:06 PM

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',
:arrow: #'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.
Installed WAPT version: WAPT Starter (WAPT Self-service Community 1.8.2.7267)

Client machine OS: Windows 7 Home Premium
Locked