Tools/Linux_reinstall/Windows/SetupComplete.cmd

20 lines
482 B
Batchfile
Raw Normal View History

2023-07-02 15:12:01 +08:00
@echo off
set setmode=on
::Static IP
2023-07-04 23:50:23 +08:00
set staticip=IPv4
2023-07-02 15:12:01 +08:00
::Subnet
set subnetmask=actualIp4Subnet
::Gateway
2023-07-04 23:50:23 +08:00
set gateways=GATE
2023-07-02 15:12:01 +08:00
::Dns
set dnsserver1=ipDNS1
set dnsserver2=ipDNS2
echo;%setmode%|find "on"&&goto:enable||goto:disable
:enable
wmic nicconfig where ipenabled=true call enablestatic(%staticip%),(%subnetmask%)
wmic nicconfig where ipenabled=true call setgateways(%gateways%)
wmic nicconfig where ipenabled=true call setdnssuffixsearchorder(%dnsserver1%,%dnsserver2%)
:disable