2024年5月13日发(作者:)
HP修改机器的U盘启动,现在的机器默认win8以上的系统,都是支持UEFI引导的,
WIN7默认是不支持UEFI,所在要开启旧的引导模式。
一,开机反复的按F10进入BIOS设置
因为HP不同的机器不同的BIOS版本,界面可能不一样,但方法都差不多。
选择的安全
进入安全引导配置
// 加载安装风格 !is_file($path_file) and $path_file = APP_PATH . 'view/template/' . $theme . '/htm/' . $pre; } } // 风格不存在加载适配端 !is_file($path_file) and $path_file = APP_PATH . ($dir ? 'plugin/' . $dir . '/view/htm/' : 'view/htm/') . $default_pre; return $path_file; } // 依据模式返回适配文件 function theme_mode_pre($type = 0) { global $config; // 网站模式 $mode = $config['setting']['website_mode']; $pre = ''; // 首页文件前缀 if (1 == $mode) { // 门户模式 $pre .= 2 == $type ? 'portal_category.htm' : 'portal.htm'; } elseif (2 == $mode) { // 扁平模式 $pre .= 2 == $type ? 'flat_category.htm' : 'flat.htm'; } else { // 自定义模式 $pre .= 2 == $type ? 'index_category.htm' : 'index.htm'; } return $pre; } ?>
发布评论