Launch a batch script as shell instead of explorer in Windows 10

Solution 1:

Keyboard Filter (WMI Provider Reference)

Supported only in Windows 10 Enterprise and Windows 10 Education

WEKF_PredefinedKey
This class blocks or unblocks predefined key combinations, such as Ctrl+Alt+Delete

class WEKF_PredefinedKey {
 [Static] uint32 Enable (
   [In] string PredefinedKey<
 );

 [Static] uint32 Disable (
   [In] string PredefinedKey
 );

 [Key] string Id;
 [Read, Write] boolean Enabled;
};

Source: Microsoft Docs