set hosts=%windir%\system32\drivers\etc\hosts
set NEWLINE=^& echo.
attrib -r %hosts%

find /C /I "10.195.69.34 gmapp.samsungmobile.com" %hosts%
IF %ERRORLEVEL% NEQ 0 (
    echo. >>%hosts%:
    echo %NEWLINE%^10.195.69.34 gmapp.samsungmobile.com>>%hosts%:
)
END


exit