RE: [Unattended] unattended file

2004-08-09 Thread James Barlow
Title: Message



I 
format a second NTFS partition using an AutoIt v2 script. (The disk is 
partitioned as 4Gb C:, rest D: during the first phase of 
unattended).
 
The first line performs the format, the second creates a share 
point.
 

;formatd.aut
;Format D: Drive and create a share
 
RunWait, %COMSPEC% /C echo y|format d: /fs:ntfs /v:dataRunWait, net 
share store=d: /remark:"%computername% local data store"

Save 
these lines to a file called "formatd.aut" in the scripts directory, and call it 
from the appropriate master script:
 
todo.pl "AutoIt %Z%\scripts\formatd.aut"
 
 
JMB
 

 
 -Original Message-From: 
[EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf Of Assi 
LeviSent: 08 August 2004 08:15To: 
'[EMAIL PROTECTED]'; 
'[EMAIL PROTECTED]'; 'Adam Peart'Subject: 
[Unattended] unattended file

  
   
  Hi 
   
  I have a problem with unattended 
  file, I want to create 2 partitions, c: & d: with file system NTFS in both 
  
  This is my file ,what kind of line 
  I need to write and were :
   
  I need it to win2k 
  pro/server
  Winxp/2k3SE
   
  Best Regards 
  
  10x
   
  [...]

This email and any attachments are confidential to the intended
recipient and may also be privileged. If you are not the intended
recipient please delete it from your system and notify the sender
immediately by telephoning +44(1684) 278700. You should not copy it
or use it for any purpose nor disclose or distribute its contents to
any other person.



RE: [Unattended] registry + other user

2004-03-26 Thread James Barlow
In the Windows 2000 Resource Kit there is a utility reg.exe that can be
used in batch files to script registry modifications.

For example, here are a couple of lines using reg.exe (in the z:\bin
directory) that modify variables in the HKEY_LOCAL_MACHINE Hive. I use
these on a Windows XP installation for a laptop that does not belong to
a domain:
 
rem Disable Windows Welcome Screen (classic logon)
%z%\bin\reg add "HKLM\SOFTWARE\Microsoft\Windows
NT\CurrentVersion\Winlogon" /v "AllowMultipleTSSessions" /t REG_DWORD /f
/d 0x0
%z%\bin\reg add "HKLM\SOFTWARE\Microsoft\Windows
NT\CurrentVersion\Winlogon" /v "LogonType" /t REG_DWORD /f /d 0x0

Perhaps you could use a logon script to check for group membership
(KiXtart is an easy way of doing this) and call an appropriate batch
file to set registry values in HKEY_CURRENT_USER, although I am not sure
if the logon script would attempt to run before the user profile had
been created. If you stick a shortcut to a kiXtart script in
C:\Documents and Settings\All Users\Start Menu\Programs\Startup this
should run at the correct point.

James Barlow
TRL Technology Ltd.

http://www.kixtart.org/
KiXtart Home Page

-Original Message-
From: Patrick J. LoPresti [mailto:[EMAIL PROTECTED] 
Sent: 25 March 2004 19:40
To: Julien TOUCHE
Cc: Unattended List
Subject: Re: [Unattended] registry + other user


Julien TOUCHE <[EMAIL PROTECTED]> writes:

> has someone some experience with script to edit registry of other 
> users ?
> 
> i explain:
> for now, i have *.reg o to modify HKLM et HKCU for Admin.
> but if i want to add some users (with Addusers for example) and change

> their registry settings only on each of them or their group, how ? 
> HKEY_USERS\.DEFAULT is no good as i don't want same settings for all.
> example:
> have some settings for group admin, group users, group guest.

With local profiles, you cannot do this until after the user has logged
in for the first time.  This is because the user-specific registry
settings are stored in the profile, and a local profile is created (by
copying the Default User profile) the first time a user logs in.

If the user has logged in already, or if you are using roaming profiles,
you can edit the NTUSER.DAT registry hive in the profile folder.  For
local profiles, this is normally "C:\Documents and Settings\username".
For roaming profiles, it is whatever network directory you use to hold
the profiles.

To edit these settings, you must first load the hive.  Interactively,
you would run regedt32, select Registry -> Load Hive, navigate to the
NTUSER.DAT file you want, and choose where in the registry the hive
should appear.  (Note that NTUSER.DAT is a "hidden" file.)  Then you
would edit the registry and unload the hive.

MS documents this here:

 
http://www.microsoft.com/windows2000/en/server/help/load_hive_reged.htm

From a Perl script, you would use Win32::TieRegistry, call the "Load"
method to load the hive, make your registry changes, and call the Unload
method.  We use this approach to edit the "Default User" hive in our
win2ksp4-notips.pl script.  Search for NTUSER.DAT in:

 
http://cvs.sourceforge.net/viewcvs.py/unattended/unattended/install/bin/
win2ksp4-notips.pl?view=markup

 - Pat

This email and any attachments are confidential to the intended
recipient and may also be privileged. If you are not the intended
recipient please delete it from your system and notify the sender
immediately by telephoning +44(1684) 278700. You should not copy it
or use it for any purpose nor disclose or distribute its contents to
any other person.


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id70&alloc_id638&op=click
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


RE: [Unattended] wish list

2004-03-03 Thread James Barlow
A poor-man's version of this is to:

1) Stick a copy of shutdown.exe from the resource kit into the z:\bin
directory.
2) Create a batch file "z:\bin\abort.bat" containing the following line
z:\bin\shutdown /A

