I may need some notes for this . . .
I asked it how to write a bat file to open command prompt with admin privilege's.
It said
@echo off
runas /user:Administrator /savecred cmd
(How much Googling would be needed for the same answer?)
Or how about an AutoHotKey script?
Change pause to space when running COH only withing the COH program
;Replace the pause key with "space"
#IfWinActive ahk_exe RelicCOH.exe
Space::Send, {Pause}
#IfWinActive
. . . or
; Replace the pause key with the "space"
#IfWinActive ahk_exe YourProgram.exe
Pause::Space
#IfWinActive
To just replace pause with space in all programs
#space::pause