[XP] Unattended install - Wel disk kiezen, niet formatten?

Pagina: 1
Acties:

  • Wussie
  • Registratie: Maart 2003
  • Laatst online: 30-01-2023
Heya, ik heb zojuist een Windows XP + Servicepack 1 Unattended installdingetje gemaakt, maar nou heb ik een probleem :)
kep al via de search gevonden hoe je het automatisch partitie selecteren uit kan zetten, en dat heb ik dus ook gedaan }:O Maar nou is het probleem:

Zodra ik de partitie heb geselecteerd waarop ik Windows XP wil installen, krijg ik niet de optie om hem weer als NTFS te re-formatten terwijl dit dus juist wel de bedoeling is...
Heeft iemand hier een oplossing voor?

code:
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
72
73
74
75
76
77
78
79
80
81
;SetupMgrTag
[Data]
    MsDosInitiated="0"
    UnattendedInstall="Yes"

[Unattended]
    UnattendMode=FullUnattended
    OemSkipEula=Yes
    OemPreinstall=No
    TargetPath=\WINDOWS

[GuiUnattended]
    AdminPassword="******"
    EncryptedAdminPassword=NO
    OEMSkipRegional=1
    TimeZone=110
    OemSkipWelcome=1

[UserData]
    ProductID=********
    FullName="Wussie"
    OrgName="KMARNS"
    ComputerName=WuSSiE-2

[Display]
    BitsPerPel=32
    Xresolution=1024
    YResolution=768
    Vrefresh=60

[Identification]
    JoinWorkgroup=BIVB

[Networking]
    InstallDefaultComponents=No

[NetAdapters]
    Adapter1=params.Adapter1

[params.Adapter1]
    INFID=*

[NetClients]
    MS_MSClient=params.MS_MSClient

[NetServices]
    MS_SERVER=params.MS_SERVER

[NetProtocols]
    MS_TCPIP=params.MS_TCPIP
    MS_NWIPX=params.MS_NWIPX

[params.MS_TCPIP]
    DNS=No
    UseDomainNameDevolution=No
    EnableLMHosts=Yes
    AdapterSections=params.MS_TCPIP.Adapter1

[params.MS_TCPIP.Adapter1]
    SpecificTo=Adapter1
    DHCP=No
    WINS=No
    NetBIOSOptions=0
    IPAddress=10.0.0.3
    SubnetMask=255.255.255.0

[params.MS_NWIPX]
    VirtualNetworkNumber=00000000
    AdapterSections=params.MS_NWIPX.Adapter1

[params.MS_NWIPX.Adapter1]
    SpecificTo=Adapter1
    PktType=0xFF
    NetworkNumber=00000000

[Branding]
    BrandIEUsingUnattended=Yes

[Proxy]
    Proxy_Enable=0
    Use_Same_Proxy=0


dit was m'n winnt.sif 8)7

[ Voor 6% gewijzigd door Wussie op 11-12-2003 10:36 . Reden: Dus wel je admin pass en product id weghalen ]