Channel | Publish Date | Thumbnail & View Count | Actions |
---|---|---|---|
| 2021-08-23 13:58:38 | ![]() 6,144 Views |
00:00 Intro
00:10 Method 1 – Reset Microsoft Store
00:45 Method 2 – Run Set of Commands
01:47 Method 3 – Update Windows 10 Using Media Creation Toll
04:48 Closing
Commands Used In This Tutorial:
# Get all the provisioned packages
$Packages = (get-item ‘HKLM://Software//Microsoft//Windows//CurrentVersion//Appx//AppxAllUserStore//Applications’) | Get-ChildItem
# Filter the list if provided a filter
$PackageFilter = $args[0]
if ([string]::IsNullOrEmpty($PackageFilter))
{
echo /”No filter specified, attempting to re-register all provisioned apps./”
}
else
{
$Packages = $Packages | where {$_.Name -like $PackageFilter}
if ($Packages -eq $null)
{
echo /”No provisioned apps match the specified filter./”
exit
}
else
{
echo /”Registering the provisioned apps that match $PackageFilter/”
}
}
ForEach($Package in $Packages)
{
# get package name & path
$PackageName = $Package | Get-ItemProperty | Select-Object -ExpandProperty PSChildName
$PackagePath = [System.Environment]::ExpandEnvironmentVariables(($Package | Get-ItemProperty | Select-Object -ExpandProperty Path))
# register the package
echo /”Attempting to register package: $PackageName/”
Add-AppxPackage -register $PackagePath -DisableDevelopmentMode
}
#WindowsStore
#Windows10
#You’llNeedaNewApp
Thanks Friends For Watching This Video,
Please Subscribe and Support Our Channel.
Please take the opportunity to connect and share this video with your friends and family if you find it useful.