윈도우11 시작 메뉴를 윈도우 7 스타일로 변경하는 프로그램 Open-Shell 자동 다운로드 및 설치 명령어

윈도우11 시작 메뉴를 윈도우 7 스타일로 변경하는 프로그램 Open-Shell 자동 다운로드 및 설치 명령어 if (Get-Command winget -ErrorAction SilentlyContinue) { winget install -e --id Open-Shell.Open-Shell-Menu --silent --accept-package-agreements --accept-source-agreements } else { $r=irm https://api.github.com/repos/Open-Shell/Open-Shell-Menu/releases/latest; $u=($r.assets | ?{ $_.name -match 'OpenShellSetup_.*\.exe$' } | select -f 1 -ExpandProperty browser_download_url); iwr $u -OutFile "$env:TEMP\os.exe"; start-process "$env:TEMP\os.exe" -ArgumentList "/VERYSILENT /NORESTART" -Wait }; $exe = "$env:ProgramFiles(x86)\Open-Shell\StartMenu.exe"; if (!(Test-Path $exe)) { $exe = "$env:ProgramFiles\Open-Shell\StartMenu.exe" }; if (Test-Path $exe) { $xml="$env:TEMP\os.xml"; @('<?xml version="1.0"?>','<Settings component="StartMenu" version="4.4.196">',' <MenuStyle value="Win7"/>',' <SkinW7 value="Immersive"/>',' <EnableStartButton value="1"/>',' <SearchBox value="Normal"/>','</Settings>') | Out-File $xml -Encoding UTF8; & $exe -xml $xml }

공개 마지막 업데이트: 2025-11-12 01:29:44 AM