Comments on: Fix Gpedit.msc Not Found In Windows 10/Windows 11 https://www.itechtics.com/easily-enable-group-policy-editor-gpedit-msc-in-windows-10-home-edition/ Making Technology Accessible Wed, 22 Feb 2023 19:54:29 +0000 hourly 1 https://wordpress.org/?v=6.4.1 By: Frederic https://www.itechtics.com/easily-enable-group-policy-editor-gpedit-msc-in-windows-10-home-edition/#comment-387855 Wed, 22 Feb 2023 19:54:29 +0000 https://www.itechtics.com?p=26355&preview=true&preview_id=26355#comment-387855 In reply to Usman Khurshid.

Hi Usman, i ran the command and the group policy installed well. However, i wanted to remove the group policy, essentially reverse the command. What command should i use?

]]>
By: Alex Zelenov https://www.itechtics.com/easily-enable-group-policy-editor-gpedit-msc-in-windows-10-home-edition/#comment-237051 Tue, 12 Jan 2021 23:42:36 +0000 https://www.itechtics.com?p=26355&preview=true&preview_id=26355#comment-237051 The script worked perfectly, many others’ assumed Intel processor, only this one worked on my AMD.

]]>
By: Karthik B https://www.itechtics.com/easily-enable-group-policy-editor-gpedit-msc-in-windows-10-home-edition/#comment-170573 Sat, 27 Jun 2020 17:23:05 +0000 https://www.itechtics.com?p=26355&preview=true&preview_id=26355#comment-170573 Ran the bat file as administrator multiple times. Getting the below error.

Processing 1 of 1 – Adding package Microsoft-Windows-GroupPolicy-ClientTools-Pac
kage~31bf3856ad364e35~amd64~~6.3.9600.16384
[================== 32.4% ]
An error occurred – Microsoft-Windows-GroupPolicy-ClientTools-Package Error: 0x8
0073701

Error: 14081

The referenced assembly could not be found.

]]>
By: Didier Prévost https://www.itechtics.com/easily-enable-group-policy-editor-gpedit-msc-in-windows-10-home-edition/#comment-158429 Sun, 17 May 2020 20:37:41 +0000 https://www.itechtics.com?p=26355&preview=true&preview_id=26355#comment-158429 In reply to Usman Khurshid.

i have runned the batch file in administrator and i not have error its only gpedit.msc not can read the local group policy

]]>
By: Usman Khurshid https://www.itechtics.com/easily-enable-group-policy-editor-gpedit-msc-in-windows-10-home-edition/#comment-158259 Sat, 16 May 2020 19:26:09 +0000 https://www.itechtics.com?p=26355&preview=true&preview_id=26355#comment-158259 In reply to Didier Prévost.

Can you share the complete error message that you’re getting? Are you running the batch file as administrator?

]]>
By: Usman Khurshid https://www.itechtics.com/easily-enable-group-policy-editor-gpedit-msc-in-windows-10-home-edition/#comment-158257 Sat, 16 May 2020 19:25:04 +0000 https://www.itechtics.com?p=26355&preview=true&preview_id=26355#comment-158257 In reply to DAVID REABE.

The best practice is to backup your system before every major change. But I think this is not a major change. This script is is used to find and enable the hidden features of Windows 10. Here’s the contents of the batch file. If you understand the commands, you’ll see there’s nothing to worry about.

@echo off pushd "%~dp0" dir /b %SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientExtensions-Package~3*.mum >List.txt dir /b %SystemRoot%\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:"%SystemRoot%\servicing\Packages\%%i" pause

]]>
By: DAVID REABE https://www.itechtics.com/easily-enable-group-policy-editor-gpedit-msc-in-windows-10-home-edition/#comment-158227 Sat, 16 May 2020 16:31:59 +0000 https://www.itechtics.com?p=26355&preview=true&preview_id=26355#comment-158227 In reply to Usman Khurshid.

Do you have to back up your computer first before running this batch file? I got the same warning as Jim,plus I saw on another site,that said to back everything up.

]]>
By: Didier Prévost https://www.itechtics.com/easily-enable-group-policy-editor-gpedit-msc-in-windows-10-home-edition/#comment-158195 Sat, 16 May 2020 12:13:07 +0000 https://www.itechtics.com?p=26355&preview=true&preview_id=26355#comment-158195 it not work, the system configuration is bugged its have no name and its empty

]]>
By: Usman Khurshid https://www.itechtics.com/easily-enable-group-policy-editor-gpedit-msc-in-windows-10-home-edition/#comment-157963 Thu, 14 May 2020 23:31:02 +0000 https://www.itechtics.com?p=26355&preview=true&preview_id=26355#comment-157963 In reply to John Doe.

It contains the following commands:

@echo off
pushd “%~dp0″

dir /b %SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientExtensions-Package~3*.mum >List.txt
dir /b %SystemRoot%\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:”%SystemRoot%\servicing\Packages\%%i”
pause

]]>
By: John Doe https://www.itechtics.com/easily-enable-group-policy-editor-gpedit-msc-in-windows-10-home-edition/#comment-157951 Thu, 14 May 2020 22:26:39 +0000 https://www.itechtics.com?p=26355&preview=true&preview_id=26355#comment-157951 What are the commands in the batch file?

]]>