pc如何打开组策略

We have shown you a lot of tips and tricks over the years that involve modifying Local Group Policy. If you would ever like to see all the Group Policy settings in effect on your PC, here’s how to do it.

多年来,我们向您展示了许多涉及修改本地组策略的提示和技巧。 如果您希望在PC上看到所有有效的组策略设置,请按以下步骤操作。

In the Windows world, Group Policy provides a way for network administrators to assign specific settings to groups of users or computers. Those settings then get applied whenever a user in the group logs in to a networked PC or whenever a PC in the group is started. Local Group Policy is a slightly more limited version that applies settings only to a local computer or users—or even a group of local users. We’ve featured a number of tricks here in the past that use Local Group Policy to change settings that you can’t change anywhere else—except by editing the Windows Registry. If you’re in the habit of changing Local Group Policy settings, you might find it useful to see all the changes you’ve made in one place, rather than digging through the Local Group Policy Editor.

在Windows世界中,组策略为网络管理员提供了一种将特定设置分配给用户或计算机组的方法。 然后,只要组中的用户登录到联网的PC或启动组中的PC,就会应用这些设置。 本地组策略是一个稍微受限制的版本,仅将设置应用于本地计算机或用户,甚至是本地用户组。 过去,我们这里有许多技巧,这些技巧使用本地组策略来更改您无法在其他任何地方更改的设置,除非编辑Windows注册表。 如果您习惯更改本地组策略设置,则可能会发现在一个地方查看所做的所有更改很有用,而不是通过本地组策略编辑器进行挖掘。

Note: Local Group Policy is only available in the Professional and Enterprise versions of Windows. If you’re using a Home edition, you won’t have access to the Local Group Policy Editor.

注意:本地组策略仅在Windows专业版和企业版中可用。 如果您使用的是家庭版,则您将无权访问“本地组策略编辑器”。

使用策略工具的结果集查看应用的策略 (View Applied Policies with the Resultant Set of Policy Tool)

The easiest way to see all the Group Policy settings you’ve applied to your PC or user account is by using the Resultant Set of Policy tool. It doesn’t show every last policy applied to your PC—for that you’ll need to use the Command Prompt, as we describe in the next section. However, it does show pretty much all the policies you will have set for regular use. And it provides a simple, graphical interface for browsing through the Group Policy settings currently in effect on your PC—whether those settings come from Group Policy or Local Group Policy.

查看已应用于PC或用户帐户的所有组策略设置的最简单方法是使用“策略的结果集”工具。 它不会显示应用到您PC的所有最后一个策略,因为您将需要使用命令提示符,如下一节所述。 但是,它确实显示了您将设置为常规使用的几乎所有策略。 它提供了一个简单的图形界面,用于浏览PC上当前有效的组策略设置-这些设置来自组策略还是本地组策略。

To open the tool, hit Start, type “rsop.msc,” and then click the resulting entry.

要打开该工具,请单击“开始”,键入“ rsop.msc”,然后单击结果条目。

The Resultant Set of Policy tool starts by scanning your system for applied Group Policy settings.

“策略的结果集”工具首先通过扫描系统中已应用的组策略设置来启动。

After it’s done scanning, the tool shows you a management console that looks very much like the Local Group Policy Editor—except that it only displays enabled settings along with a few unconfigured security settings.

扫描完成后,该工具将向您显示一个非常类似于“本地组策略编辑器”的管理控制台-区别在于它仅显示已启用的设置以及一些未配置的安全设置。

This makes it easy to browse through and see what policies are in effect. Note that you can’t use the Resultant Set of Policy tool to change any of these settings. You can double-click a setting to view details, but if you want to disable or make changes to a setting, you’ll have to use the Local Group Policy Editor.

这样可以轻松浏览并查看生效的策略。 请注意,您不能使用“策略结果集”工具来更改任何这些设置。 您可以双击设置以查看详细信息,但是如果要禁用或更改设置,则必须使用“本地组策略编辑器”。

