XPinstall Reference Thread Precursor to XPlode...
#602
Posted 04 February 2004 - 07:39 PM
#603
Posted 04 February 2004 - 08:05 PM
If you remove unwanted sections such as....say....
<show>
XPInstall defaults the values, and everything is shown. Also the text is also resized accordingly to fit.
#604
Posted 04 February 2004 - 09:21 PM
Its me "mussy brains" here again. I did my best to get XPinstall to work, but still having the same issue. Setup gets to T9, the XPinstall GUI comes up, then NOTHING!!! Just hangs..... :/
Can someone please have a look at my attached XPinstall.xml & Winnt.sif files and see if they can spot the mistakes?!!!
Also, attached is the directory stucture I have for XPintall.
Thanks in advance....
Attached File(s)
-
xpinstall.JPG (17.73K)
Number of downloads: 0
#605
Posted 04 February 2004 - 09:23 PM
Attached File(s)
-
XPinstall.zip (2.04K)
Number of downloads: 47
#606
Posted 04 February 2004 - 09:33 PM
<items>
<item name='Copying Pre-Installation Files'>
<file command='dircopy' directory='#SOURCEPATH#\PostInstall' target='#SYSTEMDRIVE#\XPinstall' />
#607
Posted 04 February 2004 - 09:38 PM
techtype, on Feb 4 2004, 11:33 PM, said:
<items>
<item name='Copying Pre-Installation Files'>
<file command='dircopy' directory='#SOURCEPATH#\PostInstall' target='#SYSTEMDRIVE#\XPinstall' />
That might be it! Thanks tec....
#608
Posted 04 February 2004 - 09:40 PM
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]
"DefaultUserName"="John"
"DefaultPassword"="asdf123"
"AutoAdminLogon"="1"
If yes that is a lot of work to change the user in the xpinstall and then in the registry key for every new system i set up. Any help would be much appritiated. Thanks
Also can i add an * in xpinstall instead of a password and it work?
#609
Posted 04 February 2004 - 10:04 PM
It merely tells windows that user "John" will automatically login.
You could totally leave OUT the password parameter for no password.
as for the
Quote
what do you mean? Unless you use some script to ask for a username (which XPInstall can't do, but there is a thread opened recently that has a batch script), the Usernam has to be hardcoded in the setup files, in which case you'd have to have another CD for every user if you want a different user per install.
but if you use the script, in the same batch file (I'm assuming that a variable is create to store the username and pass) use the "reg" command. Look at the runonceex section on the unattend.MSFN.org website, but instead of RunOnceEX and that whole string, replace it with the WinLogon string, and instead of 001 or whatever is there, put DefaultUserName....and so one. But instead of putting John, use the variable that the Username is stored in.
i hope that makes sense
#610
Posted 04 February 2004 - 10:05 PM
shareef59, on Feb 4 2004, 09:38 PM, said:
techtype, on Feb 4 2004, 11:33 PM, said:
<items>
<item name='Copying Pre-Installation Files'>
<file command='dircopy' directory='#SOURCEPATH#\PostInstall' target='#SYSTEMDRIVE#\XPinstall' />
That might be it! Thanks tec....
do keep in mind, that the new directory structure will %Systemdrive%\XPInstall\PostInstall
I personally install everything from CD. so instead of ANY #Systemdrive# i'd use #SourcePath# , (Actually i use #XPInstall# but only because its never copied to hdd, it remains on CD)
#611
Posted 04 February 2004 - 10:06 PM
Don't put something like this if you don't know what it is since if the user has admin priviliges it could open doors...
#612
Posted 04 February 2004 - 10:07 PM
big_gie, on Feb 4 2004, 10:06 PM, said:
Don't put something like this if you don't know what it is since if the user has admin priviliges it could open doors...
i posted the link to the info, he copied it from the unattended.MSFN.org website.
#613
Posted 04 February 2004 - 10:09 PM
<items>
<item name='Adding users...'>
<file command='adduser' name='Adding Garage' user='Garage' group='Administrators' fullname='Work Shop' comment='Enterprise Computers.' />
</item>
I dont mind editing the xpinstall.xml each time as i do that anyways and i do have a different cd for each user as i use cdrw disks. But can i use the reg key in the last post and leave out the:
"DefaultUserName"="John"
"DefaultPassword"="asdf123"
"AutoAdminLogon"="1"
#614
Posted 04 February 2004 - 10:09 PM
EDIT::
Instructions...
1.)Put this file where ever, its called autologon.cmd
2.) call using this....
<file command='execute' file='(pathtofile)\autologon.cmd' arguments='"(UserName)" "(Password, if none put "")"'/>
there must be a space between Username and password
Attached File(s)
-
autologon.cmd (213bytes)
Number of downloads: 20
#615
Posted 04 February 2004 - 10:12 PM
#616
Posted 04 February 2004 - 10:15 PM
WHOOPS:: Just reuploaded the file, as tehr was a slight error. Be sure to use "" around the Username and Password
#617
Posted 04 February 2004 - 10:29 PM
<file command='execute' file='(pathtofile)\autologon.cmd' arguments='"(UserName)" "(Password, if none put "")"'/>
in the xpinstall.xml file?
#618
Posted 04 February 2004 - 10:36 PM
hevnbnd, on Feb 4 2004, 10:29 PM, said:
<file command='execute' file='(pathtofile)\autologon.cmd' arguments='"(UserName)" "(Password, if none put "")"'/>
in the xpinstall.xml file?
anywhere.....
possibly after the create user....just for easy of use.
add this.....
name='Configuring autologon'
somewhere in that file line.
ex.
<file name='Configuring autologon' command='execute' file='(pathtofile)\autologon.cmd' arguments='"(UserName)" "(Password, if none put "")"'/>
#619
Posted 04 February 2004 - 10:39 PM
If you look at the picture, it gets an error when passing thru "<complete>compl
" but the complete word is "completé"...
heres the xml section:
<!-- the string to use for "complete" --> <complete>complété</complete>
Attached File(s)
-
xml.JPG (70.01K)
Number of downloads: 10
#620
Posted 04 February 2004 - 10:39 PM
<file name='Configuring autologon' command='execute' file='(pathtofile)\autologon.cmd' arguments='"(UserName)" "(Password, if none put "")"'/>
Replace this code:
<item name='Adding users...'>
<file command='adduser' name='Adding Garage' user='Garage' group='Administrators' fullname='Work Shop' comment='Enterprise Computers.' />
</item>
If not am i suppose to put my user name in the one you created or the default one or both....



Help
This topic is locked

Back to top








