Shouldnt that be
SendKeys "%^U"
??
What does Ctrl + Alt + U do?
Again - What does Ctrl + Alt + U do?
I don't think because
To specify that any combination of SHIFT, CTRL, and ALT should be held down while several other keys are pressed, enclose the code for those keys in parentheses
For example, to specify to hold down SHIFT while E and C are pressed, use "+(EC)". To specify to hold down SHIFT while E is pressed, followed by C without SHIFT, use "+EC".
I think yes because
So to keep shift pressed for both E and C you use the () ... but just to press Shift it is +E
As I see it CRTL ALT and SHIFT keep pressed untill a "normal" key is pressed
You could always use the Shell function to start the program instead of SendKeys which is not reliable.
How about that?
SendKeys "(%^U)"