当前位置:网站首页>What if win10 doesn't have a local group policy?
What if win10 doesn't have a local group policy?
2022-04-23 03:38:00 【Ling Xi】
Preface
Win10 The home edition does not have a local group policy editor , You can choose to upgrade to professional , You can also write a batch file to open the local group policy .
Windows Each version supports different functions :

How to add local group policy editor
- Right click desktop , Create a new text document
2. Copy the following code , Paste into document .
@echo off
pushd "%~dp0"
dir /b C:\Windows\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientExtensions-Package~3*.mum >List.txt
dir /b C:\Windows\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientTools-Package~3*.mum >>List.txt
for /f %%i in ('findstr /i . List.txt 2^>nul') do dism /online /norestart /add-package:"C:\Windows\servicing\Packages\%%i"
pause
As shown in the figure :

3. preservation
As shown in the figure or Ctrl+S The key to save .

4. Change file name , The extension must be changed to . b a t \color{red}{.bat} .bat
Modify as shown in the figure .
Are you sure you want to change ? Choice is .


5. Right click to run as administrator
Wait for the end of the operation to close .

In this way, it is added successfully , You can open the local group policy editor for operation .
Open the local group policy editor
win+R Input gpedit.msc

OK!!!!

版权声明
本文为[Ling Xi]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204220601418739.html
边栏推荐
- Design and implementation of redis (2): how to handle expired keys
- 2022 group programming ladder game simulation L2-4 Zhezhi game (25 points)
- 標識符、關鍵字、數據類型
- Visual programming - Experiment 2
- Three types of jump statements
- 2022 团体程序设计天梯赛 模拟赛 L1-7 矩阵列平移 (20 分)
- JS takes out the same elements in two arrays
- Seekbar custom style details
- Code forces round # 784 (DIV. 4) solution (First AK CF (XD)
- What if you encounter symbols you don't know in mathematical formulas
猜你喜欢

深度学习笔记(二)——激活函数原理与实现

Design and implementation of redis (2): how to handle expired keys

ROS series (IV): ROS communication mechanism series (3): parameter server

The principle and solution of not allowing pasting in an English Network

Opencv4 QR code recognition test

The art of concurrent programming (6): explain the principle of reentrantlock in detail

QT dynamic translation of Chinese and English languages

Unity knowledge points (ugui)

Detailed explanation on the use of annotation tool via (VGg image annotator) in mask RCNN

Now is the best time to empower industrial visual inspection with AI
随机推荐
2022 团体程序设计天梯赛 模拟赛 L2-1 盲盒包装流水线 (25 分)
Problem a: face recognition
Codeforces Round #784 (Div. 4)题解 (第一次AK cf (XD
Vs Studio modifie le langage C scanf et d'autres erreurs
Initial experience of talent plan learning camp: communication + adhering to the only way to learn open source collaborative courses
7-3 poly width
Identificateur, mot - clé, type de données
Websites frequented by old programmers (continuously updated)
Concepts of objects and classes
Basic knowledge of convolutional neural network
将编译安装的mysql加入PATH环境变量
Common exceptions
Several common methods of multithreading
STM32 advanced timer com event
Punch in: 4.23 C language chapter - (1) first knowledge of C language - (12) structure
Problem C: realize Joseph Ring with linked list
JS calculates the display date according to the time
Use of rotary selector wheelpicker
Design and implementation of redis (4): what is the event driver of redis
深度学习笔记(二)——激活函数原理与实现
2. Copy the following code , Paste into document .