1 | ;SetupMgrTag
|
---|
2 | [Data]
|
---|
3 | AutoPartition = 1
|
---|
4 | MsDosInitiated = "0"
|
---|
5 | UnattendedInstall = "Yes"
|
---|
6 |
|
---|
7 | [Unattended]
|
---|
8 | UnattendMode = FullUnattended
|
---|
9 | OemSkipEula = Yes
|
---|
10 | OemPreinstall = No
|
---|
11 | TargetPath = \WINDOWS
|
---|
12 | Repartition = Yes
|
---|
13 | UnattendSwitch = "Yes"
|
---|
14 | DriverSigningPolicy = Ignore
|
---|
15 | WaitForReboot = "No"
|
---|
16 |
|
---|
17 | [GuiUnattended]
|
---|
18 | AdminPassword = "@@VBOX_INSERT_ROOT_PASSWORD@@"
|
---|
19 | EncryptedAdminPassword = No
|
---|
20 | AutoLogon = Yes
|
---|
21 | OEMSkipRegional = 1
|
---|
22 | OemSkipWelcome = 1
|
---|
23 | ; TODO: Make timezone configurable?
|
---|
24 | TimeZone = @@VBOX_INSERT_TIME_ZONE_WIN_INDEX@@
|
---|
25 | OemSkipWelcome = 1
|
---|
26 |
|
---|
27 | [UserData]
|
---|
28 | ; ProductKey was introduced in XP, ProductID was used in 2K and earlier.
|
---|
29 | ProductKey = "@@VBOX_INSERT_PRODUCT_KEY@@"
|
---|
30 | ProductID = "@@VBOX_INSERT_PRODUCT_KEY@@"
|
---|
31 | ; ; TODO: we're currently setting this up as Administrator only. We should respect the --user too.
|
---|
32 | ; ; Maybe consider: https://unattended.msfn.org/unattended.xp/view/web/27/SESSID=329e04d6824e220b0bb415d0665b1fe0/
|
---|
33 | FullName = "@@VBOX_INSERT_USER_LOGIN@@"
|
---|
34 | OrgName = ""
|
---|
35 | ComputerName = "@@VBOX_INSERT_HOSTNAME_WITHOUT_DOMAIN_MAX_15@@"
|
---|
36 |
|
---|
37 | [RegionalSettings]
|
---|
38 | ; ; TODO: If we implement locales below, we must also install the necessary language groups here. Fun.
|
---|
39 | ; LanguageGroup=1,2,3,4,5,6 - installed by default with XP
|
---|
40 |
|
---|
41 | ; ; TODO: Implement mapping locales to windows LCIDs.
|
---|
42 | ; 0409:00000409 is US.
|
---|
43 | ; SystemLocale=00000419 - russian
|
---|
44 | ; ; TODO: Make Input locale configurable?
|
---|
45 | ; InputLocale=0409:00000409,0419:00000419 - US,Russian
|
---|
46 |
|
---|
47 | [LicenseFilePrintData]
|
---|
48 | ; This section is used for server installs.
|
---|
49 | AutoMode = "PerServer"
|
---|
50 | AutoUsers = "5"
|
---|
51 |
|
---|
52 | [Identification]
|
---|
53 | JoinWorkgroup = WORKGROUP
|
---|
54 |
|
---|
55 | [Networking]
|
---|
56 | InstallDefaultComponents = Yes
|
---|
57 |
|
---|
58 | [GuiRunOnce]
|
---|
59 | Command0="A:\VBOXPOST.CMD --xp-or-older"
|
---|
60 |
|
---|