Hydra_x001
Contributor
Ghost Spectre Windows 10 Pro 20H2 Superlite
You do not have permission to view the full content of this post. Log in or register now.
Download na 7days expire yung link
You do not have permission to view the full content of this post. Log in or register now.
Open notepad then copy and paste the script then
Save as .bat
echo off
echo Checking for apps that need upgrades...
winget upgrade > apps_to_upgrade.txt
rem Check if there are any apps to upgrade
for /f "tokens=*" %%i in (apps_to_upgrade.txt) do (
echo %%i
)
echo.
set /p userChoice=Do you want to upgrade these apps? (Yes/No):
rem Check the user's response
if /i "%userChoice%"=="Yes" (
echo Upgrading all applications...
winget upgrade --all
echo All applications have been upgraded.
) else (
echo No upgrades will be performed.
)
rem Clean up
del apps_to_upgrade.txt
pause
