Yıllar önce masa üstümde vardı şuan bulamıyorum nette. Bi kaçtane denk gelip denedim olmadı

Farklı lokasyonlarda çalışıyorum ve her lokasyonda ip farklı (Sabit ip) Tek tek girmek yerine bi scripte .bat dosyasına tıklayıp yapılyordu ama bulamadım yardımcı olabilecek olan var mı?
Direk istediğim ip geçmesi ve otomatik ip alması için 2 farklı script elinde olan varsa paylaşabilir mi?
Aşağıda bi script var ama tam nereye ne yazıcam bulamadım.


@ECHO offcls:startECHO.ECHO 1. Change Connection1 Static IP ECHO 2. Change Connection2 Static IP ECHO 3. Change Connection3 Static IP ECHO 4. Obtain an IP address automaticallyECHO 5. Exitset choice=set /p choice=Type the number to print text.if not '%choice%'=='' set choice=%choice:~0,1%if '%choice%'=='1' goto con1if '%choice%'=='2' goto con2if '%choice%'=='3' goto con3if '%choice%'=='4' goto autosearchif '%choice%'=='5' goto endECHO "%choice%" is not valid, try againECHO.goto start:con1ECHO Connecting Connection 1netsh interface ip set address "Local Area Connection" static 192.168.0.10 255.255.255.0 192.168.0.1 1goto end:con2ECHO Connecting Connection 2netsh interface ip set address "Local Area Connection1" static 192.168.0.10 255.255.255.0 192.168.0.1 1goto end:con3ECHO Connecting Connection 3netsh interface ip set address "Local Area Connection2" static 192.168.0.10 255.255.255.0 192.168.0.1 1goto end:autosearchECHO obtaining auto IPipconfig /renew "Local Area Connection"goto end:byeECHO BYEgoto end:end