|
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 |
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 | |
5,429 | 11,160 | 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 | , out of 47 Votes. | |
File Tags | ||||||||
Remove Windows Store Apps Script |
Click to Rate File     Share it on Twitter → Tweet
|