User Tools

Site Tools


test

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
test [2026/04/14 19:58] apereztest [2026/04/14 22:56] (current) aperez
Line 115: Line 115:
   REM Verificar que la clave fue eliminada   REM Verificar que la clave fue eliminada
   reg query "HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server\RCM\GracePeriod"   reg query "HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server\RCM\GracePeriod"
 +  
 +  
 +
 +
 +
 +  reg add "HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f
 +  reg add "HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server" /v fSingleSessionPerUser /t REG_DWORD /d 0 /f
 +  reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v AllowMultipleTSSessions /t REG_DWORD /d 1   /f
 +  
 +  net stop TermService /y
 +  net start TermService
 +  
 +  netstat -an | findstr "3389"
 +  
 +  
 +  reg add "HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp" /v PortNumber /t REG_DWORD /d   3389 /f
 +  reg add "HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp" /v fLogonDisabled /t   REG_DWORD /d 0 /f
 +  reg add "HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp" /v MaxInstanceCount /t   REG_DWORD /d 4294967295 /f
 +  
 +  net stop TermService /y
 +  net start TermService
 +  
 +  netstat -an | findstr "3389"
 +
 +  
 +  REM Verificar estado del firewall
 +  netsh advfirewall show allprofiles state
 +  
 +  REM Desactivar completamente
 +  netsh advfirewall set allprofiles state off
 +  
 +  REM Verificar
 +  netsh advfirewall show allprofiles state
 +  
 +  
 +
 +
 +  REM Descargar QEMU Guest Agent
 +  powershell -Command "Invoke-WebRequest -Uri 'https://fedorapeople.org/groups/virt/virtio-win/direct-  downloads/stable-virtio/virtio-win-guest-tools.exe' -OutFile 'C:\qemu-guest-tools.exe'"
 +  
 +  REM Instalar
 +  C:\qemu-guest-tools.exe /S
 +  
 +
 +
 +  powershell -Command "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-  WebRequest -Uri 'https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/stable-virtio/virtio-win-guest-  tools.exe' -OutFile 'C:\qemu-guest-tools.exe'"
test.1776196726.txt.gz · Last modified: by aperez

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki