현재 보고 있는 폴더에 관계없이 Explorer의 모든 인스턴스가 항상 "세부 정보" 보기에서 열리도록 하고 싶습니다. 나는 이 기본값이 결코 변하지 않는다는 것을 좋아합니다. 원하는 경우 다른 보기를 선택할 수 있습니다. 파일 탐색기와 모든 "다른 이름으로 저장" 및 "열기" 대화 상자에 이 기능을 사용하고 싶습니다.
Windows 10이지만 가능하다면 Windows 7로 다시 전환하고 싶습니다.
답변1
이것파워셸아이콘 모드가 다음으로 설정된 로그인된 사용자에 대한 사용자 정의 보기 템플릿을 생성합니다.세부모든폴더 유형, 라이브러리 및 검색 결과를 포함합니다. 코드를 복사하여파워셸창문. <를 누르세요입력하다> 실행합니다.
$FolderTypes = 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderTypes'
cd 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer'
$CopySplat = @{
Destination = { $RelPath = ($_.PSParentPath -split 'Explorer\\')[-1]
If ( -not ( Test-Path $RelPath )) { md $RelPath -force | out-null }
$RelPath }
PassThru = $True
}
$spSplat = @{
Name = 'LogicalViewMode'
Value = 1
PassThru = $True
}
gci $FolderTypes -recurse | ? Property -contains 'LogicalViewMode' |
Copy-Item @CopySplat | Set-ItemProperty @spSplat | Remove-ItemProperty -Name IconSize -ea Silent
이는 저장된 보기나 다음에 의해 생성된 사용자 정의 템플릿을 재정의하지 않습니다.폴더에 적용. 저장된 보기를 삭제하려면:
$BagMRU = 'HKCU:\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\BagMRU'
$Bags = 'HKCU:\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags'
$BagMRU, $Bags | Remove-Item -recurse
gps explorer | spps
그리고 제거하려면폴더에 적용템플릿:
$Defaults = 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Streams\Defaults'
Remove-ItemProperty $Defaults * -ea silent
답변2
이 작업은 다음으로 수행할 수 있습니다.WinSetView.
자세한 내용은 설명서를 참조하세요.