MP3, WAV, Dry Stems, Wet Stems
:restore cls echo ---------------------------------------------- echo Restore Default Hosts File echo ---------------------------------------------- echo. echo WARNING: This will remove ALL custom entries. echo. set /p confirm="Are you sure? Type YES to continue: " if /i not "%confirm%"=="YES" ( echo Operation cancelled. pause goto menu )
echo. echo [SUCCESS] Hosts file restored to default. ipconfig /flushdns >nul pause goto menu
Save the code below as and Run as Administrator .
:: Create a temporary file without the line findstr /v /i /c:"%loopback% %site%" "%hosts%" > "%temp%\hosts.tmp" copy "%temp%\hosts.tmp" "%hosts%" >nul del "%temp%\hosts.tmp"
echo. echo [SUCCESS] %site% has been unblocked (if it was blocked). echo [INFO] Flushing DNS cache... ipconfig /flushdns >nul pause goto menu
:block cls echo ---------------------------------------------- echo Block a Website echo ---------------------------------------------- echo. set /p site="Enter website URL to block (e.g., www.facebook.com): " if "%site%"=="" ( echo No website entered. pause goto menu )
:restore cls echo ---------------------------------------------- echo Restore Default Hosts File echo ---------------------------------------------- echo. echo WARNING: This will remove ALL custom entries. echo. set /p confirm="Are you sure? Type YES to continue: " if /i not "%confirm%"=="YES" ( echo Operation cancelled. pause goto menu )
echo. echo [SUCCESS] Hosts file restored to default. ipconfig /flushdns >nul pause goto menu
Save the code below as and Run as Administrator .
:: Create a temporary file without the line findstr /v /i /c:"%loopback% %site%" "%hosts%" > "%temp%\hosts.tmp" copy "%temp%\hosts.tmp" "%hosts%" >nul del "%temp%\hosts.tmp"
echo. echo [SUCCESS] %site% has been unblocked (if it was blocked). echo [INFO] Flushing DNS cache... ipconfig /flushdns >nul pause goto menu
:block cls echo ---------------------------------------------- echo Block a Website echo ---------------------------------------------- echo. set /p site="Enter website URL to block (e.g., www.facebook.com): " if "%site%"=="" ( echo No website entered. pause goto menu )