Linux Programmer | RHCE | RHCSA

Search This Blog

Remote Desktop Session hangs on pressing Alt+Tab in Windows 7.

When I'm working remotely, I'll use Remote Desktop to log in to my Windows 7 PC at work. From the host machine, it's simple to alt+tab to switch to get to the remote machine.
alt+tab doesn't allow to use remote session when switch back to host machine to remote machine.

Solution:

Some combination of keys are solved this problem for me.

Ctrl+Alt+Pause/Break,
Alt+Home
Alt+Break
Ctrl+Alt+Home

No comments:

Post a Comment

Restrict SSH and Allow with SFTP

Create SFTP user:  ``` sudo useradd -M -s /sbin/nologin sftpuser sudo passwd sftpuser ``` Add below lines into, /etc/ssh/sshd_config ``` Mat...