I simply want to open a directory with EG. I've been doing it by having EG run Autohotkey scripts but the more I learn about EG the less I rely on AHK. Example, in AHK the command to open the c drive is,
Code: Select all
Run, c:Code: Select all
Run, c:Code: Select all
<?xml version="1.0" encoding="UTF-8" ?>
<EventGhost Version="1431">
<Macro Name="Start Explorer at root">
<Action>
System.Execute(u'C:\\WINDOWS\\explorer.exe', u'c:', 0, False, 2, u'')
</Action>
</Macro>
</EventGhost>
Code: Select all
<?xml version="1.0" encoding="UTF-8" ?>
<EventGhost Version="1431">
<Macro Name="Start Explorer at C:\x10">
<Action>
System.Execute(u'C:\\WINDOWS\\explorer.exe', u'c:\x10', 0, False, 2, u'')
</Action>
</Macro>
</EventGhost>
Code: Select all
"C:\Documents and Settings\Rich\Desktop"