解决Windows 11/10 上的网络打印机错误 0x0000011b

时间:2024-11-08 19:14:59

一、问题描述

连接打印机报0x0000011b

 二、解决方案

  1. 同时按住“win+R”调出运行窗口。
  2. 在运行窗口输入“regedit”并点确定,调出注册表编辑器。
  3. 找到以下路径“HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print”,空白处单击右键,点击新建值“DWORD (32位)值(D)”。
  4. 给该新建值重命名为“RpcAuthnLevelPrivacyEnabled”。
  5. 重命名之后选择值“RpcAuthnLevelPrivacyEnabled”,单击右键>修改>键入数值“0”>确定。
  6. 重启电脑即可。

三、脚本

有兴趣可以试试脚本,复制代码保存为,关闭杀毒软件,运行。

@echo off
>nul 2>&1 "%SYSTEMROOT%\system32\" "%SYSTEMROOT%\system32\config\system"
if '%errorlevel%' NEQ '0' (
goto UACPrompt
) else ( goto gotAdmin )
:UACPrompt
echo Set UAC = CreateObject^(""^) > "%temp%\"
echo  "%~s0", "", "", "runas", 1 >> "%temp%\"
"%temp%\"
exit /B
:gotAdmin
if exist "%temp%\" ( del "%temp%\" )
pushd "%CD%"
CD /D "%~dp0"
@reg add HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Print /v RpcAuthnLevelPrivacyEnabled /d 0 /t REG_DWORD /f
@echo off
rem utf-8
chcp 65001
@echo .
@echo                        
timeout /t 5
@pause