Posts

Showing posts from February, 2021

Run command for remote desktop (RDP client)

Image
  Windows Commands, Batch files, Command prompt and PowerShell Run command for remote desktop (RDP client) by   SRINI The Run command for Windows Remote desktop application is  Mstsc Just open  Run  from start menu and type  mstsc  in the text box next to  open  and press enter. This command  mstsc  can be used from command line too. A system running Windows 7/Windows 10 allows only one remote desktop connection at a time, means only one remote user can work on it any time. A computer running Windows server edition can support remote sessions for multiple users at the same time. Mstsc command Every time we connect to the server it opens a new user session. To avoid this we can open a connection to the console. This allows us to login back to the same user session if we already have one. To do this we need to add  /console  switch to the  mstsc  command. mstsc /console This command can be run from command prompt o...