标签: adk

如何绕过 Windows 无人值守设置中的“操作系统版本选择”页面?

AutoUnattend.xml使用 ADK 中包含的 Windows 系统映像管理器生成了一个文件,以无人参与的方式安装 Windows 8.1。

我想在我的AutoUnattend.xml文件中添加一个属性来自动选择我想要安装的操作系统版本,绕过操作系统选择屏幕。

AutoUnattend.xml

<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
  <servicing>
    <package action="configure">
      <assemblyIdentity name="Microsoft-Windows-Client-LanguagePack-Package" version="6.3.9600.16384" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="es-ES" />
    </package>
  </servicing>
  <settings pass="windowsPE">
    <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
      <UserLocale>es-ES</UserLocale>
      <UILanguageFallback>es-ES</UILanguageFallback>
      <UILanguage>es-ES</UILanguage>
      <SystemLocale>es-ES</SystemLocale>
      <InputLocale>es-ES</InputLocale>
    </component>
    <component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
      <Display>
        <HorizontalResolution>1920</HorizontalResolution>
        <VerticalResolution>1080</VerticalResolution>
        <ColorDepth>32</ColorDepth>
      </Display>
      <UserData>
        <ProductKey>
          <WillShowUI>Never</WillShowUI>
          <Key>XXXXX-XXXXX-XXXXX-XXXXX-XXXXX</Key>
        </ProductKey>
        <AcceptEula>true</AcceptEula>
        <Organization>Elektro Studios</Organization>
        <FullName>MY NAME</FullName>
      </UserData>
      <EnableNetwork>true</EnableNetwork>
      <EnableFirewall>true</EnableFirewall>
      <Restart>Restart</Restart>
    </component>
  </settings>
  <settings pass="specialize">
    <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" …
Run Code Online (Sandbox Code Playgroud)

windows unattended adk windows-8 windows-8.1

9
推荐指数
2
解决办法
2万
查看次数

有没有办法自动断开笔记本与电源的连接?

我知道这看起来很奇怪而且没用,但让我解释一下......

我正在运行Windows 评估和部署工具包 (Windows ADK)来对 Windows 8 Preview 进行一些测试。其中一项评估是“电池耗尽测试”,它在某些处理器负载下测试电池消耗。我试图以某种方式“自动化”这个测试,我的意思是,我希望在没有任何人为干预的情况下执行它(例如手动断开电源,让我的笔记本电脑只靠电池运行来运行这个评估)。

那么,是否有一些 ACPI API、Windows API 甚至一个简单的 bat shell/VBScript/Powershell 命令来执行此操作?

有人已经做了类似的东西吗?

PS:我问这个是因为我找不到任何答案,但也许这里有人会有任何提示......

windows battery power-supply adk windows-8

7
推荐指数
1
解决办法
239
查看次数

如何衡量运行 Windows 8 的 PC 的性能?

在Windows 7上,我们有很多第三方软件,例如SolutoPassmark,甚至还有微软的解决方案,例如xperf(Windows Performance Toolkit)。Windows 8 改变了很多功能(例如启动),即使性能越来越好,我们仍然想衡量它以了解事情是否真的做得很好。

那么,如何衡量运行 Windows 8 的计算机的性能?

windows performance adk windows-8

5
推荐指数
1
解决办法
3038
查看次数