Você precisa especificar o nome de usuário a ser usado. Se você mapear a unidade de rede no Explorer, há uma caixa de seleção para "Conectar usando credenciais diferentes". Se estiver usando o comando NET USE, adicione "/ user: computer \ user *". O alerta de asterisco para a senha.
Outras coisas para tentar incluir a verificação do firewall (as portas 138 e 139 precisam ser abertas). Seu laptop está configurado para o local da rede "Local" ou "Local de trabalho"? Você pode abrir o Network and Sharing Center
, clicar na conexão de rede no centro (pode dizer Público ) e escolher o novo local lá.
Editar com base nas edições do OP - Talvez seja necessário ativar e definir o Acesso remoto para ficar visível e ativado. Se você é um administrador, pode tentar executar um script como o abaixo como administrador no computador "servidor" - o laptop:
@echo off
netcfg.exe -c s -i MS_Server
netcfg.exe -c s -i MS_Pacer
netcfg.exe -c p -i MS_LLTDIO
netcfg.exe -c p -i MS_RSPNDR
netsh advfirewall firewall set rule group="windows management instrumentation (wmi)" new enable=yes
netsh advfirewall firewall set rule group="File and Printer Sharing" new enable=yes
netsh firewall set service remoteadmin enable
netsh advfirewall firewall set rule group="remote administration" new enable=yes
netsh advfirewall firewall add rule name="135TCP-In" dir=in action=allow protocol=TCP localport=135
netsh advfirewall firewall add rule name="135TCP-Out" dir=out action=allow protocol=TCP localport=135
netsh advfirewall firewall add rule name="135UDP-In" dir=in action=allow protocol=UDP localport=135
netsh advfirewall firewall add rule name="135UDP-Out" dir=out action=allow protocol=UDP localport=135
reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\system /v LocalAccountTokenFilterPolicy /t REG_DWORD /d 1 /f