Skip to content

Instantly share code, notes, and snippets.

@kai2nenobu
Last active February 10, 2019 01:29
Show Gist options
  • Save kai2nenobu/e95fec3547ebc596d9a59e15a865a0fe to your computer and use it in GitHub Desktop.
Save kai2nenobu/e95fec3547ebc596d9a59e15a865a0fe to your computer and use it in GitHub Desktop.
Boxstarterのパッケージ例
# エクスプローラーの設定
$ExplorerOptions = @{
# 表示詳細設定>ファイルおよびフォルダー>ファイルとフォルダーの表示
EnableShowHiddenFilesFoldersDrives=$true
# 表示詳細設定>ナビゲーションウィンドウ>開いているフォルダーまで展開
EnableExpandToOpenFolder=$false
# 全般>エクスプローラーで開く(クイックアクセス/PC)
EnableOpenFileExplorerToQuickAccess=$false
# 表示詳細設定>ファイルおよびフォルダー>登録されいている拡張子は表示しない
DisableShowFileExtensions=$false
# 全般>プライバシー>よく使うフォルダーをクイックアクセスに表示する
EnableShowFrequentFoldersInQuickAccess=$true
# 表示詳細設定>ファイルおよびフォルダー>タイトルバーに完全なパスを表示する
EnableShowFullPathInTitleBar=$false
# 表示詳細設定>ファイルおよびフォルダー>保護されたオペレーティングシステムファイルを表示しない
DisableShowProtectedOSFiles=$false
# 全般>プライバシー>最近使ったファイルをクイックアクセスに表示する
EnableShowRecentFilesInQuickAccess=$true
# リボンの表示
DisableShowRibbon=$true
}
Set-WindowsExplorerOptions @ExplorerOptions
choco install -y cmdermini
Write-Output 'MyPackage installation has completed.'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment