Skip to main content

remotely enable remote desktop connection


To enable windows remote desktop connection all you need to do is to follow the simple step by step below :

Requirements :
User with administrator privilege on remote computer (If you’re a windows domain administrator then it won’t be a problem)
Step by step :
- Start > Run > type in “regedit” (without quotes) > press Enter
- File > Connect Network Registry
- Insert the computer name or IP address of the remote computer
- Go to [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server]
- Find the key “fDenyTSConnections” and change the value to 0

Comments

Popular posts from this blog

Installing Nagios 4 on Ubuntu 14 04 LTS

Create a list of local administrators with PowerShell

1.        Create folder :    C:\Temp 2.        Save a text file with the name servers.txt and add server names 3.        Create a .PS1 file with the name “ Get-LocalGroupMembers . ps1 ”with below PowerShell code: **********************************************************     [ CmdletBinding () ] Param (     [ Parameter (    ValueFromPipeline = $true ,                 ValueFromPipelineByPropertyName = $true                 ) ]     [ string []]     $ComputerName = $env:ComputerName ,     [ Parameter () ]     [ string ]     $LocalGroupName = "Administrators" ,   ...