set RMT=N
for /f "Tokens=*" %%a in ('net user The_sAMAccountName /domain^|find /i "User profile"^|find "\\"') do set RMT=Y
@echo %RMT%
You could use Adfind.exe freeware (tip 5898 » Freeware ADFind. in the 'Tips & Tricks' at http://www.jsifaq.com)
set RMT=N
for /f "Tokens=*" %%a in ('adfind -default -nodn -nolabel -f "&(objectcategory=person)(sAMAccountName=The_sAMAccountName)(profilePath=\\*)" profilePath^|find "\\"') do set RTM=Y
@echo %RMT%