-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSETUP_AUTO_START.bat
More file actions
25 lines (25 loc) Β· 1.34 KB
/
SETUP_AUTO_START.bat
File metadata and controls
25 lines (25 loc) Β· 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
@echo off
cls
echo.
echo βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
echo Setting Up Auto-Start
echo βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
echo.
echo This will configure the application to start automatically
echo when you log in to Windows.
echo.
echo IMPORTANT: This requires administrator privileges.
echo.
pause
echo.
echo Running setup script...
powershell -ExecutionPolicy Bypass -Command "Start-Process powershell -Verb RunAs -ArgumentList '-ExecutionPolicy Bypass -File \"%~dp0tools\setup_auto_start.ps1\"'"
echo.
echo βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
echo Setup Complete!
echo βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
echo.
echo The application will now start automatically when you log in.
echo Check the administrator window for progress.
echo.
pause