BetaONE will rise again!

BetaONE will rise again! (http:\\b1.hcanet.com\forum/index.php)
-   Software Support (http:\\b1.hcanet.com\forum/forumdisplay.php?f=45)
-   -   Winnt.sif (http:\\b1.hcanet.com\forum/showthread.php?t=12382)

kernel 5th Jul 04 10:44 AM

hello, please need your advice

i just want to create a Windows-XP-CD with the 'winnt.sif' file in the folder i386, so i never have to entered in the future my Corp_Serial ...

is this the right one :

Quote:


;SetupMgrTag
[Data]
    AutoPartition=1
    MsDosInitiated="0"
    UnattendedInstall="Yes"

[UserData]
    ProductKey=XXXXX-XXXXX-XXXXX-XXXXX-XXXXX


are there some statements missing or too much ...

thanks for your help in advance :rolleyes:

have a nice day
kernel

~*McoreD*~ 5th Jul 04 10:54 AM

Hi Kernel, :)

I attached a sample winnt.sif file.

Code:

;SetupMgrTag
[Data]
    AutoPartition=0
    MsDosInitiated="0"
    UnattendedInstall="Yes"

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

I suggest you to have AutoPartition=0 otherwise it will choose the drive and format without asking you -- possibility to loose your Data.

Have a look at this thread too.
http://www.betaone.net/index.php?showtopic...42&hl=winnt.sif

Also more advanced options:
http://unattended.msfn.org/

Cheers,
McoreD

kernel 5th Jul 04 11:01 AM

Thanks ~*McoreD*~ for your quick reply,

so is my example right ( except AutoPartition=0 ) or not ... can i skip over all not needed parameters ?

remember, the only thing what i want is ... to skip entering the serialnumber ...

have a nice day
kernel

kernel 5th Jul 04 08:21 PM

just tested it :D

this are the correct statements for skipping entering the serialnumber :

Quote:

;SetupMgrTag
[Data]
    AutoPartition=0
    MsDosInitiated="0"
    UnattendedInstall="Yes"

[UserData]
    ProductKey=XXXXX-XXXXX-XXXXX-XXXXX-XXXXX

have a nice day
kernel

war59312 6th Jul 04 04:38 AM

Yes thats correct though I perfer:

Code:


;SetupMgrTag
[Data]
    AutoPartition=0
    MsDosInitiated="0"
    UnattendedInstall="Yes"

[Unattended]
    UnattendMode=FullUnattended
    FileSystem=*
    OemSkipEula=Yes
    OemPreinstall=No
    UnattendSwitch=yes
    TargetPath=\WINNT
    Repartition=No
    WaitForReboot=No

[GuiUnattended]
    AdminPassword=
    EncryptedAdminPassword=Yes
    OEMSkipRegional=1
    TimeZone=35
    OemSkipWelcome=1
    AutoLogon=Yes
    AutoLogonCount=1

[UserData]
    ProductID=
    FullName="Will"
    OrgName=""
    ComputerName=*

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

[TapiLocation]
    CountryCode=1
    AreaCode=

[Identification]
    JoinWorkgroup=WORKGROUP

[Networking]
    InstallDefaultComponents=Yes

[Components]
    msmsgs=off
    msnexplr=off
    zonegames=off

[Shell]
    CustomDefaultThemeFile = "%WinDir%\Resources\Themes\Windows Classic.theme"
    DefaultStartPanelOff = Yes
    DefaultThemesOff = Yes

:) :) :)

~*McoreD*~ 6th Jul 04 05:08 AM

Interesting Will. :)

Can I also safely add
Code:

[Components]
   msmsgs=off
   msnexplr=off
   zonegames=off

to my Winnt.sif or do I need further configuration?

Also, what is DefaultStartPanelOff = Yes ?

Thanks,
McoreD

war59312 7th Jul 04 12:00 AM

Yes you can safely add that to yours.

DefaultStartPanelOff = Yes means to change to the normal start up menu. You know the normal win98/win2k start up menu instead of the new winxp one.

:)

~*McoreD*~ 7th Jul 04 07:04 AM

Thanks Will.

One more thing please. I like to have Primary DNS suffix automatically added as well.



http://img39.exs.cx/img39/3711/dns-suffix.png

For example, in my case: the csse.uwa.edu.au part. The computer name should be automatically generated.

I added the following:

[Networking]
InstallDefaultComponents=Yes
DNSDomain=csse.uwa.edu.au

But it didn't seem to work. Much appreciated for guiding us on this. :)

Cheers,
McoreD

war59312 7th Jul 04 03:27 PM

Will get back to you on this but try this:

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

[params.MS_TCPIP.Adapter1]
DNSDomain=csse.uwa.edu.au

Of course change the Adapter1 to correct Adapter.

~*McoreD*~ 28th Jul 04 09:43 AM

Hi there, I managed to test the XP CD today but unfortunately the following winnt.sif file didn't add the DNS Suffix either. :(

Code:

