return $result[$k]; if (3 == DEBUG) return TRUE; if (1 == $gid) return TRUE; // 管理员有所有权限 if (!isset($grouplist[$gid])) return TRUE; $group = $grouplist[$gid]; $result[$k] = empty($group[$access]) ? FALSE : TRUE; return $result[$k]; } // 从缓存中读取 forum_list 数据 function group_list_cache() { global $conf; if ('mysql' == $conf['cache']['type']) { $grouplist = group_get(); } else { $grouplist = cache_get('grouplist'); if (NULL === $grouplist || FALSE === $grouplist) { $grouplist = group_find(); cache_set('grouplist', $grouplist); } } return $grouplist; } // 更新 forumlist 缓存 function group_list_cache_delete() { global $conf; $r = 'mysql' == $conf['cache']['type'] ? group_delete_cache() : cache_delete('grouplist'); return $r; } //--------------------------kv + cache-------------------------- $g_grouplist = FALSE; function group_get() { global $g_grouplist; FALSE === $g_grouplist AND $g_grouplist = website_get('grouplist'); if (empty($g_grouplist)) { $g_grouplist = group_find(); $g_grouplist AND group_set($g_grouplist); } return $g_grouplist; } function group_set($val) { global $g_grouplist; $g_grouplist = $val; return website_set('grouplist', $g_grouplist); } function group_delete_cache() { website_set('grouplist', ''); return TRUE; } ?>Windows 10 蓝牙管理页面"添加蓝牙或其他设备"选项点击无响应的解决方案
最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Windows 10 蓝牙管理页面"添加蓝牙或其他设备"选项点击无响应的解决方案

运维笔记admin33浏览0评论

解决方案1(简单,但不解决根本问题)

通过“控制面板→设备和打印机→添加设备”进行添加。

解决方案2:

造成这种现象的原因应该是因为启用了 Administrator 账户,在其它 UWP 应用中,都有可能会出现类似问题。


打开 组策略,在“计算机配置”→“Windows 设置”→“安全设置”→“本地策略”→“安全选项”中,找到“用户账户控制:用于内置管理员账户的管理员批准模式”,将其设为“启用”,重新注销登录,即可生效。

 

来源:http://bbs.pcbeta/forum.php?mod=viewthread&tid=1758398

转载于:https://wwwblogs/xwgli/p/10862642.html

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论