For those who wants silent ( unattended ) installation of OldNewExplorer. I found a way to do so, as below.
1st, import following registry ( change values as per your need ).
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Tihiy\OldNewExplorer]
"NoRibbon"=dword:00000001
"NoCaption"=dword:00000001
"NoIcon"=dword:00000000
"NoUpButton"=dword:00000001
"NavBarGlass"=dword:00000001
"IEButtons"=dword:00000000
2nd, register the OldNewExplorer32.dll OR OldNewExplorer64.dll ( depending on your OS ).
example,
cmd /c regsvr32 /s %systemdrive%\OldNewExplorer118\OldNewExplorer32.dll
Above command might not work because it required elevated privilage. So there is a little tool which can do it.
http://code.kliu.org/misc/elevate
And example with above tool is below.
elevate -c regsvr32 /s %systemdrive%\OldNewExplorer118\OldNewExplorer32.dll
Done!