使用命令提示符查看应用的策略 (View Applied Policies with the Command Prompt)

If you’re comfortable using the Command Prompt, it does provide a couple of advantages over using the Resultant Set of Policy tool. First, it can show every last policy in effect on your PC. Second, it will show some additional security information—like what security groups a user is part of or what privileges they have.

如果您对使用命令提示符感到满意,那么与使用“策略的结果集”工具相比,它确实提供了两个优点。 首先,它可以显示您的PC上有效的所有最新策略。 其次,它将显示一些其他安全信息,例如用户属于哪个安全组或他们具有哪些特权。

To do this, we’ll be using the gpresult command. You must specify a scope for the results, and valid scopes include “user” and “computer.” This means that to see all the policies in effect for the user and the PC, you’ll have to run the command twice.

为此,我们将使用gpresult命令。 您必须指定结果的范围,有效范围包括“用户”和“计算机”。 这意味着要查看对用户和PC有效的所有策略,您必须运行两次命令。

To view all the policies applied to the user account you’re currently logged in with, you would use the following command:

要查看应用于当前登录用户帐户的所有策略,请使用以下命令:

gpresult /Scope User /v

The /v parameter in that command specifies verbose results, so you’ll see everything. Scroll down a bit and you’ll see a section named “Resultant Set Of Policies for User,” which contains the information you’re after.

该命令中的/v参数指定了详细的结果,因此您将看到所有内容。 向下滚动一点,您将看到一个名为“用户的结果策略集”的部分,其中包含您所需要的信息。

If you’re looking for all policies applied to your Computer, all you need to do is change the scope:

如果要查找适用于您计算机的所有策略,则只需更改范围即可:

gpresult /Scope Computer /v

If you scroll down, you’ll see that there is now a Resultant Set Of Policies for Computer section.

如果向下滚动,您会看到现在有一​​个“计算机的结果策略集”部分。

And there are other things you can do with the gpresult command. For example, if you’d like to save the report instead of viewing it at the Command Prompt, you could switch out the /v parameter in either of those commands and instead use /x (for XML format) or /h (for HTML format). Of course, you could also just use the /v version of the command and pipe it to a text file, if you prefer.

您还可以使用gpresult命令执行其他操作。 例如,如果您想保存报告而不是在命令提示符处查看,可以在这两个命令中关闭/v参数,而使用/x (对于XML格式)或/h (对于HTML)格式)。 当然,如果愿意,您也可以只使用命令的/v版本并将其通过管道传输到文本文件。

翻译自: https://www.howtogeek.com/116184/how-to-see-which-group-policies-are-applied-to-your-pc-and-user-account/

pc如何打开组策略

