윈도우 10, 윈도우 2016 Server 기반의 OS에 RDP(리모트데스크탑)로 연결 시,

리모트 OS의 Taskbar(작업관리자)가 사라지는 현상을 조치하는 방법이다.

단순히 작업관리자 자동 숨기기와 같은 현상이 아니다. 재부팅/로그아웃 또는 Windows 탐색기 재시작 전에는 해결이 안된다.

 

작업 순서

  1. Restart Windows Explorer process.
  2. Clear cache for multiple processes.
  3. Reinstall the Shell Experience components.
  4. Update, Uninstall or Rollback the Display driver

 

1. Restart Windows Explorer process.

1) Ctrl - Alt + End 키를 동시에 누름.

2) 작업관리자 실행

3) 프로세스 리스트의 'Windows 탐색기' 프로세스에 마우스 우측버튼 누른 후 '다시 시작' 클릭

위와 같이 Windows 탐색기 재시작하면 태스크바(작업표시줄)이 다시 나타날 것이다.

 

2. Clear cache for multiple processes.

메모장을 열어 아래 내용을 넣고 CacheClearTWC.bat 파일 이름으로 바탕화면에 저장

@echo off

taskkill /f /im explorer.exe

taskkill /f /im shellexperiencehost.exe

timeout /t 3 /NOBREAK > nul

del %localappdata%\Packages\Microsoft.Windows.ShellExperienceHost_cw5n1h2txyewy\TempState\* /q

timeout /t 2 /NOBREAK > nul

start explorer

@echo on

나중에 taskbar가 사라지는 현상 시 위 bat 파일을 실행하여 Windows 탐색기를 재시작하여 손쉽게 나타나도록 해줌.

 

3. Reinstall the Shell Experience components 

PowerShell을 관리자 계정으로 실행하여 아래와 같이 입력

Get-appxpackage -all *shellexperience* -packagetype bundle |% {add-appxpackage -register -disabledevelopmentmode ($_.installlocation + “\appxmetadata\appxbundlemanifest.xml”)}

 

4. Update, Uninstall or Rollback the Display driver

원격의 Windows PC의 그래픽 드라이버 업데이트 또는 삭제/롤백

* 이것은 위 1~3번 과정으로 해결되지 않을 경우 시행

Taskbar not visible in 10 RDP(Remote Desktop) on Windows 10

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다