;SetupMgrTag
[Data]
//removed

[Unattended]
//removed

[GuiUnattended]
//removed

[UserData]
//removed

[TapiLocation]
//removed

[RegionalSettings]
//removed

[Identification]
    JoinWorkgroup=BetaONE

[Networking]
    InstallDefaultComponents=No

[Components]
    msmsgs=off
    msnexplr=off
    zonegames=off
    iis_www=On

[NetAdapters]
    Adapter1=params.Adapter1

[NetClients]
    MS_MSClient=params.MS_MSClient

[NetServices]
    MS_SERVER=params.MS_SERVER

[NetProtocols]
    MS_TCPIP=params.MS_TCPIP

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

[params.MS_TCPIP.Adapter1]
    SpecificTo=Adapter1
    DHCP=Yes
    WINS=No
    NetBIOSOptions=0
    DNSDomain=csse.uwa.edu.au

Thanks,
McoreD

war59312 28th Jul 04 07:12 PM

Well damn and I have not seen any way to either. :(

Maybe you cant?

Trying posting at neowin if you have not already. ;)

paratrupr 11th Aug 04 03:34 PM

Quote:

Originally posted by war59312@Jul 28 2004, 01:12 PM
Trying posting at neowin if you have not already. ;)
[snapback]206671[/snapback]

I posted a reply on Neowin yesterday, but the posts get buried quick. Here is my original post.

You need to put the following lines below your [NetAdapters] parameter

[NetAdapters]
Adapter1=params.Adapter1

[params.Adapter1]
INFID=*


Let me know if this works out for you.

~*McoreD*~ 11th Aug 04 04:15 PM

Thank you paratrupr. I am currently downloading the final version of SP2. I will report back after trying it in Virtual PC.

I am in dialup. :(

That's very right paratrupr, they indeed get buried very quick. I couldn't find my thread until I tried the 7th page.

paratrupr 11th Aug 04 04:23 PM

Quote:

Originally posted by ~*McoreD*~@Aug 11 2004, 10:15 AM
I am in dialup. :(

That's very right paratrupr, they indeed get buried very quick. I couldn't find my thread until I tried the 7th page.
[snapback]208374[/snapback]

Dialup? You poor soul. I guess I'll here back from you in a few weeks, lol. Hope it works out for ya.

war59312 13th Aug 04 08:57 PM

I'm trying to figure out the [NetServices] part.

I'm just using normal Local Area Connection and want to disable MS_PSched QoS Packet Scheduler and MS_Server File and Print Services.

So how?

Code:


[NetServices]
Answer File = Unattend.txt and Sysprep.inf

The [NetServices] section contains entries for installing network services.

Entry Description
network_service_name Specifies the section where you define entries for a network service.

Sample
This sample demonstrates one use of the [NetServices] section of Unattend.txt.

[NetServices]
MS_Server = params.MS_Server

network_service_name
Specifies the section where you define entries for a network service.

Syntax network_service_name = service_entries_section
Value service_entries_section
Example MS_Server = params.MS_Server
 
Comments You must select the network service name from the Service ID column in the following table. The table describes each client and the components that automatically install. Service ID Description
MS_NwSapAgent SAP Agent
MS_PSched QoS Packet Scheduler
MS_RasSrv Dial-Up Server
MS_Server File and Print Services
MS_WLBS Network Load Balancing (formerly known as Windows Load Balancing Service)


paratrupr 16th Aug 04 02:56 PM

Quote:

Originally posted by war59312@Aug 13 2004, 02:57 PM
I'm trying to figure out the [NetServices] part.

I'm just using normal Local Area Connection and want to disable MS_PSched QoS Packet Scheduler and MS_Server File and Print Services.

So how?
[snapback]208706[/snapback]

I did some searching on your question, and although no one clearly states "Use this option to NOT install THESE services"...

I interpret the following as an indication to ONLY install THESE services:

[NetServices]
MS_NwSapAgent = params.MS_NwSapAgent
MS_RasSrv = params.MS_RasSrv
MS_WLBS = params.MS_WLBS

[params.MS_NwSapAgent]

[params.MS_RasSrv]

[params.MS_WLBS]


Check out this document for a list of some of the parameters you can use for the listed services.

Hope this helps.

war59312 16th Aug 04 09:16 PM

All right thanks a lot. Will try it in a bit. :)

~*McoreD*~ 5th Sep 04 10:56 AM

Tried an unattended install today with the following in the winnt.sif file.

Code:

[Components]
    msmsgs=off
    msnexplr=off
    freecell=off
    hearts=off
    minesweeper=off
    pinball=off
    solitaire=off
    spider=off
    zonegames=off
    iis_www=On

[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

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

[params.MS_TCPIP.Adapter1]
   SpecificTo=Adapter1
   DHCP=Yes
   WINS=No
   NetBIOSOptions=0
   DNSDomain=csse.uwa.edu.au

Unfortunately the DNS Domain name is still not added to the DNS Suffix. :(

war59312 5th Sep 04 05:52 PM

All right, try this:

Code:


[Components]
   msmsgs=off
   msnexplr=off
   freecell=off
   hearts=off
   minesweeper=off
   pinball=off
   solitaire=off
   spider=off
   zonegames=off
   iis_www=On

[NetAdapters]
  Adapter01=params.MS_TCPIP.Adapter01

[params.Adapter01]
INFID=*

[NetClients]
  MS_MSClient=params.MS_MSClient

[NetServices]
  MS_SERVER=params.MS_SERVER

[NetProtocols]
  MS_TCPIP=params.MS_TCPIP

[params.MS_TCPIP]
  AdapterSections=params.MS_TCPIP.Adapter01

[MS_TCPIP parameters]
  UseDomainNameDevolution=No
  EnableLMHosts=Yes
  DNSDomain = csse.uwa.edu.au

[params.MS_TCPIP.Adapter01]
  SpecificTo=Adapter01
  DHCP=Yes
  WINS=No
  NetBIOSOptions=0
  DNSDomain = csse.uwa.edu.au
  DNSServerSearchOrder = csse.uwa.edu.au


~*McoreD*~ 6th Sep 04 07:23 AM

Thanks Will, I'll try that. Oh and I also wanted to point you out one thing:

In your code, you have:

Code:

[GuiUnattended]
   AdminPassword=
   EncryptedAdminPassword=Yes
   OEMSkipRegional=1
   TimeZone=35
   OemSkipWelcome=1
   AutoLogon=Yes
   AutoLogonCount=1

When EncryptedAdminPassword=Yes, I just found out that AutoLogin becomes disabled. So having AutoLogon=Yes was pointless.

I had to put EncryptedAdminPassword=No. Otherwise, it was waiting for the user to put the password in, before it did the RunOnceEx stuff.

war59312 6th Sep 04 06:29 PM

Yeah I know I figured it out awhile ago. :)

Here is my new one. :)

This is of course for DVD. :) At 980 MB (1,028,325,458 bytes) after cleaning up un-need files. :)

