当前位置:网站首页>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
边栏推荐
- 变量、常量、运算符
- JS changes the words separated by dashes into camel style
- If statement format flow
- Raspberry pie 3B logs into the wired end of Ruijie campus network through mentohust, creates WiFi (open hotspot) for other devices, and realizes self startup at the same time
- Section 2 map and structure in Chapter 6
- ROS series (IV): ROS communication mechanism series (5): Service Communication Practice
- Seekbar custom style details
- ROS series (III): introduction to ROS architecture
- 深度学习笔记(二)——激活函数原理与实现
- Applet - more than two pieces of folding and expansion logic
猜你喜欢

51 single chip microcomputer: D / a digital to analog conversion experiment

Deep learning notes (II) -- principle and implementation of activation function

Paddlepaddle model to onnx

7-1 introduction to finance

A sword is a sword. There is no difference between a wooden sword and a copper sword

Wechat applet cloud database value assignment to array error

Problem a: face recognition

2022 团体程序设计天梯赛 模拟赛 1-8 均是素数 (20 分)

打卡:4.22 C语言篇 -(1)初识C语言 - (11)指针

2022 group programming ladder simulation match 1-8 are prime numbers (20 points)
随机推荐
Visual programming - Experiment 1
Wechat applet cloud database value assignment to array error
Abstract classes, interfaces and common keywords
Translation of l1-7 matrix columns in 2022 group programming ladder Simulation Competition (20 points)
A sword is a sword. There is no difference between a wooden sword and a copper sword
Section 2 map and structure in Chapter 6
Chapter VI, Section III pointer
2021-08-11
将编译安装的mysql加入PATH环境变量
Alphafpld upgrade alphafold multimer
JS changes the words separated by dashes into camel style
ROS series (4): ROS communication mechanism series (4): topic communication practice
7-1 introduction to finance
Opencv4 QR code recognition test
QT uses drag and drop picture to control and mouse to move picture
Deep learning notes (II) -- principle and implementation of activation function
Talent Plan 学习营初体验:交流+坚持 开源协作课程学习的不二路径
C-11 problem I: find balloon
Websites frequented by old programmers (continuously updated)
Application and definition of interface
2. Copy the following code , Paste into document .