Your download link is at the very bottom of the page... always.



Processed through Paypal
No account required.


Donate Bitcoin to this wallet:
1KkUMXvQ2ko3xcJkzitB7WYgoW6m79WFfm
Donate Ethereum to this wallet:
0x40E56922F43637224935CDC35e2c96E0392A8505
Donate Litecoin to this wallet:
LLYAFEyqjH69gkyCEpRjXNyedRCWrVChfL

Buy our over-priced crap to help keep things running.
Take No CrapwareOG Dad CapNo Password


Join our Facebook groupFollow us on TwitterFollow us on InstagramOur RSS FeedJoin us on TikTokJoin us on LinkedIn


 Home » OlderGeeks.com Freeware Downloads » Windows Hacks » Remove Windows Store Apps Script   
File - Download Remove Windows Store Apps Script
Description

Always scroll to the bottom of the page for the main download link.
We don't believe in fake/misleading download buttons and tricks. The link is always in the same place.


Remove Windows Store Apps Script
Remove Windows Store apps in Windows 8, Windows 8.1 and Windows 10
Introduction

This script can be used to remove multiple Windows Store apps from a user account in Windows. It provides a list of installed Windows Store apps. You can specify the application IDs, and remove them all at once.
Scenarios

In Windows 8, 8.1 and 10, you can remove a single Windows Store app by right-clicking the tile in the Start menu and choosing the uninstall command. However, no command is provided for removing multiple Windows Store apps all at once. If you want to do so, you can use this script sample.

Sometimes Windows Store apps may crash in Windows 8. Even though you can successfully uninstall and reinstall the app, the app may still crash after the reinstallation. In this situation, you can use this example script to remove these Windows Store apps cleanly.

Script

Step 1: Move the cursor to the top right corner of the screen, click Search, type PowerShell, right-click the Windows PowerShell app tile, and then, on the app bar, click Run as administrator.






Examples

Example 1: How to display help about the script

You can type the command Get-Help C:\Script\RemoveWindowsStoreApp.ps1 -Full to display the entire help file for this function, such as the syntax, parameters, or examples. This is shown in the following figure.






Example 2: How to remove Windows Store apps

To remove Windows Store apps, run the script directly, then choose the ID of each app that you want to remove.

In this example, I suppose that you decide to remove "Games" and "Maps". The Windows Store apps as shown below.






Run the script, and then choose the IDs for the "Games" and "Maps" apps (The IDs should be 4 and 17). Finally, confirm this action.






The apps have been removed!






Here are some code snippets for your reference.


PowerShell

foreach ($ID in $IDs)
{
#check id is in the range
if ($ID -ge 1 -and $ID -le $apps.count)
{
$ID--
#Remove each app
$AppName=$apps[$ID].name
if($PSCmdlet.ShouldProcess("$AppName"))
{
Remove-AppxPackage -Package $apps[$ID] -ErrorAction SilentlyContinue
if (-not(Get-AppxPackage -Name $AppName))
{
Write-host "$AppName has been removed successfully"
}
else
{
Write-Warning "Remove '$AppName' failed! This app is part of Windows and cannot be uninstalled on a per-user basis."
}
}
}
else
{
$errorMsg = $Messages.WrongID
$errorMsg = $errorMsg -replace "Placeholder01",$ID
$customError = PSCustomErrorRecord `
-ExceptionString $errorMsg `
-ErrorCategory NotSpecified -ErrorID 1 -TargetObject $pscmdlet
$pscmdlet.WriteError($customError)
}
}

Verified on the following platforms
Windows 10 Yes
Windows Server 2012 No
Windows Server 2012 R2 No
Windows Server 2008 R2 No
Windows Server 2008 No
Windows Server 2003 No
Windows 8 Yes
Windows 7 No
Windows Vista No
Windows XP No
Windows 2000 No
Continue below for the main download link.


Downloads Views Developer Last Update Version Size Type Rank
4,998 10,272 MSFT OneScript Team <img src="http://www.oldergeeks.com/downloads/gallery/thumbs/Remove Windows Store apps2_th.png"border="0"> Apr 24, 2017 - 11:56 1.0 383.8KB ZIP 5/5, out of 38 Votes.
File Tags
Remove  Windows  Store  Apps  Script  
      
Whoa! Slow down there, Speedy.
Kindly read this and then continue to download below.

Like seeing no ads? No misleading/fake download buttons?
We like it too! This site has been kept alive for 15 years
because of people just like you who download and donate.
No one is stopping you from downloading without donating
but the site runs on the "Honor System". If your momma
raised you to be honorable, make a donation and download
'til ya turn blue. Make your momma proud!

Thank you! -Randy & Deanna (The Older Geeks)
Missouri Ozarks, USA

Monthly operating costs = $750
Donations cover operating costs first
then are set aside for future upgrades and/or
handed-over to Deanna for new shoes.

Or

Or
Send a check payable to Home Computer Repair LLC, 208 E. Water St. Mount Vernon, MO 65712


Recent Super Donors ($50+)
Thanks, Mark
Thanks, Michael
Thanks, Russell
Thanks, Home Business Services Inc

Recent Donors
Thanks, Michael
Thanks, Douglas
Thanks, Tery
Thanks, Athar
Thanks, Louise
Thanks, John
Thanks, Richard
Thanks, Mark
Thanks, John
Thanks, Linda

→ Download Your File ←


Click to Rate File     Share it on Twitter →


OlderGeeks.com Copyright (c) 2024