Remember to maintain security and privacy. Do not share sensitive information. Procedimento.com.br may make mistakes. Verify important information. Termo de Responsabilidade
Script:
@echo off
echo Removendo aplicativos pré-instalados do Windows...
REM Remover Clima
powershell -command "Get-AppxPackage *Microsoft.BingWeather* | Remove-AppxPackage"
REM Remover Dicas
powershell -command "Get-AppxPackage *Microsoft.Getstarted* | Remove-AppxPackage"
REM Remover Filmes e TV
powershell -command "Get-AppxPackage *Microsoft.ZuneVideo* | Remove-AppxPackage"
REM Remover Gravador de Voz
powershell -command "Get-AppxPackage *Microsoft.WindowsSoundRecorder* | Remove-AppxPackage"
REM Remover Hub de Comentários
powershell -command "Get-AppxPackage *Microsoft.WindowsFeedbackHub* | Remove-AppxPackage"
REM Remover Mapas
powershell -command "Get-AppxPackage *Microsoft.WindowsMaps* | Remove-AppxPackage"
REM Remover Mixed Reality Portal
powershell -command "Get-AppxPackage *Microsoft.MixedReality.Portal* | Remove-AppxPackage"
REM Remover Cortana
powershell -command "Get-AppxPackage *Microsoft.549981C3F5F10* | Remove-AppxPackage"
REM Remover Pessoas
powershell -command "Get-AppxPackage *Microsoft.People* | Remove-AppxPackage"
REM Remover Skype
powershell -command "Get-AppxPackage *Microsoft.SkypeApp* | Remove-AppxPackage"
REM Remover Notas Autoadesivas
powershell -command "Get-AppxPackage *Microsoft.MicrosoftStickyNotes* | Remove-AppxPackage"
REM Remover Obter Ajuda
powershell -command "Get-AppxPackage *Microsoft.GetHelp* | Remove-AppxPackage"
REM Remover Relógio Vincular ao Celular
powershell -command "Get-AppxPackage *Microsoft.WindowsAlarms* | Remove-AppxPackage"
echo Todos os aplicativos selecionados foram removidos.
pause
Como Executar o Script:
.bat
, por exemplo, remover_apps.bat
.