按【Win+R】键打开“运行”对话框,输入“notepad”打开记事本,编写以下的批处理代码,然后将其保存名为“installer.bat”的批处理文件。 在命令行状态下切换到批处理所在的目录,输入“installer.bat”并按回车键,即可定制非管理员用户的安装行为。 @echo off echo Windows Registry Editor Version 5.00 >temp.reg echo 正在定制 Windows Installer 的工作方式…… echo [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Installer] >>temp.reg echo "DisableMSI"=dword:00000001 >>temp.reg echo "DisablePatch"=dword:00000001 >>temp.reg echo "DisablePatchUninstall"=dword:00000001 >>temp.reg echo "DisableRollback"=dword:00000000 >>temp.reg echo "DisableLUAPatching"=dword:00000001 >>temp.reg echo "DisableInstalls"=dword:00000001 >>temp.reg echo "DisableControl"=dword:00000000 >>temp.reg echo "Logging"="iweap" >>temp.reg echo 成功设置了 Windows Installer 的工作方式! echo. regedit /s temp.reg del /q /f temp.reg >nul