반응형
Windows 10 Automatically hide the taskbar in desktop mode
Start > Windows Settings > Personalization > Taskbar
윈도우10 데스크톱 모드에서 작업 표시줄 자동 숨기기
시작 > Windows 설정 > 개인 설정 > 작업 표시줄
CMD 명령 스크립트
작업 표시줄의 위치를 화면 하단으로 설정합니다. (기본적으로 v[8]=3은 하단을 의미함)
powershell -command "&{$p='HKCU:SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\StuckRects3';$v=(Get-ItemProperty -Path $p).Settings;$v[8]=3;&Set-ItemProperty -Path $p -Name Settings -Value $v;&Stop-Process -f -ProcessName explorer}"
- powershell -command: PowerShell 명령어를 실행하기 위한 명령줄 도구입니다.
- $p='HKCU:SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\StuckRects3': $p 변수에 레지스트리 경로를 저장합니다. 이 경로는 작업 표시줄과 관련된 설정을 저장하는 위치입니다.
- $v=(Get-ItemProperty -Path $p).Settings: $v 변수에 해당 경로에서 Settings 값을 가져와 저장합니다.
- $v[8]=3: $v[8]에 3을 설정하여 작업 표시줄의 위치를 화면 하단으로 지정합니다.
- Set-ItemProperty -Path $p -Name Settings -Value $v: 수정된 $v 값을 레지스트리에 다시 설정합니다.
- Stop-Process -f -ProcessName explorer: explorer.exe 프로세스를 강제 종료하여 변경 사항을 즉시 적용합니다.
반응형
배치 파일 스크립트 (Windows Batch Script Example)
윈도우10 시작 > Windows 설정 > 개인 설정 > 작업 표시줄
>> 데스크톱 모드에서 작업 표시줄 자동 숨기기 : 켬 (On)
@echo off
REM Windows 10 Automatically hide the taskbar in desktop mode -On
powershell -command "&{$p='HKCU:SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\StuckRects3';$v=(Get-ItemProperty -Path $p).Settings;$v[8]=3;&Set-ItemProperty -Path $p -Name Settings -Value $v;&Stop-Process -f -ProcessName explorer}"
pause
exit
배치 파일 (Batch File) 만들기
- 메모장 또는 다른 텍스트 편집기를 엽니다.
- 위의 코드를 복사하여 텍스트 편집기에 붙여넣습니다.
- 파일을 저장합니다. 예를 들어, Taskbar_Hide.bat 로 저장합니다. 파일 확장자는 .bat로 지정해야 합니다.
- 배치 파일을 관리자 권한으로 실행합니다. (배치 파일을 우클릭한 후 "관리자 권한으로 실행"을 선택합니다.)
<배치 파일 테스트 영상>
영상보기 : https://youtu.be/y-_3D50f49s
마이크로소프트 지원 URL (Link to Microsoft Support Web Page)
Policy CSP - ADMX_Taskbar
https://learn.microsoft.com/en-us/windows/client-management/mdm/policy-csp-admx-taskbar
윈도우 설정 참고 사이트 URL (Reference site URL for Windows settings)
Turn On or Off Auto-hide Taskbar in Desktop Mode in Windows 10
https://www.tenforums.com/tutorials/23817-turn-off-auto-hide-taskbar-desktop-mode-windows-10-a.html
- E N D -
<소프트엑스 XTRM 추천영상>
^^*
반응형
댓글