### Show Network Interfaces ``` ipconfig ``` ### Release & Renew DHCP Lease #### PowerShell ```PowerShell ipconfig /release; ipconfig /renew ``` #### Command Prompt ```shell ipconfig /release && ipconfig /renew ``` ### Release & Renew DHCP Lease for Specific Interface Releases and renews any connection starting with `EL` #### PowerShell ```PowerShell ipconfig /release EL*; ipconfig /renew EL* ``` #### Command Prompt ```shell ipconfig /release && ipconfig /renew ```