Hi I know this is an old post, but it is related to the previous users usage of Windows Apps, I have a Arcade Cabinet, and cannot seem to figure out a way to close the Windows Apps (Netflix, Plex, Pandora...) with my Esc key.
 
	I know a ahk will work but not sure how to implement it as there is no Emulator assigned to the Platform.
 
	Here is my ahk, I also tried to compile the ahk to a .exe and put it in my game under additional apps and run it after my main program, but that didnt work either, thanks for you help
 
	; This section closes Media Apps when pressing Escape
 
	$Esc:: 
	{ 
	    Send !{F4} 
	}