Jump to content

Winnt.sif not recognized


Recommended Posts

I'm trying to create unattended setup.

Using the tutorials and using nlite + Winnt.sif method i created the image. But the setup won't recognize the winnt.sif file( although it was placed in correct folder). I couldn't find switches for setup.exe although winnt32 has.

How can I use/start winnt32.exe in a bootable CD???

Thanks

Onlygodknows

Link to comment
Share on other sites


you are right. thats where the confusion lies.

I've a bootable CD with SETUP.EXE in autorun. Everything works fine except it doesnot recognizes the winnt.sif. It even doesnot have any switches.

is there any other batch file that I should have or some file that mentions the location of winnt.sif.

what i am possible missing???

Link to comment
Share on other sites

Hi,

When you boot from the CD and install, WINNT.SIF will be processed but running from SETUP.EXE (which actually launches WINNT32.EXE) and WINNT32.EXE without switches, WINNT.SIF will not be processed....

-> This is also the case with WINNT.EXE (DOS install)

Use:

WINNT32.EXE /S:[sourceofFiles] /U:WINNT.SIF

WINNT.EXE /S:[sourceofFiles] /U:WINNT.SIF

Link to comment
Share on other sites

Ok.. Then I'm back to square one.

In a bootable CD how do I call winnt/winnt32 with switches.. should I change autorun.ini before burning the CD so that the bootable CD automatically calls

WINNT32.EXE /S:[sourceofFiles] /U:WINNT.SIF

Link to comment
Share on other sites

You really don't need to edit anything to get an auto-boot-and-run-setup CD, just follow the guide, find the final part where it tells how to build an ISO, download that ISO-maker (can't remember it's name) and it'll make all the work.

It works perfectly for me.

The winnt.sif needs only to be put in i386 folder, nothing else.

Good luck!

Link to comment
Share on other sites

You really don't need to edit anything to get an auto-boot-and-run-setup CD, just follow the guide, find the final part where it tells how to build an ISO, download that ISO-maker (can't remember it's name) and it'll make all the work.

It works perfectly for me.

The winnt.sif needs only to be put in i386 folder, nothing else.

Good luck!

hmmm... let me try again..

(by ISO maker do u mean CDIMAGE GUI???)

Link to comment
Share on other sites

gottcha!!! its working.. :thumbup

what went wrong???.. well the cd key was not correct :wacko:

anyways still stuck at few places

1. it asked me to press ok to change the default resolution..

here's winnt sanpshot

[Display]
Xresolution=800
YResolution=600

2. Next it didnt create the users... I placed OOBEINFO.INI in $OEM$\$$\system32

[UserInfo]
Identity000="NewUser-User1"
Identity001="NewUser-User2"

But it waited form me to press "Next" then opened up the user screen (to enter the usernames)

Now whats wrong here

Link to comment
Share on other sites

Glad you got it working :D

Here's what I use in my winnt.sif for display

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

Can't help you with OOBEINFO but I use a bat file

to create accounts and to set autologon

cmdow @ /HID
@ECHO OFF
net accounts /MAXPWAGE:UNLIMITED
net user Jim password /add
net localgroup Administrators Jim /add
REG ADD "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v "DefaultUserName" /t REG_SZ /d "Jim" /f
REG ADD "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v "DefaultPassword" /t REG_SZ /d "password" /f
REG ADD "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v "AutoAdminLogon" /t REG_SZ /d "1" /f
EXIT

Edited by jbm
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...