I do about 500 registry tweaks and install at least 40 appz so far.

Working on adding office 2003 pro. :)

Code:


;SetupMgrTag
[Data]
    AutoPartition = "0"
    MsDosInitiated = "0"
    UnattendedInstall = "Yes"
    AutomaticUpdates = "Yes"

[Unattended]
    UnattendMode = "FullUnattended"
    OemPnPDriversPath="Drivers\000_nvidia_graphics;Drivers\001_ati_graphics;Drivers\002_Audigy2ZS;Drivers\003_OnBoardAudio"
    FileSystem = *
    OemSkipEula = "Yes"
    OemPreinstall = "Yes"
    UnattendSwitch = "Yes"
    TargetPath = "\WINNT"
    Repartition = "No"
    WaitForReboot = "No"
    CrashDumpSetting = "0"
    DUDisable = "Yes"
    DriverSigningPolicy = "Ignore"
    Hibernation = "No"

[GuiUnattended]
    AdminPassword = "pw removed"
    EncryptedAdminPassword = "No"
    OEMSkipRegional = "1"
    TimeZone = "35"
    OemSkipWelcome = "1"
    AutoLogon = "Yes"
    AutoLogonCount = "1"

[UserData]
    ProductID = "sieral removed"
    FullName = "name removed"
    OrgName = "name removed"
    ComputerName = *

[Display]
    BitsPerPel = "32"
    Xresolution = "1024"
    YResolution = "768"
    Vrefresh = "85"

[TapiLocation]
    CountryCode = "1"
    AreaCode = "3 Digit Area Code Removed"

[Identification]
    JoinWorkgroup = "WORKGROUP"

[Networking]
    InstallDefaultComponents = "Yes"

[Components]
    msmsgs = "off"
    msnexplr = "off"
    zonegames = "off"
    freecell = "off"
    hearts = "off"
    minesweeper = "off"
    pinball = "off"
    solitaire = "off"
    spider = "off"
    AccessOpt = "off"
    Chat = "off"
    Clipbook = "off"
    Fax = "off"
    Hypertrm = "off"
    Indexsrv_system = "off"
    Media_clips = "off"
    Rec = "off"
    WMAccess = "off"

[NetServices]

[Shell]
    CustomDefaultThemeFile = "%WinDir%\Resources\Themes\Windows Classic.theme"
    DefaultStartPanelOff = "Yes"
    DefaultThemesOff = "Yes"

[WindowsFirewall]
    Profiles = "WindowsFirewall.TurnOffFirewall"

[WindowsFirewall.TurnOffFirewall]
    Mode = "0"

[IEPopupBlocker]
    AllowedSites = *
    BlockPopups = "No"
    FilterLevel = "Medium"
    ShowInformationBar = "No"

[GuiRunOnce]
    %systemdrive%\install\Installer.cmd



All times are GMT +1. The time now is 01:25 AM.

Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.