- UID
- 170668
- 热情
- 1591
- 人气
- 3064
- 主题
- 55
- 帖子
- 504
- 精华
- 0
- 积分
- 2620
- 分享
- 1
- 记录
- 0
- 相册
- 0
- 好友
- 10
- 日志
- 1
- 在线时间
- 1254 小时
- 注册时间
- 2009-1-30
- 阅读权限
- 30
- 最后登录
- 2024-8-8
升级 41.33% - UID
- 170668
- 热情
- 1591
- 人气
- 3064
- 主题
- 55
- 帖子
- 504
- 精华
- 0
- 积分
- 2620
- 阅读权限
- 30
- 注册时间
- 2009-1-30
|
[版权声明]—软件版权归原作者及原软件公司所有,如果你喜欢,请购买正版软件
——功能
1.支持VISTA/Win7/2008激活
2.智能自动一键安装
3.直接双击运行即可,不用进administrator,不用右键管理员模式运行
4.自动判断隐藏分区并提示操作
5.自动判断操作系统数量,并提示
6.自动备份原有grldr文件以便还原
7.使用最新泄露OEM KEY
8.开机时不提示软改信息(不滚屏幕)
——查看WINDOWS7是否激活
1、右键我的电脑属性
2、Win+R===>输入 slmgr.vbs -dlv
3、Win+R===>输入 slmgr.vbs -dli
4、Win+R===>输入 slmgr.vbs -xpr
5、Win+R===>输入 Winver
——制作原理:在“Vista Loader”基础上,集成了Windows 7旗舰版“OEM密钥”。
——适用于没有使用过“文件替换法激活”的Windows 7 旗舰版
源码如下
@echo off
echo.
echo installing [vista loader v2.1.2] for windows 7 Ultimate …
echo.
set path=%path%;%windir%system32
if exist %temp%vlwin7.* attrib -r -h -s %temp%vlwin7.*>nul &del %temp%vlwin7.*>nul
bcdedit /createstore %temp%vlwin7>nul
if %errorlevel% neq 0 goto commandprompt
reg query “HKLMSOFTWAREMicrosoftWindows NTCurrentVersion” /v CurrentVersion|find /i “6.1″ >nul
if %errorlevel% neq 0 goto novista
cd /d “%~dp0″
set /a vsystem=0
set VLFILE=%1
if {%1} == {} set VLFILE=Lenovo
if not exist data%VLFILE%.bin goto notfound
if not exist data%VLFILE%.xrm-ms goto notfound
echo. &echo [installing %VLFILE%.xrm-ms ! please wait ...]
cscript %windir%system32slmgr.vbs -ilc data%VLFILE%.xrm-ms
if %errorlevel% neq 0 echo %VLFILE%.xrm-ms install Failure ! &pause &goto end
echo. &echo [installing ipk 22TKD-F8XX6-YG69F-9M66D-PMJBM ! Please wait ...]
cscript %windir%system32slmgr.vbs -ipk 22TKD-F8XX6-YG69F-9M66D-PMJBM
if %errorlevel% neq 0 echo ipk install Failure ! &pause &goto end
setlocal enabledelayedexpansion
for %%A in (C: D: E: F: G: H: I: J: K: L: M: N: O: P: Q: R: S: T: U: V: W: X: Y: Z:) do (
if exist %%Abootmgr (
if not exist %%Asetup.exe (
set /a vsystem=1
echo.
echo Installing to drive %%A
echo.
if exist %%Amenu.lst attrib %%Amenu.lst -h -r -s
if exist %%Amenu.lst ren %%Amenu.lst menu_lst.bak
if exist %%Agrldr attrib %%Agrldr -h -r -s
copy datavstaldr1 /b + data%VLFILE%.bin /b + datavstaldr2 /b %%Agrldr /b
attrib %%Agrldr +h +s +r
databootinst /nt60 %%A
)
)
)
if !vsystem! equ 0 goto noactivepartition
endlocal
echo. &echo [Finish! Please restart your computer!] &pause
goto end
:noactivepartition
echo Please run diskmgmt.msc to add a Volume for your parition(Active) and try again! &pause &goto end
:notfound
echo %VLFILE%.bin: file %VLFILE%.bin or file %VLFILE%.xrm-ms not found! &pause &goto end
:commandprompt
echo Please run this program as Administrator! &pause &goto end
:novista
echo Please run this program in Windows 7. &pause &goto end
——将以上全部复制/粘贴到“记事本”,另存为“install.cmd”(注意:“批处理”文件后缀),放到一个任意名称的文件夹内(示例:Windows 7 Loader V20090729)。
——在“Windows 7 Loader V20090729”中再设一个名为“data”的文件夹,用来保存“OEM证书”。如果“OEM证书”和“OEM密钥”有变化,“批处理”内容需作相应修改。 |
|