Windows Note

Direct Download Links

Windows Server 2016

Windows Server 2019

Windows Server 2022

Security

Disable Weak Cipher

Disable-TlsCipherSuite TLS_RSA_WITH_RC4_128_MD5
Disable-TlsCipherSuite TLS_RSA_WITH_RC4_128_SHA

Disable TLS 1.0, TLS 1.1

New-Item 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.0\Server' -Force | Out-Null
New-ItemProperty -path 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.0\Server' -name 'Enabled' -value '0' -PropertyType 'DWord' -Force | Out-Null
New-ItemProperty -path 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.0\Server' -name 'DisabledByDefault' -value 1 -PropertyType 'DWord' -Force | Out-Null
New-Item 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.0\Client' -Force | Out-Null
New-ItemProperty -path 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.0\Client' -name 'Enabled' -value '0' -PropertyType 'DWord' -Force | Out-Null
New-ItemProperty -path 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.0\Client' -name 'DisabledByDefault' -value 1 -PropertyType 'DWord' -Force | Out-Null
Write-Host 'TLS 1.0 has been disabled.'

New-Item 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.1\Server' -Force | Out-Null
New-ItemProperty -path 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.1\Server' -name 'Enabled' -value '0' -PropertyType 'DWord' -Force | Out-Null
New-ItemProperty -path 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.1\Server' -name 'DisabledByDefault' -value 1 -PropertyType 'DWord' -Force | Out-Null
New-Item 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.1\Client' -Force | Out-Null
New-ItemProperty -path 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.1\Client' -name 'Enabled' -value '0' -PropertyType 'DWord' -Force | Out-Null
New-ItemProperty -path 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.1\Client' -name 'DisabledByDefault' -value 1 -PropertyType 'DWord' -Force | Out-Null
Write-Host 'TLS 1.1 has been disabled.'

Shortcut

Ctrl + Shift + Esc : Task Manager

Win : Toggle Start
Win + A : Toggle Action Center
Win + B : Set focus on the notification area.
Win + C : Open Cortana.
Win + D : Toggle Desktop
Win + E : Open File Explorer
Win + F : Open Feedback Hub and take a screenshot.
Win + G : Open Game bar when a game is open.
Win + H : Start Dictation
Win + I : Open Settings
Win + K : Open Connect
Win + L : Lock Screen
Win + M : Minimize all windows
Win + Shift + M : Restore Minimized windows.
Win + O : Lock device orientation.
Win + P : Open Screen Project
Win + R : Open Run
Win + S : Open Search
Win + T : Set focus on apps of taskbar.
Win + V : Open Clipboard
Win + X : Open Quick Link
Win + . : Open emoji panel.
Win + ; : Open emoji panel.
Win + , : Temporarily peek at the desktop.
Win + # : Open No# of app of taskbar.
Win + Shift + # : Open new instance of No# of app of taskbar.
Win + Ctrl + # : Switch between windows of No# of app of taskbar.
Win + Alt + # : Open menu of No# of app of taskbar.
Win + Ctrl + Shift + # : Open No# of app of taskbar as administrator.
Win + Tab : Open task view.

Win + Shift + S : Take a screenshot of part of your screen.