windows7 loader怎么用_Windows命令行

windows7 loader怎么用_Windows命令行Supportedoperatingsystems:*Windows7Ultimate*Windows7Professional*Windows7HomePremium*Windows7HomeBasic*Windows7Start…

大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。

Jetbrains全系列IDE稳定放心使用

Supported operating systems: 

* Windows 7 Ultimate 
* Windows 7 Professional 
* Windows 7 Home Premium 
* Windows 7 Home Basic 
* Windows 7 Starter 
* Windows Vista Ultimate 
* Windows Vista Business 
* Windows Vista Business N 
* Windows Vista Home Premium 
* Windows Vista Home Basic 
* Windows Vista Starter 
* Windows Server 2008 R2: Enterprise 
* Windows Server 2008 R2: Standard 
* Windows Server 2008 R2: Foundation 
* Windows Server 2008: Enterprise 
* Windows Server 2008: Standard 
* Windows Server 2008: Foundation 
* Windows Small Business Server 2008 

You must be running build 7600 or greater for Windows 7 and Windows Server 2008 R2. 
Windows 7 N and E editions are not supported. 

You should first know if 7 Loader v1.9 works on your system, and if it does, what mode it works best under. 

You can then edit (below) the provided ‘Setupcomplete.cmd’ ($OEM$\$\Setup\Scripts) to your preference. 

If you want logos to be automatically installed according to the OEM info in your BIOS, check the ‘Logos’ folder for Info. 

Then copy your revised $OEM$ folder into the sources folder within your Windows 7 ISO. 

You should be able to edit your ISO with a program such as UltraIso or PowerISO. 

The executable is Windows 7 Loader v1.9 by Daz, and downloaded from his latest link. 

Direct download links for Windows 7 Retail Ultimate x86 or x64 are at the bottom of this Info for those interested. 

NOTES: 

SetupComplete.cmd Example: 

@ECHO OFF 
%~dp0″Windows Loader.exe” /silent /preactivate 
cd %~dp0 
attrib -R -A -S -H *.* 
SHUTDOWN /R /T 5 
RMDIR /S /Q “%WINDIR%\Setup\Scripts” 
exit 

/silent 
Turns on silent mode 

/restart 
Restart the OS after install (used with /silent) 

/norestart 
Prevents system restart after successful installation 

/preactivate 
This just helps the loader decide on it’s environment 

Modded Bios: 

/bios 
Install just the certificate and serial 

/loader 
Force the application to install the loader 

/swap 
Install the loader without changing your systems boot code 

/k=XXXXX-XXXXX-XXXXX-XXXXX-XXXXX 
Set the Windows 7/2008/Vista key 

c= 
Set the certificate (use the name of a certificate from the certificates folder or from the SLIC list) 

/s= 
Set the SLIC (Acer, Advent, Alienware, Asus, BenQ, Casper, Dell, Exper, Founder, FSC, Fujitsu, Gigabyte, Haier, Hasee, HCL, HP, Jooyon, Lenovo, LG, Medion, MSI, NEC, Nokia, Quanmax, Samsung, Sony, Tongfang, Toshiba, Trigem, Viliv, Wartmann) 

* If you don’t set the certificate it will default to your BIOS’s model 
* If you don’t set the SLIC it will default to your BIOS’s model 
* If you don’t set the key it will default to your BIOS’s model and the correct one for the OS (Ultimate, Professional, Starter or Home Premium) 
* You can use these arguments via SetupComplete.cmd to pre-activate Windows 7/Vista/Server 2008 
Example: 
“D:\Windows Loader.exe” /silent /restart /k=342DG-6YJR8-X92GV-V7DCV-P4K27 /c=Acer /s=Acer 
 

转载于:https://my.oschina.net/u/1182540/blog/705153

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/182814.html原文链接:https://javaforall.net

(0)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

  • SQL Set Language Transact-SQL 設置國家語言

    SQL Set Language Transact-SQL 設置國家語言

    2021年6月20日
    81
  • Asp.net web.config customErrors 如何设置

    Asp.net web.config customErrors 如何设置<customErrorsmode=”Off”/>On:服务器开发的最安全选项,因为它总是隐藏错误提示信息。 RemoteOnly:向大多数用户展示一般的错误信息,但向拥有服务器访问权限的用户展示完整的错误提示信息。换句话说,仅向远程客户端端显示自定义错误,并向本地主机显示ASP.NET错误。默认值。 Off:最容易受到攻击的选项,它向访问网站的每个用户展示详细的错误提…

    2022年7月16日
    11
  • 更新Git工具到最新版本「建议收藏」

    Ubuntu16.04默认的软件源目前最多只能更新到2.7.4版本,而官方早就已经迭代到2.20.1了,差十几个版本号。新版的git命令工具增加了很多新功能,比如分支HEAD高亮等,相比以前,可以更加方便地脱离图形化界面操作。1、首先查看一下自己的版本是不是低于最新版:git–version2、若不是,添加Git官方的软件源:sudoadd-apt-repositorypp…

    2022年4月9日
    90
  • MySQL锁详解

    MySQL锁详解根据加锁的范围,MySQL里面的锁大致可以分成全局锁、表级锁和行锁三类一、全局锁全局锁就是对整个数据库实例加锁。MySQL提供了一个加全局读锁的方法,命令是Flushtableswithreadlock。当需要让整个库处于只读状态的时候,可以使用这个命令,之后其他线程的以下语句会被阻塞:数据更新语句(数据的增删改)、数据定义语句(包括建表、修改表结构等)和更新类事务的提交语句全局锁的…

    2022年4月30日
    44
  • 新浪微博爬虫分享(一天可抓取 1300 万条数据)「建议收藏」

    From:https://blog.csdn.net/bone_ace/article/details/50903178微博爬虫单机每日千万级的数据微博爬虫总结:https://blog.csdn.net/nghuyong/article/details/81251948Python爬虫——新浪微博(网页版):https://blog.csdn.net/qq_37267015/ar…

    2022年4月15日
    50
  • 一千行 MySQL 学习笔记

    一千行 MySQL 学习笔记

    2021年10月25日
    45

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号