Network Reset | Flush Dns | Renew Ip
## 📋 What It Does
This utility executes the following network reset commands in sequence:
1. **`netsh winsock reset`** - Resets the Winsock Catalog
2. **`netsh int ip reset`** - Resets IP configuration
3. **`ipconfig /release`** - Releases current IP address
4. **`ipconfig /renew`** - Renews IP address from DHCP
5. **`ipconfig /flushdns`** - Flushes DNS resolver cache
## ⚠️ Important Notes
- **Administrator privileges required** - The scripts will automatically request elevation
## 🔧 When to Use
Use this utility when experiencing:
- Slow internet connectivity
- DNS resolution issues
- Network adapter problems
- IP configuration conflicts
- General network connectivity issues
## 🛡️ Safety
- All commands are standard Windows networking commands
- No permanent system changes (except network settings reset)
- Can be safely run multiple times
- Original network settings can be restored by your router/DHCP server
Manual Command:
open cmd as administrator
type these commands one by one
Commands :
netsh winsock reset
netsh int ip reset
ipconfig /release
ipconfig /renew
ipconfig /flushdns