-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathset_console.ps1
35 lines (31 loc) · 1.31 KB
/
set_console.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# origin: http://stackoverflow.com/questions/2093680/changing-cmd-window-properties-programmatically
# alternative: https://msdn.microsoft.com/en-us/library/ms686033%28VS.85%29.aspx
# https://msdn.microsoft.com/en-us/library/windows/desktop/ms682087%28v=vs.85%29.aspx
# HKEY_CURRENT_USER\Console\%SystemRoot%_System32_cmd.exe
# HKEY_CURRENT_USER\Console\%SystemRoot%_System32_WindowsPowerShell_v1.0_powershell.exe
# HKEY_CURRENT_USER\Console\C:_Program Files (x86)_Midnight Commander_mc.exe
$root_path = 'HKCU:\Console'
$data = @{
'ScreenBufferSize' = 0x270f0050;
'FontSize' = 0x18000e;
'FontFamily' = 0x36;
'FontWeight' = 0x190;
'QuickEdit' = 0x1;
}
@(
'%SystemRoot%_System32_cmd.exe',
'%SystemRoot%_System32_WindowsPowerShell_v1.0_powershell.exe',
'C:_Program Files (x86)_Midnight Commander_mc.exe',
'%SystemRoot%_SysWOW64_cmd.exe',
'%SystemRoot%_SysWOW64_WindowsPowerShell_v1.0_powershell.exe'
) | ForEach-Object {
$console = $_
$pathCreate = $root_path + '\' + $conssole
if (-not (Test-Path $pathCreate)) {
New-Item -Path $pathCreate
}
New-ItemProperty -Path $pathCreate -Name 'FaceName' -Value 'Lucida Console' -Force | Out-Null
$data.Keys | ForEach-Object { $key = $_; $val = $data[$key]
New-ItemProperty -Path $pathCreate -Name $key -Value $data -PropertyType 'DWORD' -Force | Out-Null
}
}