작업 표시 줄 설정을 Windows 기본값으로 다시 설정하는 방법

작업 표시 줄 설정이 손상되면 자동 숨기기, 아이콘 크기 또는 도구 모음 환경 설정과 같은 사용자 지정 내용이 유지되지 않을 수 있습니다. 또한 경우에 따라 작업 표시 줄이 특정 위치에 고정되지 않을 수도 있습니다. 이 게시물에는 사용자 계정의 작업 표시 줄 구성을 기본값으로 재설정하는 vbscript가 있습니다.

그림 1 : 작업 표시 줄 설정이 손상되어 아래쪽에 간격이 생겼습니다.

작업 표시 줄 설정 재설정

참고 :이 스크립트는 고정 된 작업 표시 줄 바로 가기를 지우고 작업 표시 줄에 추가 된 모든 도구 모음을 제거합니다. 다시 추가 할 수 있습니다. 이 스크립트는 Windows Vista, 7, 8 및 10에서 사용할 수 있습니다.

taskbar_reset.zip을 다운로드하고 압축을 푼 후 동봉 된 스크립트 파일을 폴더로 추출하십시오. 스크립트 파일 (taskbar_reset.vbs)을 두 번 클릭하여 실행하십시오.

계속하려면 예를 클릭하십시오. 약 5 초 정도 기다리십시오. 스크립트가 탐색기를 다시 시작하고 작업 표시 줄 환경 설정을 기본값으로 재설정합니다.

스크립트 내용

'----------------------------------------------------------------------------- 'Resets the Taskbar configuration 'This script can be used in Windows Vista, 7, 8 and 10. '© 2016 Ramesh Srinivasan 'Created on March 24, 2016 '//www.winhelponline.com/blog '----------------------------------------------------------------------------- Set WshShell = WScript.CreateObject("WScript.Shell") strRegPath = "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\" strkey0 = "HKCU\Software\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\TrayNotify\" strkey1 = strRegPath & "StuckRects2\" strkey2 = strRegPath & "StuckRects3\" strkey3 = strRegPath & "Taskband\" strkey4 = strRegPath & "Streams\Desktop\TaskbarWinXP" sMsgTitle = "Taskbar Settings Reset" sMsgCompleted = "Taskbar settings have been reset." ExitExplorerShell WScript.Sleep(3000) ClearTaskbarSettings WScript.Sleep(2000) StartExplorerShell Sub ExitExplorerShell() strmsg = "Explorer Shell will be terminated now. Click Yes to continue." rtnStatus = MsgBox (strmsg, vbYesNo, sMsgTitle) If rtnStatus = vbYes Then For Each Process in GetObject("winmgmts:"). _ ExecQuery ("select * from Win32_Process where name="explorer.exe"") Process.terminate(1) Next ElseIf rtnStatus = vbNo Then WScript.Quit End If End Sub Sub StartExplorerShell() WshShell.Run "explorer.exe" strWelcome = "For more tips and articles on Windows, visit us at:" & Chr(10) & Chr(10) & vbtab & "//www.winhelponline.com/blog" MsgBox "Completed!" & Chr(10) & Chr(10) & strWelcome & Chr(10), 64, sMsgCompleted End Sub Sub ClearTaskbarSettings() On Error resume Next WshShell.Regdelete strkey0 & "IconStreams" WshShell.Regdelete strkey0 & "PastIconsStream" WshShell.Regdelete strkey1 WshShell.Regdelete strkey2 WshShell.Regdelete strkey3 WshShell.Regdelete strkey4 On Error goto 0 End Sub 

이 스크립트가 구성을 완전히 재설정하여 작업 표시 줄 문제를 해결했으면합니다. 이제 아이콘을 다시 고정하기 만하면됩니다. 작업 표시 줄에 추가 도구 모음을 추가 한 경우 다시 추가해야합니다.

관련 기사 : 작업 표시 줄 아이콘의 하단에 나타나는 간격을 수정하는 방법?

관련 기사