Tools/Linux_reinstall/Windows/SetupComplete.cmd

20 lines
486 B
Batchfile
Raw Normal View History

2023-07-02 15:12:01 +08:00
@echo off
set setmode=on
::Static IP
set staticip=ipAddr
::Subnet
set subnetmask=actualIp4Subnet
::Gateway
set gateways=ipGate
::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