WINDOWS11 LTSC Enterprise UI조정

·

powershell -ExecutionPolicy Bypass -File .\Apply_filename.ps1

#작업표시줄 아이콘 왼쪽 정렬 0=왼쪽, 1=중앙
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" `
-Name "TaskbarAl" -Value 0

#작업표시줄 검색창 종류 변경 0=숨기기, 1=아이콘, 2=검색상자, 3=검색상자+텍스트
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Search" -Name "SearchboxTaskbarMode" -Value 1

#우클릭 전체 보이기
#New-Item -Path "HKCU:\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" -Force
#New-ItemProperty -Path "HKCU:\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" -Name "(default)" -Value "" -PropertyType String -Force

#Explorer 재시작 변경 적용
Stop-Process -Name explorer -Force
Start-Process explorer

답글 남기기

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