Maybe it was removed by the site because it's a ps1.
The script below:
You probably know how to but in case you dont, just copy and paste this below in Notepadd++ and save as .ps1 file. My file name is Remove-ModernApps.ps1
## Get log path. Will log to Task Sequence log folder if the script is running in a Task Sequence
## Otherwise log to \windows\temp
$logPath = "C:\temp"
$logFile = "$logPath\$($myInvocation.MyCommand).log"
## Start logging
Start-Transcript $logFile
Write-Host "Logging to $logFile"
## Configure the apps to be removed
$AppsList = "Microsoft.3DBuilder",
"Microsoft.BingWeather",
"Microsoft.DesktopAppInstaller",
"Microsoft.GetHelp",
"Microsoft.Getstarted",
"Microsoft.Messaging",
"Microsoft.MicrosoftOfficeHub",
"Microsoft.MicrosoftSolitaireCollection",
"Microsoft.MicrosoftStickyNotes",
"Microsoft.Office.OneNote",
"Microsoft.OneConnect",
"Microsoft.People",
"Microsoft.Windows.PeopleExperienceHost",
"Microsoft.Print3D",
"Microsoft.SkypeApp",
"Microsoft.Wallet",
"Microsoft.WindowsAlarms",
"Microsoft.windowscommunicationsapps",
"Microsoft.WindowsFeedbackHub",
"Microsoft.WindowsMaps",
"Microsoft.WindowsSoundRecorder",
"Microsoft.Xbox.TCUI",
"Microsoft.XboxApp",
"Microsoft.XboxGameOverlay",
"Microsoft.XboxIdentityProvider",
"Microsoft.XboxSpeechToTextOverlay",
"Microsoft.ZuneMusic",
"Microsoft.ZuneVideo"
##Remove the Apps listed above or report if app not present
ForEach ($App in $AppsList)
{
$PackageFullName = (Get-AppxPackage $App).PackageFullName
$ProPackageFullName = (Get-AppxProvisionedPackage -Online | Where {$_.Displayname -eq $App}).PackageName
Write-Host $PackageFullName
Write-Host $ProPackageFullName
If ($PackageFullName)
{
Write-Verbose "Removing Package: $App"
Remove-AppxPackage -Package $PackageFullName
}
Else
{
Write-Host "Unable To Find Package: $App"
}
If ($ProPackageFullName)
{
Write-Verbose "Removing Provisioned Package: $ProPackageFullName"
Remove-AppxProvisionedPackage -Online -PackageName $ProPackageFullName
}
Else
{
Write-Verbose "Unable To Find Provisioned Package: $App"
}
}
## Stop logging
Stop-Transcript
##End