pc如何打开组策略_如何查看哪些组策略应用于您的PC和用户帐户相关推荐

  1. 组策略 计算机 用户账户控制,Windows 10 (用户帐户控制组策略和注册表) - Microsoft 365 Security | Microsoft Docs...

    用户帐户控制组策略和注册表项设置 04/19/2017 本文内容 适用范围 Windows 10 Windows Server 2016 组策略设置 UAC 管理中心可以配置 10 个组策略 (用户帐 ...

  2. 如何查看计算机组策略,如何查看哪些组策略应用于您的PC和用户帐户 | MOS86

    多年来,我们向您展示了许多有关修改本地组策略的提示和技巧.如果您想要在PC上看到所有的组策略设置生效,那么这里是如何做的. 在Windows环境中,组策略为网络管理员提供了一种将特定设置分配给用户组或 ...

  3. c# 用户帐户临时文件夹_注册帐户,上传文件以供批准,以及查看和下载批准的文件

    c# 用户帐户临时文件夹 在你开始前 在本系列的第一部分中,您将学习基本PHP语法,形式和功能,以及如何通过PHP应用程序连接和使用MySQL或任何其他数据库. 关于本教程 本教程将引导您使用PHP构 ...

  4. linux批处理创建mysql用户_域用户和组帐户的管理之一次同时添加多个用户帐户篇...

    如果利用AD图形界面来创建大量用户帐户的话,将浪费很多时间用于重复操作相同的步骤.此时可以利用系统内置的工作csvde.exe.ldifde.exe.dsadd.exe等程序来节省创建用户帐户的时间. ...

  5. 计算机用户名密码策略,怎样修改用户帐户的密码本地安全策略怎么设置

    bomanma 答疑小能手 05-12 TA获得超过3779个赞 对于本地计算机 1. 打开本地安全设置. 2. 在控制台树中,单击"帐户锁定策略"(控制台树的位置为:安全设置/帐 ...

  6. 登录失败:用户帐户限制。可能的原因包括不允许空密码登录时间限制或强制的策略限制。

    方法一:在开始-运行-输入gpedit.msc,打开组策略,然后计算机配置-windows设置-本地策略-安全选项,在右边的倒数第三个选项就可以看到 帐户: 使用空白密码的本地帐户只允许进行控制台登录 ...

  7. 域用户帐户、组的管理

    一.项目背景 为了完成项目任务,设计一小型网络,拥有3台计算机,这3台计算机组成一个基于工作组的小型网络,现在需要对这些计算机进行配置,以满足下列要求: 1.公司内有5位员工,需要使用这些计算机,每位 ...

  8. 在设置iis windows身份验证,出错:登录失败:用户帐户限制。可能的原因包括不允许空密码登录时间限制或强制的策略限制。

    方法一:在开始-运行-输入gpedit.msc,打开组策略,然后计算机配置-windows设置-本地策略-安全选项,在右边的倒数第三个选项就可以看到 帐户: 使用空白密码的本地帐户只允许进行控制台登录 ...

  9. Win11的两个实用技巧系列之查看所有用户帐户、应用冻结

    目录 如何在Win11上查看所有用户帐户?Win11上查看所有用户帐户四种方法 方法一:在 Windows 11 的"设置"中检查所有帐户 方法二:在 Windows 11 的计算 ...

最新文章

  1. 根据输入时间段备份压缩日志文件
  2. VTK序列图像的读取
  3. JavaScript实现递归楼梯问题(带记忆的递归解决方案)算法(附完整源码)
  4. 小程序triggerevent 传参_微信小程序——无限递归的层次列表
  5. java 如何排查内存溢出_java 内存溢出排查
  6. innodb--聚簇索引真实案列排序问题
  7. 【LOJ10034】图书管理(哈希表,字符串)
  8. 【Luogu3478】【POI2008】STA-Station(动态规划)
  9. 06.Android之消息机制问题
  10. 计算机为啥启用不了网络发现,Windows7系统无法启用网络发现怎么解决?
  11. graphpad两组t检验_Graphpad Prism如何科学地选择统计学方法
  12. android修改文件名,android 修改文件名称
  13. 电脑重装系统简单小白教程
  14. android中倒计时计算器,死亡计算器生命倒计时下载-死亡计算器生命倒计时软件下载 v8.8.0_5577安卓网...
  15. Unity 径向模糊 简易解决方案
  16. nginx proxy_pass规则
  17. 数字图像处理——图像采集和预处理
  18. 学会如何从皮肤看身体状况
  19. com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Access denied for user 'chong'@'localhost
  20. Oracle常用函数汇总记录

热门文章

  1. Dynpro PBO和PAI
  2. Fastapi系列-同步和异步相互转换处理实践
  3. 企业微信(二)——请在企业微信客户端打开链接
  4. 【MySQL专题】MySQL中一条SQL是如何被执行的?---来自于令狐的独孤九剑
  5. OSChina 程序员节乱弹 ——我们程序员的属性
  6. 什么是批处理,批处理与流处理的对比
  7. P2P平台借款人与债权人的匹配原理
  8. 一文理解分布式服务架构下的混沌工程实践(含PPT)
  9. 从个人投资者角度看技术分析与基本分析
  10. 数据分析实战1:淘宝数据分析