Win10家庭版解决gpedit.msc无效的问题在安装Oracle Database时候,安装过程报了一个错误,搜索后网友提供的解决方法是通过设置修改本地组的一些配置,但是我这Win10家庭版使用 “win + r” 输入 “gpedit.msc” 会提示找不到…哎,解决它。接下来是解决步骤:建立gpedit.cmd文件,在桌面建文件比较方便打开文件并输入以下内容:@echo offpushd “%dp0"dir /b C:\Windows\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientExtensions-Package3*.mum >List.txtdir /b C:\Windows\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientTools-Package3*.mum >>List.txtfor /f %%i in (‘findstr /i . List.txt 2^>nul’) do dism /online /norestart /add-package:“C:\Windows\servicing\Packages%%i"pause右键点击Run as AdministratorDeployment Image Servicing and Management toolVersion: 10.0.16299.15Image Version: 10.0.16299.1029Processing 1 of 1 - Adding package Microsoft-Windows-GroupPolicy-ClientExtensions-Package31bf3856ad364e35amd64en-US10.0.16299.15[==========================100.0%==========================]The operation completed successfully.Deployment Image Servicing and Management toolVersion: 10.0.16299.15Image Version: 10.0.16299.1029Processing 1 of 1 - Adding package Microsoft-Windows-GroupPolicy-ClientExtensions-Package31bf3856ad364e35amd64zh-CN10.0.16299.15[==========================100.0%==========================]The operation completed successfully.Deployment Image Servicing and Management toolVersion: 10.0.16299.15Image Version: 10.0.16299.1029Processing 1 of 1 - Adding package Microsoft-Windows-GroupPolicy-ClientExtensions-Package31bf3856ad364e35amd64~~10.0.16299.15[==========================100.0%==========================]The operation completed successfully.Deployment Image Servicing and Management toolVersion: 10.0.16299.15Image Version: 10.0.16299.1029Processing 1 of 1 - Adding package Microsoft-Windows-GroupPolicy-ClientTools-Package31bf3856ad364e35amd64en-US10.0.16299.15[==========================100.0%==========================]The operation completed successfully.Deployment Image Servicing and Management toolVersion: 10.0.16299.15Image Version: 10.0.16299.1029Processing 1 of 1 - Adding package Microsoft-Windows-GroupPolicy-ClientTools-Package31bf3856ad364e35amd64zh-CN10.0.16299.15[==========================100.0%==========================]The operation completed successfully.Deployment Image Servicing and Management toolVersion: 10.0.16299.15Image Version: 10.0.16299.1029Processing 1 of 1 - Adding package Microsoft-Windows-GroupPolicy-ClientTools-Package31bf3856ad364e35~amd64~~10.0.16299.15[==========================100.0%==========================]The operation completed successfully.Press any key to continue . . .出现以上提示说明运行成功win + R,输入gpedit.msc验证,出现下方图片即完成接下来去解决Oracle的问题,顺便记录Oracle 18c的安装过程。