Skip to content

TheOS.IN

Stories, advice, and random thoughts from a thirty-something guy.

  • Home
  • About
  • Contact
TheOS.IN

Tag: server login

Windows Server: Change User Password Via Remote Desktop

Remote Desktop Protocol (RDP) is a multi-channel protocol that allows a user to connect to a computer running Microsoft Terminal Services. The server listens by default on TCP port 3389.

Under remote desktop you cannot hit CTRL+ALT+DEL to change password. However, there is another way to change passwords for users on Windows systems via RDP.

Remote Desktop Protocol (RDP) is a multi-channel protocol that allows a user to connect to a computer running Microsoft Terminal Services. The server listens by default on TCP port 3389.

Under remote desktop you can not hit CTRL+ALT+DEL to change password. However, there is another way to change passwords for users on Windows systems via RDP.

  1. Login into server over RDP session.
  2. Click on Start > Windows Security
  3. Click on the “Change Password” button.
  4. Now, enter your old password, then your new password twice in the respective fields.
  5. Finally, click “OK”

The password for your user should be changed.

Task: Change another user’s password on a Windows server

Login into the server with administrative level privileges

  1. Click on “Start”, “Administrative Tools”, then “Computer Management”
  2. Double-click on “Local Users and Groups”
  3. Click on “Users”
  4. Right-Click on the user you wish to change the password for > Click “Set Password” > Proceed
  5. Now, enter in the desired password twice > click “OK” to save the changes.
Author adminPosted on November 23, 2008Categories Windows ServerTags administrative level, administrative tools, change password button, change windows server 2000 password, change windows server 2003 password, change windows server 2008 password, computer management, passwords, remote desktop, server login, start windows, windows security, Windows Server, windows systems34 Comments on Windows Server: Change User Password Via Remote Desktop

Redhat login banner

You must be wondering how to change the system login banner. It is a very simple task. You login banner is stored in /etc/issue file. It is a text file which contains a message or system identification to be printed before the login prompt. Just open file in vi text editor:
# vi /etc/issue

Add/modify text as per your needs. In your /etc/issue file you can include certain escape codes to display the system name, date and time etc. All escape codes consist of a backslash (\) immediately followed
by one of the letters explained below:

  • d : Insert the current date.
  • s : Insert the system name, the name of the operating system.
  • l : Insert the name of the current tty line.
  • m : Insert the architecture identifier of the machine, eg. i486
  • n :Insert the nodename of the machine, also known as the hostname.
  • o :Insert the domainname of the machine.
  • r : Insert the release number of the OS, eg. 1.1.9.
  • t :Insert the current time.
  • u : Insert the number of current users logged in.
  • U : Insert the string “N user(s)” or “N users” where N is the number of current users logged in
  • v : Insert the version of the OS, eg. the build‐date etc.

An example of /etc/issue file with escape codes:

1) Open /etc/issue file
# vi /etc/issue

2) Append/edit/add following text to file:
This is \n.\o (\s \m \r) \t

3) Save file and exit to shell prompt.

My baaner printed before the login prompt as follows:

This is server.nixcraft.in (Linux i686 2.6.13-web100) 20:01:30

server login:

Please note that other Linux distrobution such as Debian also support /etc/issue file, so you can edit it to display login banner.

Author adminPosted on October 4, 2005December 27, 2007Categories Hakuna matataTags append, backslash, code 3, current date, current time, current users, linux i686, login banner, nautilus, please note that, server login, ssh server, sshd, system identification, tty lineLeave a comment on Redhat login banner

Categories

  • Home
  • About
  • Contact
TheOS.IN Privacy policy Proudly powered by WordPress