@echo off
chcp 65001 >nul
setlocal

set "PAGE_URL=https://lannetba.com.br/inicio.php"
set "DESKTOP=%USERPROFILE%\Desktop"
set "SHORTCUT=%DESKTOP%\Navegador Google.url"

echo [InternetShortcut]>"%SHORTCUT%"
echo URL=%PAGE_URL%>>"%SHORTCUT%"
echo IconIndex=0>>"%SHORTCUT%"

echo.
echo Atalho criado: %SHORTCUT%
echo Abrindo a pagina...
start "" "%PAGE_URL%"
timeout /t 3 >nul
