public static SosController loadSettings(this SosController sosController)
        {
            var settings = new CdbSettings()
            {
                CdbPath = (clr.x64())
                                                                        ? @"C:\Program Files\Windows Kits\8.0\Debuggers\x64"
                                                                        : @"C:\Program Files (x86)\Windows Kits\8.0\Debuggers\x86"
            };

            sosController.field("settings", settings);
            sosController.setDefaultController();
            return(sosController);
        }
 public static CdbProcess cdbProcess(this SosController sosController)
 {
     return((CdbProcess)sosController.field("cdb"));
 }