To add Windows Explorer, you need trustedinstaller privilege, open Powershell as admin:
Set-ExecutionPolicy Unrestricted CurrentUser;Set-ExecutionPolicy Unrestricted LocalMachine;install-module ntobjectmanager -Force;sc.exe start trustedinstaller;$p = Get-NtProcess TrustedInstaller.exe;Create Command Prompt with trustedinstaller privilege
import-module ntobjectmanager;sc.exe start trustedinstaller;$p = Get-NtProcess TrustedInstaller.exe;$proc = New-Win32Process commend.exe -CreationFlags NewConsole -ParentProcess $pIn the Command Prompt window, type
regedit /s <path>\Explorer.regNow you can make Explorer open .rar, .bz2, .7z, etc. If you had set 7-Zip or WinRAR as the default opener, you can undo the changes.
