This repository has been archived by the owner on Oct 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
hosts.bat
57 lines (43 loc) · 1.38 KB
/
hosts.bat
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
@echo off
:: BatchGotAdmin
:-------------------------------------
REM --> Check for permissions
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
REM --> If error flag set, we do not have admin.
if '%errorlevel%' NEQ '0' (
echo Requesting administrative privileges...
goto UACPrompt
) else ( goto gotAdmin )
:UACPrompt
echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
echo UAC.ShellExecute "%~s0", "", "", "runas", 1 >> "%temp%\getadmin.vbs"
"%temp%\getadmin.vbs"
exit /B
:gotAdmin
if exist "%temp%\getadmin.vbs" ( del "%temp%\getadmin.vbs" )
pushd "%CD%"
CD /D "%~dp0"
:--------------------------------------
setlocal
:: Hardcoded IP address and hostname
set "ip1=172.0.0.1"
set "hostname1=sae.local"
set "ip2=172.0.0.1"
set "hostname2=pgadmin.sae.local"
set "ip3=172.0.0.1"
set "hostname3=api.sae.local"
:: The location of the hosts file
set "hosts=%windir%\System32\drivers\etc\hosts"
:: Create a temporary file
set "tempfile=%temp%\temp.txt"
:: Add the new entries to the temporary file
echo %ip1% %hostname1% > "%tempfile%"
echo %ip2% %hostname2% > "%tempfile%"
echo %ip3% %hostname3% > "%tempfile%"
:: Append the current hosts file to the temporary file
type "%hosts%" >> "%tempfile%"
:: Replace the hosts file with the temporary file
copy /y "%tempfile%" "%hosts%"
:: Clean up
del "%tempfile%"
endlocal