I have a script that I want to add a button that opens the "edit environment variables" popup, and I have its GUID.  From a windows shortcut, I can do it like this:
 
GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}
	I tried to do it via RUN, but I get an error. 
	Here is my test code:
 
test()
Func test()
	Local $exe, $res, $err
	$exe = '"GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}"'
	$res = Run($exe)
	$err = @error
	ConsoleWrite("+++: $res = " & $res & ", $err = " & $err & @CRLF)
EndFunc   ;==>test