Skip to content

Instantly share code, notes, and snippets.

class PaymentViewModel : ObservableObject{
@Published var isLoadingRetrieveProducts = false
@Published var yearlySubscriptionPrice = ""
@Published var monthlySubscriptionPrice = ""
@Published var lifetimeSubscriptionPrice = ""
@Published var isLoadingPayment = false
@Published var showAlert = false
@DuckTeamOfficial
DuckTeamOfficial / WindowsStoreApps
Last active October 24, 2024 07:27
Remove or Reinstall Windows Store Apps on Windows 10
Note: Run PowerShell as Administrator!
Delete all builtin apps except photo viewer and calculator (xbox will throw error as game bar is not removed but everything else is!);
Get-AppxPackage -allusers *3dbuilder* | Remove-AppxPackage
Get-AppxPackage -allusers *alarms* | Remove-AppxPackage
Get-AppxPackage -allusers *appconnector* | Remove-AppxPackage
Get-AppxPackage -allusers *appinstaller* | Remove-AppxPackage
Get-AppxPackage -allusers *communicationsapps* | Remove-AppxPackage
Get-AppxPackage -allusers *camera* | Remove-AppxPackage