3)Add the following to your build script:
Todo.pl "shortcut.pl z:\bin\abort.bat special:AllUsersDesktop"

There are a few different shutdown.exe variants around with different
parameters. (E.g. Windows XP has a built-in shutdown which uses "-a"
instead of "/A" to abort) so the contents of "abort.bat" must be
appropriate to the one you are using.

James Barlow

-Original Message-
From: Adam Peart [mailto:[EMAIL PROTECTED] 
Sent: 03 March 2004 17:05
To: [EMAIL PROTECTED]
Subject: [Unattended] wish list


Just a little thing that I wish could be added.  In the reboot the
computer 
script, there is a count down, but I also wish there was a cancel button
in 
the box in case you don't want to restart yet.  I know the whole idea of

unattend is to walk away, but if you're there and you find you need to 
correct something, it would be nice to cancel the restart.  With Win2K, 
when it does the updates, it might install 3 or 4 hotfixes, and then 
restarts, so you don't have time to make any corrections.



---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps & Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click
___
unattended-info mailing list [EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk


This email and any attachments are confidential to the intended
recipient and may also be privileged. If you are not the intended
recipient please delete it from your system and notify the sender
immediately by telephoning +44(1684) 278700. You should not copy it
or use it for any purpose nor disclose or distribute its contents to
any other person.


---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps & Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id56&alloc_id438&op=click
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


RE: [Unattended] Avoiding IIS instalation during unattended Install

2004-02-27 Thread James Barlow
Ref my previous message:

The components "iis_common, iisdbd, iis_doc, iis_inetmgr, iis_smtp,
iis_smtp_docs, iis_www, indexsrv_system" are On by default on Windows
2000 Server, but Off by default on Windows 2000 Professional.

JMB

-Original Message-
From: DE-LOS-SANTOS,ORIOL (HP-Spain,ex1)
[mailto:[EMAIL PROTECTED] 
Sent: 27 February 2004 11:08
To: [EMAIL PROTECTED]
Subject: [Unattended] Avoiding IIS instalation during unattended Install


Due to a Virus aler, I've found out that IIS are being installed during
the Win2000sp4 unattended instalation.

I don't need IIS to be instal*led in the user computers. How can I avoid
IIS from being intalled. I asume there is probably something in
site/unattended.txt which I have not found yet.

Thanks
Oriol de los Santos

This email and any attachments are confidential to the intended
recipient and may also be privileged. If you are not the intended
recipient please delete it from your system and notify the sender
immediately by telephoning +44(1684) 278700. You should not copy it
or use it for any purpose nor disclose or distribute its contents to
any other person.


---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps & Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id56&alloc_id438&op=click
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


RE: [Unattended] Avoiding IIS instalation during unattended Install

2004-02-27 Thread James Barlow
Adding the following section to your unattended.txt should do the job on
a Windows 2000 Server. (However by default these are supposed to be off
anyway):

[Components]
;Windows 2000 Server

;Internet Information Server
iis_common=Off
;Microsoft Script Debugger
iisdbg=Off
;IIS Documentation
iis_doc=Off
;HTML Admin
iis_htmla=Off
;FTP Service
iis_ftp=Off
;IIS MMC Tools
iis_inetmgr=Off
;WWW Service
iis_www=Off
;Indexing Service
indexsrv_system=Off

;SMTP Service
iis_smtp=Off
;SMTP Service Documentation
iis_smtp_docs=Off


On Windows 2000 Professional, there is also an option to turn off
Personal Web Manager (but again, by default this is off)

[Components]

;Personal Web Manager
   iis_pwmgr=Off


JMB


-Original Message-
From: DE-LOS-SANTOS,ORIOL (HP-Spain,ex1)
[mailto:[EMAIL PROTECTED] 
Sent: 27 February 2004 11:08
To: [EMAIL PROTECTED]
Subject: [Unattended] Avoiding IIS instalation during unattended Install


Due to a Virus aler, I've found out that IIS are being installed during
the Win2000sp4 unattended instalation.

I don't need IIS to be instal*led in the user computers. How can I avoid
IIS from being intalled. I asume there is probably something in
site/unattended.txt which I have not found yet.

Thanks
Oriol de los Santos

This email and any attachments are confidential to the intended
recipient and may also be privileged. If you are not the intended
recipient please delete it from your system and notify the sender
immediately by telephoning +44(1684) 278700. You should not copy it
or use it for any purpose nor disclose or distribute its contents to
any other person.


---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps & Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id56&alloc_id438&op=click
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


[Unattended] New Sun JavaVM Script

2003-12-22 Thread James Barlow
Title: Message




The following 
line inserted in the Sun JVM installation script 
(Z:\scripts\sun-jre.bat) works with the new 
prepare script to download the installation file:
:: 
URL|ALL|http://java.sun.com/webapps/download/AutoDL?BundleId=9504|packages/j2re-1_4_2_03-windows-i586-p.exe
(Well done to 
whomever figured the silent installation parameters for this one. I 
particularly like REBOOT=ReallySuppress. Is there also a 
REBOOT=NoThisTimeWeMeanItSuppress?)
JMB
 

This email and any attachments are confidential to the intended
recipient and may also be privileged. If you are not the intended
recipient please delete it from your system and notify the sender
immediately by telephoning +44(1684) 278700. You should not copy it
or use it for any purpose nor disclose or distribute its contents to
any other person.



RE: [Unattended] 3.5 Prepare script in Cygwin environment

2003-12-22 Thread James Barlow
The possible bug I referred to was that (in a Cygwin environment) the
URL to be downloaded by WGET must be the last parameter in the command,
otherwise the parameters themselves are treated as objects for download,
so you get things like "Trying http:\\--tries=3 or http:\\-O". I believe
this is clear from my original post.

By quoting one paragraph, followed by the last sentence of the
succeeding paragraph with no indication that you have chopped anything
out, you have distorted the intent of my message. Please don't do this.
It is not polite.

JMB

-Original Message-
From: Ulrich Dangel [mailto:[EMAIL PROTECTED] 
Sent: 22 December 2003 12:32
To: James Barlow
Subject: Re: [Unattended] 3.5 Prepare script in Cygwin environment


* James Barlow <[EMAIL PROTECTED]> [22.12.03 13:16]:
> 
>2) I get the following for one of the downloads:
>Invalid PORT.
>Retrying.
> 
> Maybe this is a slight bug in the port of wget.

Nope. Its a problem with you're firewall. Try 
wget --passive-ftp

>JMB

Uli
-- 
You had some happiness once, but your parents moved away, and you had to
leave it behind.

This email and any attachments are confidential to the intended
recipient and may also be privileged. If you are not the intended
recipient please delete it from your system and notify the sender
immediately by telephoning +44(1684) 278700. You should not copy it
or use it for any purpose nor disclose or distribute its contents to
any other person.


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id78&alloc_id371&op=click
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


[Unattended] 3.5 Prepare script in Cygwin environment

2003-12-22 Thread James Barlow
Title: Message



I have a couple of problems 
with the 3.5 prepare:
 
1) wget 
doesn't output to the correct location unless the parameters are switched 
(same as last time, but easier to fix)
 
Change last 
line
from:    wget "$url" -O "$file" 
to:    wget -O "$file" 
"$url"
 
2) I get the 
following for one of the downloads:
 
--11:39:28--  
ftp://ftp.attglobal.net/pub/client/win32/d5091.exe  
(try:12) => `packages/d5091.exe'Connecting to ftp.attglobal.net[165.87.194.246]:21... 
connected.Logging in as anonymous ... Logged in!==> SYST ... 
done.    ==> PWD ... done.==> TYPE I ... done.  
==> CWD /pub/client/win32 ... done.==> PORT ...Invalid 
PORT.Retrying.
 
It got up to 
(try:20) before I killed it. Perhaps a limit of three attempts would be 
appropriate. The wget command line parameter is --tries=X , although in Cygwin 
this must again be added before the $url argument. Maybe this is a slight bug in 
the port of wget.
.

Would it be possible 
to add an extra bit of output to the script so that the operator can tell in 
which file the "URL|xxx|" line being processed occurs. I've stuck in a line that 
says "echo Processing $file" before performing the wget 
command
 
.
JMB

This email and any attachments are confidential to the intended
recipient and may also be privileged. If you are not the intended
recipient please delete it from your system and notify the sender
immediately by telephoning +44(1684) 278700. You should not copy it
or use it for any purpose nor disclose or distribute its contents to
any other person.



RE: [Unattended] "Prepare" script in Cygwin environment

2003-11-21 Thread James Barlow
Modded Prepare script.

It probably would have been quicked to learn Perl, but Notepad and a bit
of perseverence can achieve most things if you put your mind to it.

JMB

-Original Message-
From: Michelangelo Bottura [mailto:[EMAIL PROTECTED] 
Sent: 21 November 2003 14:50
To: Mark Harburn
Cc: [EMAIL PROTECTED]
Subject: Re: [Unattended] "Prepare" script in Cygwin environment


just been fiddling around with wget and cygwin's wget current version, 
1.9a to get it working and it works as expected if you put - O 

before URL to get (as in wget --help)

example follows
if [ ! -f packages/cygwin/setup.exe ]; then wget 
http://www.cygwin.com/setup.exe -O packages/cygwin/setup.exe; fi

if [ ! -f packages/cygwin/setup.exe ]; then wget -O 
packages/cygwin/setup.exe http://www.cygwin.com/setup.exe; fi

just in case someone needs a quick(?) fix
Michelangelo

This email and any attachments are confidential to the intended
recipient and may also be privileged. If you are not the intended
recipient please delete it from your system and notify the sender
immediately by telephoning +44(1684) 278700. You should not copy it
or use it for any purpose nor disclose or distribute its contents to
any other person.

prepare
Description: prepare


[Unattended] "Prepare" script in Cygwin environment

2003-11-19 Thread James Barlow
Title: Message



I'm having a go with 
the new u-3.4 prepare script on an XP box running cygwin.
 
The download bit 
works really well, but rather than writing to the named sub-directories, the 
scripts puts all the files in the root of the install directory. 

 
For 
example:
 
--13:40:13--  
http://download.windowsupdate.com/msdownload/update/v3-19990518/cabpool/msjavwu_8073687b82d41db93f4c2a04af2b34d.exe   
=> `msjavwu_8073687b82d41db93f4c2a04af2b34d.exe.1'Resolving 
download.windowsupdate.com... 213.253.9.72, 213.253.9.85Connecting to 
download.windowsupdate.com[213.253.9.72]:80... connected.HTTP request sent, 
awaiting response... 200 OKLength: 5,319,000 
[application/octet-stream]
 
100%[>] 
5,319,000    198.48K/s    ETA 
00:00
 
13:40:38 (209.80 
KB/s) - `msjavwu_8073687b82d41db93f4c2a04af2b34d.exe.1' saved 
[5319000/5319000]
 
--13:40:38--  
http://-o/   
=> `index.html'Resolving -o... failed: Host not 
found.--13:40:43--  http://updates/common/msjavwu.exe   
=> `msjavwu.exe'Resolving updates... failed: Host not 
found.
 
FINISHED 
--13:40:47--
 
It seems to be 
processing the "wget source -o destination" as three download requests. Do 
I need to modify something in Cygwin to sort this out?
 
 
 
JMB

This email and any attachments are confidential to the intended
recipient and may also be privileged. If you are not the intended
recipient please delete it from your system and notify the sender
immediately by telephoning +44(1684) 278700. You should not copy it
or use it for any purpose nor disclose or distribute its contents to
any other person.



[Unattended] Disk/Partition imaging tools to run alongside Unattended

2003-11-12 Thread James Barlow
Title: Message



Can anyone recommend 
a good open source/freeware tool for imaging disks and partitions - and ideally 
something that fits into the unattended philosophy. Note this is for a disaster 
recovery scenario, not multiple installs (Repeat the mantra - Imaging Bad. 
Unattended Good)
 
Currently I'm using 
a modification of the Unattended PXE boot to map to a network 
share containing a copy of the dos version of Norton Ghost, and make 
an image of the partition to a compressed file. Being a cheap skate 
however, I'd like to save the 50 quid and do it will free 
tools.
 
One feature of Ghost 
that I can't seem to find in other products is that if you image a 10Gb 
partition containing only 2Gb of data, you can end up with a compressed file of 
around 1Gb, rather than a bit-for-bit copy of the whole 
10Gb.
 
Anyone got any 
ideas?
 
JMB

This email and any attachments are confidential to the intended
recipient and may also be privileged. If you are not the intended
recipient please delete it from your system and notify the sender
immediately by telephoning +44(1684) 278700. You should not copy it
or use it for any purpose nor disclose or distribute its contents to
any other person.



RE: [Unattended] Booting the unattended CD on a diskless laptop

2003-10-01 Thread James Barlow
I've been having problems with PXE boot on a Toshiba Tecra S1 that are
solved by 2.07-pre5. In addition to this version of MEMDISK, I also had
to disable USB legacy floppy emulation in BIOS. On this machine, the
"net diag /status < nul > \netdiag.txt" command in the autoexec.bat
seemed to hang for a long time, so I commented it out, and the
unattended process seems to work fine.

I don't know how people tend to use Unattended, but the following may be
of interest for anyone who wants to make it mobile, but hasn't switched
to a Linux laptop yet. I've got a mobile setup for taking my WinXP
laptop to end user sites and running unattended installations, either
via a cross-over cable or by plugging into a local hub/switch. In this
scenario, the target system is being configured to use a static IP
address, but it could be applicable to DHCP environments too.

I'm using a Dell Latitude C840, running Windows XP Pro. I've added a
FE575C-3Com 10/100 LAN CardBus-Fast Ethernet so that I can run
unattended installs on one interface while still connecting to a network
via the other, but this is not a compulsory requirement. The IP address
configured on the interface used must obviously be visible to the target
system after it has completed the first stage of OS installation,
otherwise the target won't be able to map the Z: drive.

I'm using the freeware TFTPD32 product as recommended on the Unattended
site to host the PXE image. I tried a couple of others, but this is the
only one that seems to support the "tsize" option. TFTPD32 has a
built-in DHCP server, but this had problems due to the PC making two
DHCP requests (one at PXE boot, one when starting TCP services) and
would not service the second request. I've opted for the free 5-client
version of DHCP Turbo Standard instead. The only scope variable is the
bootfile name - pxelinux.0

Since there is no WINS server available, I've primed the net\lmhosts
file of the undis3c.img with the IP address of the relevant network
interface, by modifying the bootdisk template. However If I need to make
changes to the image when away from the office, I can use WinImage.

So all I do is plug the second interface of my laptop into the machine
to be built via a cross-over cable, or into a switch on a statically
addressed network, perform a network boot and that's it - a fully
transportable unattended environment. I've managed to have 5 x Windows
2000 servers building off my laptop without noticeably affecting the
performance when I'm reading emails and looking at web pages.

My admiration for the Unattended system grows daily!

Cheers,

James Barlow
TRL Technology Ltd.
United Kingdom

http://www.weird-solutions.com/product/dhcpt.html
DHCP Turbo Standard - 5-client version

http://perso.wanadoo.fr/philippe.jounin/tftpd32.html
TFTPD32 Homepage

http://www.winimage.com/download.htm
WinImage [shareware]


-Original Message-
From: Patrick J. LoPresti [mailto:[EMAIL PROTECTED] 
Sent: 30 September 2003 21:21
To: Soeren Kuklau
Cc: Brad Erdman; [EMAIL PROTECTED]
Subject: Re: [Unattended] Booting the unattended CD on a diskless laptop


Replying to a very old thread...

I have just tried the version of MEMDISK from SYSLINUX 2.07-pre5.
Whatever the problem was with diskless laptops, the SYSLINUX folks have
fixed it.  Booting from CD/network on an Inspiron 8600, which fails with
the current version, works great with 2.07-pre5.

I will bundle the new version of MEMDISK in the next release of
Unattended.

 - Pat


---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf ___
unattended-info mailing list [EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk


This email and any attachments are confidential to the intended
recipient and may also be privileged. If you are not the intended
recipient please delete it from your system and notify the sender
immediately by telephoning +44(1684) 278700. You should not copy it
or use it for any purpose nor disclose or distribute its contents to
any other person.


---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


RE: [Unattended] Error 53:Net use

2003-08-14 Thread James Barlow
Title: Message



It 
might be worth priming the LMHOSTS file on the boot disk with the IP and name of 
the machine to which you want to connect.
 
In 
A:\NET\LMHOSTS
 
Add a 
line [for example]    10.1.1.1    
INSTALLSERVER
 
 
 
James 
Barlow

  
  -Original Message-From: 
  [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 08 August 2003 
  05:08To: [EMAIL PROTECTED]Subject: 
  [Unattended] Error 53:Net use
  I am 
  trying to use the unattended boot disk for connecting to my network share 
  containing the setup files. But I am getting the error error 53 : Not 
  found
  What 
  can be the problem?
  Ankur
  
  This electronic communication and any accompanying 
  document is being transmitted over the Indian Oil Network and contains 
  confidential information that is for the exclusive use of the individual or 
  entity to which it is addressed and is protected against unauthorised 
  disclosure. If the reader of this message is not the intended receipient or 
  the employee or agent responsible to deliver to the intended receipient, or is 
  not intended to act on it, be aware that any disclosure, dissemination, 
  distribution or copying of this communication, or the use of its contents is 
  prohibited and is likely to be attended by legal consequences. If you have 
  received this communication in error and/or are not the intended receipient, 
  please immediately notify the undersigned or Indian Oil Corporation Ltd. at 
  the telephone or the fax number or email address given above and permanently 
  delete the original message from your email system. Whilst this mail has been 
  checked for all the known viruses, recipients should undertake their own virus 
  checking as Indian Oil Corporation Ltd. will not accept any liability 
  whatsoever 
  This 
  e-mail has been scanned for all viruses by Star Internet. Theservice is 
  powered by MessageLabs. For more information on a proactiveanti-virus 
  service working around the clock, around the globe, visit:http://www.star.net.uk



This email and any attachments are confidential to the intended
recipient and may also be privileged. If you are not the intended
recipient please delete it from your system and notify the sender
immediately by telephoning +44(1684) 278700. You should not copy it
or use it for any purpose nor disclose or distribute its contents to
any other person.



[Unattended] Deploying TweakUI

2003-08-14 Thread James Barlow
Title: Message



Has anyone had a go 
at deploying the old version of TweakUI for Windows 2000? The install set is 
just a couple of control panel widgets, a help file and an INF file.  

 
I can make an 
Auto-IT script that opens the directory, right-clicks the INF and selects 
install, but this seems a bit of a "Heath Robinson" approach. Is there a way of 
installing an  INF file from the command line?
 
Thanks,
 
James 
Barlow



This email and any attachments are confidential to the intended
recipient and may also be privileged. If you are not the intended
recipient please delete it from your system and notify the sender
immediately by telephoning +44(1684) 278700. You should not copy it
or use it for any purpose nor disclose or distribute its contents to
any other person.



RE: [Unattended] Setting specific IP Address during unattended install

2003-08-01 Thread James Barlow
Title: Message



If you 
are opting for the default settings in the unattend.txt file [i.e. the 
following lines exists]
 
[Networking]    
InstallDefaultComponents=Yes
 
then I 
am not sure if any other Networking-related sections are processed - might be 
one to test out. Without that entry, if you don't specifically list the 
NetService then it won't be insatlled. I'm using the paramaters as previously posted for 
a Windows 2000 Server SP4 installation, and the QoS packet scheduler 
does not get installed. 
 
The following might do what you 
want:
 
[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=No    
UseDomainNameDevolution=No    
EnableLMHosts=Yes    
AdapterSections=params.MS_TCPIP.Adapter1
 
[params.MS_TCPIP.Adapter1]    
SpecificTo=Adapter1    DHCP=Yes
 
In the 
UNATTEND.doc on the Windows CD [extract from \support\tools\deploy.cab] 
there are some examples of more complex unattend.inf entries for 
networking.
 
JMB

  
  -Original Message-From: "Norström, 
  Daniel" [mailto:[EMAIL PROTECTED] Sent: 01 August 
  2003 13:25To: James Barlow; 
  [EMAIL PROTECTED]Subject: RE: [Unattended] 
  Setting specific IP Address during unattended install
  
  If I want to 
  automatically remove the QoS Packet Scheduler from the Local Area connection 
  properties in the build, can I do this from the unattended.txt 
  file?
   
  Where shall I put the 
  string if so and how shall the string look like? 
   
  [NetClients] 
   
  [NetServices]
  [NetProtocols]
   [params.MS_TCPIP]
  I found this in the 
  deploy.chm but I can't see under what section I shall put it and especially if 
  you DON'T want it inside.
   
  


  
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)

   
   
  /Danie l 



This email and any attachments are confidential to the intended
recipient and may also be privileged. If you are not the intended
recipient please delete it from your system and notify the sender
immediately by telephoning +44(1684) 278700. You should not copy it
or use it for any purpose nor disclose or distribute its contents to
any other person.



RE: [Unattended] Setting specific IP Address during unattended install

2003-08-01 Thread James Barlow
That did the trick!

Thanks for a swift response - less than five minutes!

I've got the following which may be of use to you:

[DCInstall]
AutoConfigDNS=Yes
CreateorJoin=Create
TreeOrChild=Tree
ReplicaOrNewDomain=Domain
DomainNetBiosName=MyDomain
DatabasePath="%systemroot%\NTDS"
LogPath="%systemroot%\NTDS"
SysVolPath="%systemroot%\sysvol"
NewDomainDNSName="local.test"
RebootOnSuccess=No
SiteName="MySite"

If this is added to the unattend.txt, dcpromo will automatically run
with these paramaters. Alternatively (this is how I use it), stick these
settings in a separate file called (for example) 1STDC.INF, and use a
separate batch file to perform the DC update at an appropriate point in
the build process:

[createdc.bat]
dcpromo /answer:"z:\site\1stdc.inf"
[end createdc.bat]

[List] Anyone got any ideas on setting an IP Address during the initial
unattend boot?

JMB

-Original Message-
From: Michelangelo Bottura [mailto:[EMAIL PROTECTED] 
Sent: 01 August 2003 12:22
To: James Barlow
Subject: RIF: [Unattended] Setting specific IP Address during unattended
install


James, 
here the relevant lines I used some time ago. I did non have a look at
the unattended parser module, but i suppose you could try 
INFID = "*"
 
If it works, pls let me know as I'm to follow the same path.
  
-M
 
[params.Adapter1]
;This key uniquely identifies a network adapter. Its value is the same
as the adapter's PnP ID. ;If InfID = "*", Setup matches the first
enumerated/detected network adapter on the computer with the settings in
this section. Therefore, on a computer with a single network card, you
can specify adapter-specific parameters without knowing the name or type
of the network adapter. 
;Note:  For computers with more than one network adapter, the correct
PnP ID of each of the adapters must be specified. For computers with
multiple adapters of the same type (that is, the PnP ID for each is the
same), the NetCardAddress or PCI location information must be specified.
If neither NetCardAddress nor PCI location is specified, only the first
adapter enumerated/detected that matches the InfID receives the answer
file parameters. ;If NetCardAddress or PCI location is specified, this
parameter is not used because it is the least specific parameter that
can be provided.
;Value: 
INFID = *

This email and any attachments are confidential to the intended
recipient and may also be privileged. If you are not the intended
recipient please delete it from your system and notify the sender
immediately by telephoning +44(1684) 278700. You should not copy it
or use it for any purpose nor disclose or distribute its contents to
any other person.


---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


[Unattended] Setting specific IP Address during unattended install

2003-08-01 Thread James Barlow
Title: Message



I'm using 2.7a to 
install a group of servers. I've modified the unattend.txt file so that after 
initial install the servers start with a particular IP addresses, rather than 
using DHCP.
 
The unattend.txt 
looks like this:
 
[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=No    
UseDomainNameDevolution=No    
EnableLMHosts=Yes    
AdapterSections=params.MS_TCPIP.Adapter1
 
[params.MS_TCPIP.Adapter1]    
SpecificTo=Adapter1    DHCP=No    
IPAddress=10.1.1.1    
SubnetMask=255.0.0.0    
DefaultGateway=10.1.1.50    WINS=Yes    
WINSServerList=127.0.0.1    
NetBIOSOptions=0    
DNSDomain=local.test    
DNSSuffixSearchOrder=local.test    
DNSServerSearchOrder=127.0.0.1
 
Unattend 2.7a seems 
to choke on the "INFID=*" line in the first section [ Error Unrecognised line: 
... IniFile.pm line 78.] Is there a quick fiddle I can perform to make this 
work?
 
Also, I'd like to be 
able to leave the IPAddress line blank, and type in a value during the first 
stage of install. Anyone got any ideas on that?
 
Thanks
 
James 
Barlow
 
 



This email and any attachments are confidential to the intended
recipient and may also be privileged. If you are not the intended
recipient please delete it from your system and notify the sender
immediately by telephoning +44(1684) 278700. You should not copy it
or use it for any purpose nor disclose or distribute its contents to
any other person.



RE: [Unattended] Show file extensions for known files to all users via registry

2003-07-23 Thread James Barlow
Title: Message



It's 
not quite as elegant, but you could make the appropriate changes by logging in 
as a user, selecting the appropriate options in Windows Explorer, then 
copying that user's profile to a directory on your unattend 
share.
 
During 
build, copy the contents of that directory to c:\documents & 
settings\default user\ , and all new users will have those 
settings.
 
I use 
this for a few related settings where I haven't found time to do things 
with group policy, scripting or other proper methods
 
JMB

  
  -Original Message-From: "Norström, 
  Daniel" [mailto:[EMAIL PROTECTED] Sent: 23 July 2003 
  13:43To: [EMAIL PROTECTED]Subject: 
  [Unattended] Show file extensions for known files to all users via 
  registry
  
  Hi 
   
  Does anyone know where in registry 
  you can change so all users logging on to the machine will automatically see 
  the file extensions for known files??
   
  I know how to configure for the 
  current user but I can't figure out how to add it to all 
  users.
   
  /D
   This 
  e-mail has been scanned for all viruses by Star Internet. Theservice is 
  powered by MessageLabs. For more information on a proactiveanti-virus 
  service working around the clock, around the globe, visit:http://www.star.net.uk



This email and any attachments are confidential to the intended
recipient and may also be privileged. If you are not the intended
recipient please delete it from your system and notify the sender
immediately by telephoning +44(1684) 278700. You should not copy it
or use it for any purpose nor disclose or distribute its contents to
any other person.



RE: [Unattended] Using unattend for Windows 2000 Server

2003-07-05 Thread James Barlow
Someone with a bit of perl knowledge pointed me toward the correct
place:

We've added a directory in the Z: drive called "2ksvrsp3", and modified
the 
sub full_os_name ($) function in install.pl to include an extra elsif
case.

elsif ($stem eq '2ksvr') {
$ret = 'Windows 2000 Server';
}

James Barlow

-----Original Message-
From: James Barlow 

We're using unattend for installing Windows XP on our internal systems
(very successfully I might add). I've also been experimenting with using
it for Windows 2000 Server installs - I've knocked something together,
but there are a few fiddly bits which are causing me problems.
 
We are using separate server shares for the Internal Windows XP install
set Windows 2000 Server install set, and use the pxeboot menu to launch
a different boot image hardcoded with the Z: drive mapping depending on
whether we're doing an XP build or a server build. I've been mucking
about with the full_os_name() function to try and get it to output
"Windows 2000 Server" in the list of available systems if it sees a
directory called "2ksvrsp3" in the Z: drive, but I'm not having much
luck (primarily because what I know about Perl could be written on the
back of a matchbox).

This email and any attachments are confidential to the intended
recipient and may also be privileged. If you are not the intended
recipient please delete it from your system and notify the sender
immediately by telephoning +44(1684) 278700. You should not copy it
or use it for any purpose nor disclose or distribute its contents to
any other person.


---
This SF.net email is sponsored by: ObjectStore.
If flattening out C++ or Java code to make your application fit in a
relational database is painful, don't do it! Check out ObjectStore.
Now part of Progress Software. http://www.objectstore.net/sourceforge
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


[Unattended] Using unattend for Windows 2000 Server

2003-07-05 Thread James Barlow
We're using unattend for installing Windows XP on our internal systems
(very successfully I might add). I've also been experimenting with using
it for Windows 2000 Server installs - I've knocked something together,
but there are a few fiddly bits which are causing me problems.
 
We are using separate server shares for the Internal Windows XP install
set Windows 2000 Server install set, and use the pxeboot menu to launch
a different boot image hardcoded with the Z: drive mapping depending on
whether we're doing an XP build or a server build. I've been mucking
about with the full_os_name() function to try and get it to output
"Windows 2000 Server" in the list of available systems if it sees a
directory called "2ksvrsp3" in the Z: drive, but I'm not having much
luck (primarily because what I know about Perl could be written on the
back of a matchbox).
 
Anyone got any ideas on how to do this?
 
 
James Barlow
TRL  [Electronics, not MTV]
 

This email and any attachments are confidential to the intended
recipient and may also be privileged. If you are not the intended
recipient please delete it from your system and notify the sender
immediately by telephoning +44(1684) 278700. You should not copy it
or use it for any purpose nor disclose or distribute its contents to
any other person.


---
This SF.net email is sponsored by: ObjectStore.
If flattening out C++ or Java code to make your application fit in a
relational database is painful, don't do it! Check out ObjectStore.
Now part of Progress Software. http://www.objectstore.net/sourceforge
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info