/usr/share/osinfo/install-script/microsoft.com/windows-sif-jeos.xml is in osinfo-db 0.20180226-1~deb9u1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | <?xml version="1.0" encoding="UTF-8"?>
<libosinfo version="0.0.1">
<install-script id='http://microsoft.com/windows/sif/jeos'>
<profile>jeos</profile>
<path-format>dos</path-format>
<product-key-format>$$$$$-$$$$$-$$$$$-$$$$$-$$$$$</product-key-format>
<expected-filename>winnt.sif</expected-filename>
<can-pre-install-drivers/>
<config>
<param policy="optional" name="admin-password"/>
<param policy="required" name="reg-product-key"/>
<param policy="required" name="user-realname"/>
<param policy="optional" name="driver-signing"/>
</config>
<injection-method>floppy</injection-method>
<template>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="text"/>
<xsl:template match="/install-script-config">
;SetupMgrTag
[Data]
AutoPartition=1
MsDosInitiated=No
UnattendedInstall=Yes
[Unattended]
UnattendMode=FullUnattended
OemSkipEula=Yes
OemPreinstall=No
TargetPath=\WINDOWS
<xsl:if test="config/driver-signing = 'false'">
DriverSigningPolicy=Ignore
</xsl:if>
Repartition=Yes
WaitForReboot=No
UnattendSwitch=Yes
[GuiUnattended]
AdminPassword=<xsl:value-of select="config/admin-password"/>
EncryptedAdminPassword=NO
OEMSkipRegional=1
TimeZone=35
OemSkipWelcome=1
[UserData]
ProductKey=<xsl:value-of select="config/reg-product-key"/>
FullName="<xsl:value-of select="config/user-realname"/>"
ComputerName=
[Display]
BitsPerPel=16
Xresolution=640
YResolution=480
Vrefresh=60
[RegionalSettings]
LanguageGroup=1
[Identification]
JoinWorkgroup=WORKGROUP
[Networking]
InstallDefaultComponents=Yes
</xsl:template>
</xsl:stylesheet>
</template>
</install-script>
</libosinfo>
|