[Unattended] fix local ip from dhcpd

2006-07-17 Thread Julien TOUCHE

is there any script in the wild to fix the local IP of a box to the one
given by dhcp (all parameters, that is: IP, netmask, router, DNS, DNS
suffix) ?

thanks
Regards

Julien

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] boot PXE using a bootdisk with a NIC that does not support PXE

2005-01-23 Thread Julien TOUCHE
Rune Tønnesen a écrit :
I was in the situation that we have a lot of older pc's wich does not have
BIOS support for networkboot. Some of the NICs does not have PXE support
neither.
another way is to setup a grub floppy with network boot enabled
grub bootp
grub root (nd)
grub configfile /menu.lst
Regards
Julien
---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] Problem booting Dell Latitude D600 with isolinux (PCMCIA problem)

2005-01-19 Thread Julien TOUCHE
Matt Hyclak a écrit :
***And I suppose we may as well look for PCMCIA devices... 
cardmgr[614]: watching 2 sockets cs: memory probe
0x0c-0x0f: excluding 0x0c-0x0f Is there a fix for
this?

If you disable smartcard in the BIOS, then it works. I don't have a
D600 in front of me, but I remember it being a several step process
involving setting an administrator password on the bios, then that
feature was enabled.
having encountered the problem, for now, i edit /etc/master form initrd
and disable cardmgr.
Regards
Julien
---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info


[Unattended] few more scripts

2005-01-10 Thread Julien TOUCHE
i add following scripts to wiki (http://www.ubertechnique.com:8080/Scripts):
Beyond Compare
BlockAds
BlueJ (developement)
CDBurnerXP Pro
clamwin
cmdcons
defrag-at
filezilla (ftp/sftp)
gaim
ganttproject (planning)
grisbi (finance)
iTunes
kerio-firewall4
K-Lite Codec Pack
ldapbrowser
OpenOffice.org 2 preview
Paint.Net
Rpccfg (security)
TortoiseSVN
Videolan client
AddPrinterTcpIPport.vbs
last one solves (at least for me) the printer hell for winxp, so i can
add any ip raw/lpr printer in a unattended way (complete with rundll32
printui.dll,PrintUIEntry ...)
all are candidates to inclusion.
One point to see is, for packages and scripts, have more hierarchy
folders (and to complete, perl script to look recursively which they
don't for now)
Regards
Julien Touche

---
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almosthttp://www.thinkgeek.com/sfshirt
___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info


[Unattended] ie: flash install/activex

2004-12-30 Thread Julien TOUCHE
has someone find a way to install silently flash for ie ?
(with AutoIt maybe)
Regards
Julien

---
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almosthttp://www.thinkgeek.com/sfshirt
___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info


[Unattended] custom driver dir and limited copy

2004-12-18 Thread Julien TOUCHE
with the joined patch, i managed to get unattended/linux copy the
drivers selected during questions phase. for now, i didn't manage to have
an oemdir var in _meta where i can say where to look for drivers so i
can remove the symlink i put in I386\$OEM$ and windows stops to copy all
my drivers tree on each install.
could anyone help me on this ?
thanks
Regards
Julien
note: two advantages
- less copy (only needed drivers)
- less copy problem during windows copy which could interrupt the whole
process
--- install.pl.12004-12-15 07:21:04.0 +0100
+++ install.pl  2004-12-15 08:11:32.0 +0100
@@ -1221,6 +1221,13 @@
 };
 
 $u-{'Unattended'}-{'OemPnPDriversPath'} = \ask_oem_pnp_drivers_path;
+#$u-{'Unattended'}-{'OemPnPDriversPath'} =
+#sub {
+#   my $oemdir = $u-{'_meta'}-{'oemdir'};
+#   defined $oemdir or
+#   return \ask_oem_pnp_drivers_path;
+#   return $oemdir;
+#}; 
 
 my $product_key_q =
 Enter your product key now.\n
@@ -1488,9 +1495,29 @@
 
 # Batch script to run after this script exits.
 my $doit = $netinst\\doit.bat;
+# - insert driver copy: no, prefer copying to /c (which is y:\)
+#push @doit_cmds, 'dir y:';
+#push @doit_cmds, 'pause';
 $is_linux
 and push @doit_cmds, 'xcopy /s /e /y Y:\\ C:\\';
 push @doit_cmds, split /;/, $u-{'_meta'}-{'doit_cmds'};
+
+# Adding only needed drivers copy
+use Data::Dumper;
+#print Dumper([EMAIL PROTECTED]);
+#print Dumper(\$u-{'Unattended'}-{'OemPnPDriversPath'});
+print oem pnp: .$u-{'Unattended'}-{'OemPnPDriversPath'}.\n;
+my @oem_dirs = split /;/, $u-{'Unattended'}-{'OemPnPDriversPath'};
+foreach my $tmp_dir(@oem_dirs) {
+   $tmp_dir =~ s/\\/\//g;
+   print creating /c/$tmp_dir\n;
+   print `mkdir -p /c/$tmp_dir`;
+   print copying driver /z/$tmp_dir to /c/$tmp_dir\n;
+   print `cp -R '/z/$tmp_dir' '/c/$tmp_dir'`;
+
+}
+#print Dumper(\$u);
+
 print Creating $doit...;
 write_file ($doit, @doit_cmds);
 print done.\n;
@@ -1523,6 +1550,7 @@
 
 write_file ($unattend_txt, @unattend_contents);
 print done.\n;
+#print Dumper([EMAIL PROTECTED]);
 
 while ($u-{'_meta'}-{'edit_files'}) {
 my $file = menu_choice (@edit_choices,


Re: [Unattended] questions - Julien Touche

2004-12-10 Thread Julien TOUCHE
Ziad O'Hanlon a écrit :
program parted is using a deprecated SCSI ioctl, please convert it to 
SG_IO
How did you get rid of this message? I've got the same problem on a Dell
Precision 670. 
unsolved for now.
(i didn't get it with 4.4b if i remember well)
Regards
Julien
---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://productguide.itmanagersjournal.com/
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] oem driver dir + symlink

2004-12-07 Thread Julien TOUCHE
ok, i've finally get time to check and cory was right.
for symlink (absolute or relative) to work, i need in smb.conf:
unix extensions = no
if yes or doesn't list, it doesn't work. i checked in unattended shell
and get
bash: cd: DIR: No such file or directory
when trying to access DIR which in general is viewed as symlink with
good source but cannot be accessed
Regards
Julien
note :server is whitebox linux (redhat 3)
---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] 4.5 BUG changing keyboard

2004-12-05 Thread Julien TOUCHE
Patrick J. LoPresti a écrit :
Yeah, this is a bug in 4.5 which is fixed in CVS.
ok
We are a little overdue for a release.  But Microsoft is poised to
release patches one week from Tuesday and Linus said something about
wanting to release Linux 2.6.10 by Christmas.
Also, I upgraded my workstation to Fedora Core 3, and now I cannot
even build the 2.6.9 kernel.  You gotta love open source.
yes :)
but commercial could also been this way.
Anyway, I am inclined to wait a few more weeks.  I may roll a
no problem
pre-release in the next week or two if people are up for testing it.
me. ready
(i also have some dell to test with new kernel)
Regards
Julien
---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://productguide.itmanagersjournal.com/
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] oem driver dir + symlink

2004-12-05 Thread Julien TOUCHE
Cory Bosley a écrit :
initially with a unix fs, i want to use symlink but it seems they
are not detected by unattended setup (from a windows client, it's

ok using  absolute or relative symlink)
 
sorry but i just said it above
Default: unix extensions = no
problem has small chance to be from samba. navigation with windows
browsing is really ok.
Regards
Julien
---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://productguide.itmanagersjournal.com/
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


[Unattended] 4.5 BUG changing keyboard

2004-12-04 Thread Julien TOUCHE
beginning with my update of 4.5, the setting of keyboard with pxe params
doesn't seem to work anymore. i get:
loadkeys ...
sh: gzip command not found
Loading ...
i get the same in shell with no effect.
but it seems there is no gzip command in linuxaux from 4.5, nor in 4.4b
so what's the problem ? any ideas ?
have others encounter this ?
thanks
Regards
Julien
---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] dell precision 670/pcix/Unable to determine boot device

2004-11-30 Thread Julien TOUCHE
Patrick J. LoPresti a écrit :
But that is not the real problem.  The real problem is that the 
Adaptec driver is not loading.  Try running modprobe aic79xx by
hand and re-running /etc/master.  If that works, we can fix it
easily. (Although I will be on vacation for a week starting in about
two hours.)


modprobe aic79xx
not found
modprobe aic7xxx
modprobe aic79xx
FATAL ... No such device
Regards
Julien
---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://productguide.itmanagersjournal.com/
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


[Unattended] 4.5: few notes

2004-11-28 Thread Julien TOUCHE
* dell latitude d600
i have to disable cardmgr, as else, it freezes on:
cardmgr[435]: watching 2 sockets
cs: memory probe 0x0c-0x0f: excluding 0xc-0xd3
(to disable, edit /etc/master in initrd with cpio
* latin/french keyboard doesn't work
when i type an `env`, i get
kbd=kbd=fr-latin1
* i have a drivers dir which i want to symlink in os dir, but for now, i
must copy them.
manually or with the following code, unattendend doesn't manage to
recover symlinked dir (with relative or absolute symlink; they all work
in a samba share viewed from win client)
# Include all drivers found under OS dir (uncomment to use)
$u-push_value ('Unattended', 'OemPnPDriversPath',
sub {
my $media_obj = Unattend::WinMedia-new
($u-{'_meta'}-{'OS_media'});
my @pnp_driver_dirs = $media_obj-oem_pnp_dirs (1);
# No driver directories means no drivers path
scalar @pnp_driver_dirs  0
or return undef;
print ...found some driver directories.\n;
my $drivers = join ';', @pnp_driver_dirs;
# Setup does not like empty OemPnPDriversPath
$drivers =~ /\S/
or undef $drivers;
return $drivers;
});
i didn't manage for now where does the code limit this. a small question
about the above code, how to add limitation for string (256 chars or else) ?
* could the next release, include an editor (ed or vi) and network copy 
tool (nc, ftp, or scp) ?

thanks
Regards
Julien
---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


[Unattended] dell precision 670/pcix/Unable to determine boot device

2004-11-23 Thread Julien TOUCHE
after the poweredge 4300, i've the same class of problem with a dell
precision 670 (which has a pcix bus)
see the end of message for full details.
if someone could help or point the relevant correction to make ? same
for poweredge 4300 and i2o_block .
thanks
Regards
Julien
=== dmesg
0 - 3fe8cc00 (ACPI NVS)
 BIOS-e820: 3fe8cc00 - 3fe8ec00 (ACPI data)
 BIOS-e820: 3fe8ec00 - 4000 (reserved)
 BIOS-e820: e000 - f000 (reserved)
 BIOS-e820: fec0 - fed00400 (reserved)
 BIOS-e820: fed2 - feda (reserved)
 BIOS-e820: fee0 - fef0 (reserved)
 BIOS-e820: ffb0 - 0001 (reserved)
Warning only 896MB will be used.
Use a HIGHMEM enabled kernel.
896MB LOWMEM available.
found SMP MP-table at 000fe710
On node 0 totalpages: 229376
  DMA zone: 4096 pages, LIFO batch:1
  Normal zone: 225280 pages, LIFO batch:16
  HighMem zone: 0 pages, LIFO batch:1
DMI 2.3 present.
Intel MultiProcessor Specification v1.4
Virtual Wire compatibility mode.
OEM ID: DELL Product ID: WS 670   APIC at: 0xFEE0
Processor #0 15:4 APIC version 20
I/O APIC #8 Version 32 at 0xFEC0.
I/O APIC #9 Version 32 at 0xFEC8.
I/O APIC #10 Version 32 at 0xFEC80800.
Enabling APIC mode:  Flat.  Using 3 I/O APICs
Processors: 1
Built 1 zonelists
Kernel command line: initrd=initrd acpi=off z_user=WHITEBOX\nobody
z_pass=nobody z_path=//whitebox/install kbd=fr-latin1 pci=usepirqmask
BOOT_IMAGE=bzImage
Initializing CPU#0
PID hash table entries: 4096 (order: 12, 65536 bytes)
Detected 2794.772 MHz processor.
Using tsc for high-res timesource
Console: colour VGA+ 80x25
Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
Memory: 899224k/917504k available (1372k kernel code, 17744k reserved,
481k data, 120k init, 0k highmem)
Checking if this processor honours the WP bit even in supervisor mode... Ok.
Calibrating delay loop... 5521.40 BogoMIPS (lpj=2760704)
Mount-cache hash table entries: 512 (order: 0, 4096 bytes)
CPU: After generic identify, caps: bfebfbff 2010  
CPU: After vendor identify, caps:  bfebfbff 2010  
monitor/mwait feature present.
using mwait in idle threads.
CPU: Trace cache: 12K uops, L1 D cache: 16K
CPU: L2 cache: 1024K
CPU: After all inits, caps:bfebfbff 2010  0080
CPU: Intel(R) Xeon(TM) CPU 2.80GHz stepping 01
Enabling fast FPU save and restore... done.
Enabling unmasked SIMD FPU exception support... done.
Checking 'hlt' instruction... OK.
ENABLING IO-APIC IRQs
..TIMER: vector=0x31 pin1=2 pin2=0
checking if image is initramfs... it is
Freeing initrd memory: 7567k freed
NET: Registered protocol family 16
PCI: PCI BIOS revision 2.10 entry at 0xfb5e2, last bus=6
PCI: Using configuration type 1
ACPI: Subsystem revision 20040816
ACPI: Interpreter disabled.
Linux Kernel Card Services
  options:  [pci] [cardbus] [pm]
PCI: Probing PCI hardware
PCI: Probing PCI hardware (bus 00)
PCI: Ignoring BAR0-3 of IDE controller :00:1f.1
PCI: Transparent bridge - :00:1e.0
PCI: Using IRQ router PIIX/ICH [8086/24d0] at :00:1f.0
PCI-APIC IRQ transform: (B0,I29,P0) - 16
PCI-APIC IRQ transform: (B0,I29,P1) - 19
PCI-APIC IRQ transform: (B0,I29,P2) - 18
PCI-APIC IRQ transform: (B0,I29,P0) - 16
PCI-APIC IRQ transform: (B0,I29,P3) - 23
PCI-APIC IRQ transform: (B0,I31,P0) - 18
PCI-APIC IRQ transform: (B0,I31,P0) - 18
PCI-APIC IRQ transform: (B0,I31,P1) - 17
PCI-APIC IRQ transform: (B0,I31,P1) - 17
PCI-APIC IRQ transform: (B2,I14,P0) - 24
PCI-APIC IRQ transform: (B3,I14,P0) - 48
PCI-APIC IRQ transform: (B5,I0,P0) - 16
PCI-APIC IRQ transform: (B6,I12,P0) - 16
serio: i8042 AUX port at 0x60,0x64 irq 12
serio: i8042 KBD port at 0x60,0x64 irq 1
Serial: 8250/16550 driver $Revision: 1.90 $ 8 ports, IRQ sharing disabled
ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
RAMDISK driver initialized: 16 RAM disks of 4096K size 1024 blocksize
Databook TCIC-2 PCMCIA probe: not found.
mice: PS/2 mouse device common for all mice
input: AT Translated Set 2 keyboard on isa0060/serio0
NET: Registered protocol family 2
IP: routing cache hash table of 8192 buckets, 64Kbytes
TCP: Hash tables configured (established 262144 bind 65536)
NET: Registered protocol family 1
NET: Registered protocol family 17
Freeing unused kernel memory: 120k freed
usbcore: registered new driver usbfs
usbcore: registered new driver hub
USB Universal Host Controller Interface driver v2.2
uhci_hcd :00:1d.0: UHCI Host Controller
PCI: Setting latency timer of device :00:1d.0 to 64
uhci_hcd :00:1d.0: irq 16, io base ff80
uhci_hcd :00:1d.0: new USB bus registered, assigned bus number 1
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 2 ports detected
uhci_hcd :00:1d.1: UHCI Host Controller
PCI: Setting latency timer of device :00:1d.1 to 64
uhci_hcd 

[Unattended] poweredge4300: Unable to determine boot device

2004-11-20 Thread Julien TOUCHE
have a problem to make 4.5 works on a dell poweredge 4300.
logs/dmesg/lspci at the end
seems to be a problem with i2o
Loading i2o_block...
FATAL: Error inserting i2o_block
(/lib/modules/2.6.9/kernel/drivers/message/i2o/i2o_block.ko): Unknown
symbol in module, or unknown parameter (see dmesg)
...done loading i2o_block
Loading i2o_proc...
FATAL: Error inserting i2o_proc
(/lib/modules/2.6.9/kernel/drivers/message/i2o/i2o_proc.ko): Unknown
symbol in module, or unknown parameter (see dmesg)
...done loading i2o_proc
Regards
Julien
=== . /etc/master
[...]
*** Excellent.  Now, let's see about mass storage controllers...
Looking for PCI devices of class 0x01 (mask 0xFF)
00:07.1 Class 0101: 8086:7111 (rev 01)
00:07.1 IDE interface: Intel Corp. 82371AB/EB/MB PIIX4 IDE (rev 01)
02:04.0 Class 0100: 9005:001f (rev 01)
02:04.0 SCSI storage controller: Adaptec AHA-2940U2/U2W / 7890/7891 (rev 01)
02:06.0 Class 0100: 9004:6078 (rev 03)
02:06.0 SCSI storage controller: Adaptec AIC-7860 (rev 03)
Looking for PCI devices of class 0x0E (mask 0x00)
02:0a.1 Class 0e00: 8086:1960 (rev 03)
02:0a.1 I2O: Intel Corp. 80960RP [i960RP Microprocessor] (rev 03)
Looking for PCI devices of class 0x050800 (mask 0x00)
(module piix already loaded)
Loading ide-generic...
...done loading ide-generic
Loading ide-disk...
...done loading ide-disk
(module aic7xxx already loaded)
(module aic79xx already loaded)
(module aic7xxx already loaded)
(module i2o_core already loaded)
Loading i2o_block...
FATAL: Error inserting i2o_block
(/lib/modules/2.6.9/kernel/drivers/message/i2o/i2o_block.ko): Unknown
symbol in module, or unknown parameter (see dmesg)
...done loading i2o_block
Loading i2o_proc...
FATAL: Error inserting i2o_proc
(/lib/modules/2.6.9/kernel/drivers/message/i2o/i2o_proc.ko): Unknown
symbol in module, or unknown parameter (see dmesg)
...done loading i2o_proc
(module sd_mod already loaded)
(module sd_mod already loaded)
*** Now we will load the EDD module...
(module edd already loaded)
*** ...and locate the boot device
Unable to determine boot device at /usr/bin/find-boot-device line 207.
*** find-boot-device failed
*** Dropping to shell
=== dmesg
.
Calibrating delay loop... 688.12 BogoMIPS (lpj=344064)
Mount-cache hash table entries: 512 (order: 0, 4096 bytes)
CPU: After generic identify, caps: 0183fbff   
CPU: After vendor identify, caps:  0183fbff   
CPU: L1 I cache: 16K, L1 D cache: 16K
CPU: L2 cache: 512K
CPU: After all inits, caps:0183fbff   0040
CPU: Intel Pentium II (Deschutes) stepping 02
Enabling fast FPU save and restore... done.
Checking 'hlt' instruction... OK.
ENABLING IO-APIC IRQs
..TIMER: vector=0x31 pin1=2 pin2=0
checking if image is initramfs... it is
Freeing initrd memory: 7567k freed
NET: Registered protocol family 16
PCI: PCI BIOS revision 2.10 entry at 0xfcc0e, last bus=3
PCI: Using configuration type 1
ACPI: Subsystem revision 20040816
ACPI: Interpreter disabled.
Linux Kernel Card Services
  options:  [pci] [cardbus] [pm]
PCI: Probing PCI hardware
PCI: Probing PCI hardware (bus 00)
PCI: Using IRQ router default [8086/7110] at :00:07.0
PCI-APIC IRQ transform: (B0,I8,P0) - 20
PCI-APIC IRQ transform: (B0,I10,P0) - 21
PCI-APIC IRQ transform: (B2,I4,P0) - 16
PCI-APIC IRQ transform: (B2,I6,P0) - 16
PCI-APIC IRQ transform: (B2,I10,P0) - 18
PCI: Cannot allocate resource region 4 of device :00:07.1
serio: i8042 AUX port at 0x60,0x64 irq 12
serio: i8042 KBD port at 0x60,0x64 irq 1
Serial: 8250/16550 driver $Revision: 1.90 $ 8 ports, IRQ sharing disabled
ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
RAMDISK driver initialized: 16 RAM disks of 4096K size 1024 blocksize
Databook TCIC-2 PCMCIA probe: not found.
mice: PS/2 mouse device common for all mice
input: AT Translated Set 2 keyboard on isa0060/serio0
NET: Registered protocol family 2
IP: routing cache hash table of 2048 buckets, 16Kbytes
TCP: Hash tables configured (established 16384 bind 32768)
NET: Registered protocol family 1
NET: Registered protocol family 17
Freeing unused kernel memory: 120k freed
usbcore: registered new driver usbfs
usbcore: registered new driver hub
USB Universal Host Controller Interface driver v2.2
PCI: Enabling device :00:07.2 ( - 0001)
PCI: No IRQ known for interrupt pin C of device :00:07.2. Probably
buggy MP table.
uhci_hcd :00:07.2: Found HC with no IRQ.  Check BIOS/PCI
:00:07.2 setup!
usbcore: registered new driver usbhid
drivers/usb/input/hid-core.c: v2.0:USB HID core driver
e100: Intel(R) PRO/100 Network Driver, 3.0.27-k2-NAPI
e100: Copyright(c) 1999-2004 Intel Corporation
e100: eth0: e100_probe: addr 0xfe104000, irq 20, MAC addr 00:90:27:CC:79:92
e100: eth0: e100_watchdog: link up, 10Mbps, half-duplex
 CIFS VFS: Send error in SessSetup = -13
 CIFS VFS: cifs_mount failed w/return code = -13
 CIFS VFS: Send error in SessSetup = -13
 CIFS VFS: cifs_mount failed w/return 

[Unattended] patch office2k officeop fra

2004-10-04 Thread Julien TOUCHE
some patchs missing for fra
+ openoffice fra
please commit
Regards
Julien
--- ../office2k.bat.orig2004-09-27 08:24:27.0 +0200
+++ ../office2k.bat 2004-09-27 08:57:01.0 +0200
@@ -5,6 +5,12 @@
 
 todo.pl AutoIt %Z%\scripts\tj\office2k-end.aut
 
+:: 
URL|ENU|http://download.microsoft.com/download/3/0/c/30cfcf2c-bfcf-40d9-be26-b0e1354ae07e/office2000-kb873380-client-enu.exe|updates/office2k/office2000-kb873380-client-enu.exe
+:: 
URL|FRA|http://download.microsoft.com/download/8/8/a/88af99ae-24d6-4a2e-9164-44aa5bcdf44f/office2000-kb873380-client-fra.exe|updates/office2k/office2000-kb873380-client-fra.exe
+:: 
URL|DEU|http://download.microsoft.com/download/d/d/e/dde936ed-5116-4aab-938f-1a054ea2a52b/office2000-kb873380-client-deu.exe|updates/office2k/office2000-kb873380-client-deu.exe
+:: http://support.microsoft.com/?kbid=873380
+todo.pl .reboot-on 194 %Z%\updates\office2k\Office2000-kb873380-client-%WINLANG%.exe 
/q /c:\msiexec /qb /l* %SystemDrive%\netinst\logs\winwordop2.txt /p MSCONVop.msp 
REBOOT=ReallySuppress\
+
 :: Hm, tying this to winxpsp1 is probably wrong.  FIXME
 if not %WINVER%. == winxpsp1. goto didfpse
 :: Critical update 810217 (MS03-051)
@@ -39,10 +45,10 @@
 :: 
URL|NLD|http://download.microsoft.com/download/c/e/8/ce8709c4-f1e6-4de6-933f-07b0c7c6ab39/office2000-kb830347-client-nld.exe|updates/office2k/office2000-kb830347-client-nld.exe
 :: 
URL|NOR|http://download.microsoft.com/download/5/6/c/56c4ca5f-e09e-4e83-8770-8375dd7edd24/office2000-kb830347-client-nor.exe|updates/office2k/office2000-kb830347-client-nor.exe
 :: 
URL|RUS|http://download.microsoft.com/download/8/b/f/8bfb329a-743b-4efa-bcd5-a020133fd71a/office2000-kb830347-client-rus.exe|updates/office2k/office2000-kb830347-client-rus.exe
+:: 
URL|FRA|http://download.microsoft.com/download/9/0/6/906470de-51f8-48af-9fd3-3ae305ba035e/office2000-kb830347-client-fra.exe|updates/office2k/office2000-kb830347-client-fra.exe
 :: http://support.microsoft.com/?kbid=830347
 :: http://www.microsoft.com/technet/security/bulletin/MS03-050.mspx
-:: tj
-::todo.pl .reboot-on 194 
%Z%\updates\office2k\Office2000-kb830347-client-%WINLANG%.exe /q /c:\msiexec /qb /l* 
%SystemDrive%\netinst\logs\winwordop.txt /p WINWORDop.msp REBOOT=ReallySuppress\
+todo.pl .reboot-on 194 %Z%\updates\office2k\Office2000-kb830347-client-%WINLANG%.exe 
/q /c:\msiexec /qb /l* %SystemDrive%\netinst\logs\winwordop.txt /p WINWORDop.msp 
REBOOT=ReallySuppress\
 
 :: Access 2000 Snapshot Viewer Security Patch: September 3, 2003
 :: 
URL|DEU|http://download.microsoft.com/download/f/e/3/fe397f11-9cb5-440b-9d0b-9886c74f1f3e/office2000-kb826292-client-deu.exe|updates/office2k/office2000-kb826292-client-deu.exe
@@ -87,9 +93,9 @@
 :: 
URL|NLD|http://download.microsoft.com/download/9/3/e/93e84ec0-9f9e-466e-8e1b-9a4f3ac53c0c/Olk0901.exe|updates/office2k/nld/olk0901.exe
 :: 
URL|NOR|http://download.microsoft.com/download/5/e/d/5ed59c16-5071-4cad-9e06-e13d1e69b2ec/Olk0901.exe|updates/office2k/nor/olk0901.exe
 :: 
URL|RUS|http://download.microsoft.com/download/c/f/0/cf0e4961-c166-4200-b346-bb52873f70a3/Olk0901.exe|updates/office2k/rus/olk0901.exe
+:: 
URL|FRA|http://download.microsoft.com/download/4/b/0/4b0be7b8-1f81-4cf0-9bd4-c7fab83a0918/Olk0901.exe|updates/office2k/fra/olk0901.exe
 :: http://support.microsoft.com/?kbid=811167
-:: tj
-::todo.pl .reboot-on 194 %Z%\updates\office2k\%WINLANG%\Olk0901.exe /r:n /q 
/c:\msiexec /qb /l* %SystemDrive%\netinst\logs\Olk0901.txt /p OMIop.msp 
REBOOT=ReallySuppress\
+todo.pl .reboot-on 194 %Z%\updates\office2k\%WINLANG%\Olk0901.exe /r:n /q 
/c:\msiexec /qb /l* %SystemDrive%\netinst\logs\Olk0901.txt /p OMIop.msp 
REBOOT=ReallySuppress\
 
 :: Install View Control Security Update
 :: (part of SP3, but not installed via MSI)


--- officeop.bat.orig   Tue Aug 31 20:03:21 2004
+++ officeop.batTue Aug 31 20:04:16 2004
@@ -3,6 +3,7 @@
 :: 
URL|ENU|http://www.ibiblio.org/pub/mirrors/openoffice/stable/1.1.2/OOo_1.1.2_Win32Intel_install.zip|packages/openoffice/enu/ooo_1.1.2_win32intel_install_enu.zip
 :: 
URL|DEU|http://www.ibiblio.org/pub/mirrors/openoffice/localized/de/1.1.2/OOo_1.1.2_Win32Intel_install_de.zip|packages/openoffice/deu/ooo_1.1.2_win32intel_install_deu.zip
 :: 
URL|ITA|http://www.ibiblio.org/pub/mirrors/openoffice/localized/it/1.1.2/OOo_1.1.2_Win32Intel_install_it.zip|packages/openoffice/ita/ooo_1.1.2_win32intel_install_ita.zip
+:: 
URL|FRA|http://www.ibiblio.org/pub/mirrors/openoffice/localized/fr/1.1.2/OOo_1.1.2_Win32Intel_install_fr.zip|packages/openoffice/fra/ooo_1.1.2_win32intel_install_fra.zip
 
 @Echo off
 todo.pl shortcut.pl \%ProgramFiles%\\OpenOffice.org\program\soffice.exe 
special:AllUsersDesktop\OpenOffice


[Unattended] config.pl/csv: script entry

2004-09-19 Thread Julien TOUCHE
is there a way to have the equivalent of top/middle/bottom entries of
_meta in software.csv ? or is there any developpement towards this
functionnality (the database option ?) ?
thanks
Regards
Julien
---
This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170
Project Admins to receive an Apple iPod Mini FREE for your judgement on
who ports your project to Linux PPC the best. Sponsored by IBM.
Deadline: Sept. 24. Go here: http://sf.net/ppc_contest.php
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] ActiveSync 3.7.1?

2004-09-15 Thread Julien TOUCHE
On Wed, Sep 15, 2004 at 02:34:45PM +0200, Martin Brodbeck wrote:
 Hello,
 
 I tried to install ActiveSync with a (very) little script:
 ...
 todo.pl %Z%\packages\activesync\setup.exe /s silent
 
 The setup starts normally but then the script returns with 
 Z:\packages\activesync\setup.exe /s silent failed, status 1 (0)
 A)bort R)etry I)gnore ?
 But the setup itself continues installing the application as it should.
 
 It seems that the script doesn't wait for the setup...

you need to use start /wait

i use this for activesync
===
:: OPTIONAL: Install Activesync (for pocketpc)
::
URL|ENU|http://download.microsoft.com/download/d/3/9/d39fe774-f6a7-4b5b-a5f0-27964b74f6ae/MSASYNC.EXE|packages/MSASYN
C.EXE
::
URL|FRA|http://download.microsoft.com/download/e/2/2/e22139fd-c792-4ec9-a09e-2b2752e0bee7/MSASYNC.EXE|packages/MSASYN
C.EXE
:: need also a sys, support dir from CD
::
:: this file must be inflate before used in silent mode
::   MSASYNC.exe /T:Z:\packages\activesync /C
:: http://www.hpcfactor.com/support/cesd/s/0030.asp
::
http://www.microsoft.com/windowsmobile/business/whitepapers/silentmodesetup.mspx
@echo off

todo.pl start /wait %Z%\packages\activesync\Setup.exe /s
\silent.ini\
===

Regards

Julien


---
This SF.Net email is sponsored by: thawte's Crypto Challenge Vl
Crack the code and win a Sony DCRHC40 MiniDV Digital Handycam
Camcorder. More prizes in the weekly Lunch Hour Challenge.
Sign up NOW http://ad.doubleclick.net/clk;10740251;10262165;m
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


[Unattended] patch openoffice for fra

2004-09-14 Thread Julien TOUCHE
please commit.
Regards
		Julien
--- officeop.bat.orig   Tue Aug 31 20:03:21 2004
+++ officeop.batTue Aug 31 20:04:16 2004
@@ -3,6 +3,7 @@
 :: 
URL|ENU|http://www.ibiblio.org/pub/mirrors/openoffice/stable/1.1.2/OOo_1.1.2_Win32Intel_install.zip|packages/openoffice/enu/ooo_1.1.2_win32intel_install_enu.zip
 :: 
URL|DEU|http://www.ibiblio.org/pub/mirrors/openoffice/localized/de/1.1.2/OOo_1.1.2_Win32Intel_install_de.zip|packages/openoffice/deu/ooo_1.1.2_win32intel_install_deu.zip
 :: 
URL|ITA|http://www.ibiblio.org/pub/mirrors/openoffice/localized/it/1.1.2/OOo_1.1.2_Win32Intel_install_it.zip|packages/openoffice/ita/ooo_1.1.2_win32intel_install_ita.zip
+:: 
URL|FRA|http://www.ibiblio.org/pub/mirrors/openoffice/localized/fr/1.1.2/OOo_1.1.2_Win32Intel_install_fr.zip|packages/openoffice/fra/ooo_1.1.2_win32intel_install_fra.zip
 
 @Echo off
 todo.pl shortcut.pl \%ProgramFiles%\\OpenOffice.org\program\soffice.exe 
special:AllUsersDesktop\OpenOffice


Re: [Unattended] poweredge 2400

2004-09-13 Thread Julien TOUCHE
On Sat, Sep 11, 2004 at 10:17:26AM -0400, Patrick J. LoPresti wrote:
 
 The dll lines are illegal in txtsetup.oem.  See
 http://support.microsoft.com/?id=275334.
 
 Of course, that KB article is hideous; it refers to OEMDIR and gives
 some vague description of how to figure out what that is.  They say to
 look at the driver's .inf file and figure out where it wants to
 install the DLL.  Unfortunately, the destination directory is not
 spelled out; instead, it will be a number like 11 (called a logical
 directory identifier, or LDID).  This Google search should get you
 started:
 
   http://www.google.com/search?q=ldid+destinationdirs
 
 In my experience, you can usually just delete the dll = ... lines
 from your txtsetup.oem file and ignore the OEMDIR stuff.

without, it fails
just after disk c check:
la valeur suivante dans le fichier .SIF utilisé par le programme
d'installation est endomagé ou manquante:
Valeur 0 à la ligne de la section [SourceDisksFiles] avec la clé
sp4.cab

it is the same with OEMDIR (value 11 which is system dir from
http://www.microsoft.com/windows2000/techinfo/reskit/en-us/default.asp?url=/windows2000/techinfo/reskit/en-us/ierk/AppxH_b.asp,
but which one SystemRoot SystemRoot\system Systemroot\system32 ???

it fails with the same error with file in $oem$\$$\systemXX
i also try to copy at hand files from $win_nt$.~ls\$oem$\$$ to
$win_nt$.~bt\systemXX without success ...

 
 Have fun!
 
fun of funky ms  dell engineers ...

Regards

Julien



---
This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170
Project Admins to receive an Apple iPod Mini FREE for your judgement on
who ports your project to Linux PPC the best. Sponsored by IBM.
Deadline: Sept. 13. Go here: http://sf.net/ppc_contest.php
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


[Unattended] office2k: remove some components

2004-09-13 Thread Julien TOUCHE
i'm looking for a way to install office2k without some part like, for
example, access, outlook (or maybe force some extra part o install).

it seems an administrative install setup take all and i've not managed
to use Remove env with msiexec to limit the install.

any ideas ?

thanks
Regards

Julien



---
This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170
Project Admins to receive an Apple iPod Mini FREE for your judgement on
who ports your project to Linux PPC the best. Sponsored by IBM. 
Deadline: Sept. 13. Go here: http://sf.net/ppc_contest.php
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


[Unattended] palm desktop install

2004-09-11 Thread Julien TOUCHE
i'm trying to install palm desktop on multi-users windows but get the
problem than by default palm desktop is one-user only ...
with appdeploy, i create the following scripts, but could not identify
all reg of HKEY_CURRENT_USER and other stuff i need to migrate to
HKEY_USERS/.DEFAULT or some other place.
has anyone done this previously ? anyone using palm in enterprise ?
:: OPTIONAL: Install Palm Desktop 4.1
:: http://www.palmone.com/us/support/downloads/windesk414_legal.html
:: http://www.appdeploy.com/packages/detail.asp?id=162
@echo off
todo.pl echo o|cacls \c:\Program Files\palmOne\ /E /G
\BUILTIN\Administrateurs\:F \BUILTIN\Utilisateurs\:C
todo.pl echo o|cacls \c:\Program Files\palmOne\users.dat /E /G
\BUILTIN\Administrateurs\:F \BUILTIN\Utilisateurs\
:W
todo.pl %Z%\packages\Palm\Palm41SP04\SETUP.EXE /s /v\/QB- ALLUSERS=1\
Regards
Julien
note: user perms use french names ...
---
This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170
Project Admins to receive an Apple iPod Mini FREE for your judgement on
who ports your project to Linux PPC the best. Sponsored by IBM. 
Deadline: Sept. 13. Go here: http://sf.net/ppc_contest.php
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] palm desktop install

2004-09-11 Thread Julien TOUCHE
Eugene Kotlyarov a écrit :
Julien TOUCHE wrote:
i'm trying to install palm desktop on multi-users windows but get the
problem than by default palm desktop is one-user only ...
with appdeploy, i create the following scripts, but could not identify
all reg of HKEY_CURRENT_USER and other stuff i need to migrate to
HKEY_USERS/.DEFAULT or some other place.
It's rather strange but it is under
HKEY_CURRENT_USER\Software\U.S. Robotics\Pilot Desktop
not only that
also
HKEY_CURRENT_USER\Software\U.S. Robotics\Palm Quick Install
HKEY_CURRENT_USER\Software\Palm
and some
HKEY_CURRENT_USER\Software\Classes\.pdb
HKEY_CURRENT_USER\Software\Classes\.pnc
and so on
but exporting these only in HKEY_USERS\.DEFAULT is not sufficient to 
make it work
or maybe it must be done individually ... (sic)

Regards
Julien

---
This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170
Project Admins to receive an Apple iPod Mini FREE for your judgement on
who ports your project to Linux PPC the best. Sponsored by IBM.
Deadline: Sept. 13. Go here: http://sf.net/ppc_contest.php
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] pdfcreator patch

2004-09-11 Thread Julien TOUCHE

What's the patch for, anyways?
regular patch from
http://sourceforge.net/project/showfiles.php?group_id=57796package_id=53473release_id=228013
at least without it, i cannot print without admin rights (but who works
on its pc with admin account ...)
Regards
Julien
---
This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170
Project Admins to receive an Apple iPod Mini FREE for your judgement on
who ports your project to Linux PPC the best. Sponsored by IBM. 
Deadline: Sept. 13. Go here: http://sf.net/ppc_contest.php
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] poweredge 2400

2004-09-10 Thread Julien TOUCHE
ok, boot is ok for now (with some firmware update). but i get the
following error
* with unattended and network
(in french)
le fichier fourni par le fabriquant et que le programme d'installation 
essaie d'installer essaye d'utiliser est endommagé ou n'est pas valide:
Types de fichiers manquant ou interdits spécifiés dans la section:
Files.SCSI.perc2
(translate in english/partial)
the file provided is corrupted or invalid:
Type of files missing or banned in the following section
Files.SCSI.perc2

* with cd+floppy(drivers+Winnt.sif)
(in french)
Le programme d'installation ne peut pas copier le fichier perc2.sys
(translate)
cannot copy file perc2.sys from floppy
i try with 2 different floppy and copy from windows works.
* cd+floppy (drivers only) = manual
works ok :(
i joined the txtsetup.oem files.
any ideas ?
Regards
Julien

[Disks]
d1 = Dell PERC 2, 2/Si, 3/Si, 3/Di Windows 2000 Device Drivers, \raidisk1, \
 
[Defaults]
scsi = perc2

[Scsi]
perc2 = Dell PERC 2, 2/Si, 3/Si, 3/Di RAID Controllers, perc2

[Files.Scsi.perc2]
driver = d1, perc2.sys, perc2
driver = d1, perc2hib.sys, perc2hib
catalog = d1, perc2.cat
inf = d1, perc2.inf
inf = d1, perc2mgt.inf
dll = d1, perc2cin.dll
dll = d1, perc2evt.exe

[Config.perc2]
value = , Type, REG_DWORD, 1
value = , Start, REG_DWORD, 0
value = , Group, REG_SZ, SCSI miniport
value = , ErrorControl, REG_DWORD, 1
value = Parameters\Device, NumberOfRequests, REG_DWORD, 0fe

[Config.perc2hib]
value = , Type, REG_DWORD, 1
value = , Start, REG_DWORD, 4
value = , Group, REG_SZ, SCSI miniport
value = , ErrorControl, REG_DWORD, 1

[HardwareIds.scsi.perc2]
id = PCI\VEN_1011DEV_0046SUBSYS_13649005, perc2
id = PCI\VEN_1011DEV_0046SUBSYS_13659005, perc2
id = PCI\VEN_1028DEV_0001SUBSYS_00011028, perc2
id = PCI\VEN_1028DEV_0002SUBSYS_00021028, perc2
id = PCI\VEN_1028DEV_0003SUBSYS_00031028, perc2
id = PCI\VEN_1028DEV_0002SUBSYS_00D11028, perc2
id = PCI\VEN_1028DEV_0002SUBSYS_00D91028, perc2
id = PCI\VEN_1028DEV_000ASUBSYS_01061028, perc2
id = PCI\VEN_1028DEV_000ASUBSYS_011B1028, perc2
id = PCI\VEN_1028DEV_000ASUBSYS_01211028, perc2
id = PCI\VEN_9006DEV_2140SUBSYS_21409006, perc2
id = PCI\VEN_9005DEV_00C5SUBSYS_00C51028, perc2



Re: [Unattended] compaq n1015v (netboot) pb

2004-09-07 Thread Julien TOUCHE
on this problem,
- linuxboot is always a problem
- dosboot works but i have strange error sometimes
Starting install.pl
Page Fault cr2=1000ààc4 at eip=11dbb0; flags=3206
eax=00c4 ebx=0011cc40 ecx=0012 edx=0002 esi=000ed141 
edi=002c
ebp=001a6d9c esp=001a6d80 cs=a7 ds=af es=af fs=8f gs=0 ss=af error=0004
Aborting.

at hand .. redo the script + perl z:\dosbin\install.pl: ok
partition
reboot
install.pl  ok
but in the end it freezes on c: check (test multiple times)
i will try a memtest on the box today
Regards
Julien
---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_idP47alloc_id808op=click
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] pdfcreator patch

2004-09-06 Thread Julien TOUCHE
Wim Vandersmissen a écrit :
Thanks, but it was already fixed in cvs :)
this part not (patch one).
(else, can't print when not admin)
Regards
		Julien
--- pdfcreator.bat.orig 2004-08-31 17:30:12.0 +0200
+++ pdfcreator.bat  2004-09-06 12:51:29.0 +0200
@@ -17,9 +17,13 @@
 :: 
URL|SKY|http://dl.sourceforge.net/sourceforge/pdfcreator/slovensko.ini|packages/pdfcreator/lang-sky-0_8_0.ini
 :: 
URL|UKR|http://dl.sourceforge.net/sourceforge/pdfcreator/ukrainian.ini|packages/pdfcreator/lang-ukr-0_8_0.ini
 if not exist %Z%\packages\pdfcreator\lang-%WINLANG%-0_8_0.ini goto nolangpack
-todo.pl copy %Z%\packages\pdfcreator\lang-%WINLANG%-0_8_0.ini 
%ProgramFiles%\PDFCreator\languages\
+todo.pl copy %Z%\packages\pdfcreator\lang-%WINLANG%-0_8_0.ini 
\%ProgramFiles%\PDFCreator\languages\
 :nolangpack
 
+:: install patch
+:: 
URL|ALL|http://mesh.dl.sourceforge.net/sourceforge/pdfcreator/Patch02-PDFCreator-0_8_0.exe|packages/Patch02-PDFCreator-0_8_0.exe
+todo.pl %Z%\packages\pdfcreator\Patch02-PDFCreator-0_8_0.exe /sp- /silent /norestart
+
 :: Install PDFCreator
 :: 
URL|ALL|http://dl.sourceforge.net/sourceforge/pdfcreator/PDFCreator-0_8_0_GNUGhostscript.exe|packages/pdfcreator/pdfcreator-0_8_0_gnughostscript.exe
 todo.pl %Z%\packages\pdfcreator\PDFCreator-0_8_0_GNUGhostscript.exe /sp- /silent 
/norestart


Re: [Unattended] compaq n1015v (netboot) pb

2004-08-30 Thread Julien TOUCHE
On Fri, Aug 27, 2004 at 11:28:09AM -0400, Patrick J. LoPresti wrote:
 
 That is not the same...  I want to know what happens if you do
 modprobe 8139cp on a machine where 8139too was *never* loaded.  My
 concern is that the 8139too driver might be messing up the state of
 the Ethernet hardware.

with 2.6.8.1 and interrupted master, `modprobe 8139cp` works and eth0 is
up.
i get a ?small conflict message when modprobing:
IRQ routing conflict for :00:0c.0, have irq 10, want irq 11
IRQ routing conflict for :01:05.0, have irq 10, want irq 11
eth0: RTL-8139C+ at 0xcf80b000, MAC address, IRQ 11

if i launch the modprobe after usb part of master script, i get :
8139cp: 10/100 PCI Ethernet driver ...
PCI: Assigned IRQ 5 for device :00:0b.0
8139cp: probe of :00:0b.0 failed with error -22

with the first case, launching `. /etc/master`, it fails on dhcp:
debug, Sendinf discover ... x3
info, No lease, failing

at hand, i give an ip, /etc/master always does dhcp ...

udhcp at hand, doesn't find (miss default script) and it seems it can't
be interrupted

else is there a way to pass ethernet driver and ip as kernel params ? or
a debug option, so it asks to execute or not /etc/master :) ?

Regards

Julien


---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047alloc_id=10808op=click
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


[Unattended] dell precision 650: STOP: 0x00000007B (0xF7C7E63C, 0xC0000034, 0x0, 0x0)

2004-08-30 Thread Julien TOUCHE
it seems i have no luck with computers these days. I just received
some dell precision 650 workstations and decide to apply the
installation i was testing for some time.
(unattended 4.4b, on whitebox linux, winxpsp1)
after the linux part (+emu), and the first phase of windows install (F6
if you want to add raid/scsi drivers, loading stuff), i get a blue screen:
first a message: windows stop to prevent any damage .., please check
antivirus and new hardware ... and next
STOP: 0x0007B (0xF7C7E63C, 0xC034, 0x0, 0x0)
no extra message under the stop.
i've double-checked my setup, correct some small errors, my drivers are
in os/winxpsp1/I386/$OEM$/$1/DRIVERS, but it seems windows does not copy
them at the good place. if after i hang, i reboot with unattended, mount
/dev/sda1, there is no drivers dir, in fact, for an unknow reason, it's
in $/$1/drivers (or maybe it is moved later ?; during my 2 or 3-previous
tests, it was in /mnt/\$win_nt\$.~ls/\$oem\$/\$1/drivers/dell650).
on another computer, unattended works ok, and the driver dir is well
placed in c:\
it doesn't seem to be a problem with this particular precision as i test
with another and get the same.
i've try to check memory with memtest86 and 86+ but it seems it cannot
be loaded (loop with 8000 ...). strange stuff.
there is also the case of some subdir of DRIVERS which cannot be copied
during windows copy (on linux emu), this one stays with the working
computer, but perms are good on samba server and a copy in windows works ok.
i also get one time, the following error during this phase too:
during windows network copy, multiple
smb_errno: class ERRSRV, code 68 from command 0x32
Regards
Julien
note: it could be interesting to add to the tree a set drivers dir so
anyone who use unattended has same reference and completed with a script
to create symlink in each os dir. why not ? :)
note2: sorry, i got no time to check the poweredge 2400. i do it tomorrow.

---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047alloc_id=10808op=click
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] dell precision 650: STOP: 0x00000007B (0xF7C7E63C, 0xC0000034, 0x0, 0x0)

2004-08-30 Thread Julien TOUCHE
Mario Gzuk a écrit :
 Have u tried to diable the anti virus in your bios?
i will check tomorrow, but i didn't encounter many computers with bios
antivirus enabled by default.
Regards
Julien
---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_idP47alloc_id808op=click
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


[Unattended] questions

2004-08-28 Thread Julien TOUCHE
as my questions where drop in the scripts turmoil, i repost them :)
* is it possible to define a local-admin passwod with a prefix and some
part of IP, some env var, or a randow stuff maybe ?
what are the habits on this ? do you drop local Admin or have a common
clear password in unattended.txt ?
* why IIS is installed with Manual start and not Disabled (as manual,
another service could request to start it) ?
has someone done a list of services which can be disabled by default like:
policyagent, ssdpsrv, w32time (use net time to sync), iisadmin, w3svc,
smtpsvc, msdtc , messenger
enventually lmhosts
http://www.hsc.fr/ressources/breves/min_srv_res_win.en.html
* a command-line way to disable account like
IUSR_%COMPUTERNAME%, IWAM_%COMPUTERNAME%
ok: this one found:
= %SYSTEMROOT%\System32\net.exe user guest /active:no
* is there an alternate way for customizing mozilla  keeping default
package than install than extract package, changing config.ini and
adding xpi, making a default prefs.js for all users.
* is there any structure in todo.pl to have a some sort of for ? the
application i want it to do is having one dir with some *.reg file, all
of which are merged on install or maybe depending on some settings in
_meta or software.csv
one remarks : office2k fra: no Olk901, nor kb830347 patchs
Regards
Julien
---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047alloc_id=10808op=click
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


[Unattended] poweredge 2400: Unable to determine boot device at /usr/bin/find-boot-device line 207.

2004-08-27 Thread Julien TOUCHE
i get a problem to use unattended on a dell poweredge 2400. /etc/master
stop on
Unable to determine boot device at /usr/bin/find-boot-device line 207.
log at the end with dmesg/lspci
Regards
Julien
note: it's with 4_4a, i will update as soon as i can next week. (same
for evo)
dmesg
le entries: 2048 (order 11: 16384 bytes)
Detected 598.314 MHz processor.
Using tsc for high-res timesource
Console: colour VGA+ 80x25
Memory: 509960k/524280k available (1305k kernel code, 13560k reserved,
444k data, 120k init, 0k highmem)
Checking if this processor honours the WP bit even in supervisor mode... Ok.
Calibrating delay loop... 1179.64 BogoMIPS
Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
Mount-cache hash table entries: 512 (order: 0, 4096 bytes)
CPU: After generic identify, caps: 0383fbff   
CPU: After vendor identify, caps: 0383fbff   
CPU: L1 I cache: 16K, L1 D cache: 16K
CPU: L2 cache: 256K
CPU: After all inits, caps: 0383fbff   0040
CPU: Intel Pentium III (Coppermine) stepping 03
Enabling fast FPU save and restore... done.
Enabling unmasked SIMD FPU exception support... done.
Checking 'hlt' instruction... OK.
enabled ExtINT on CPU#0
ESR value before enabling vector: 0040
ESR value after enabling vector: 
ENABLING IO-APIC IRQs
Setting 2 in the phys_id_present_map
...changing IO-APIC physical APIC ID to 2 ... ok.
Setting 3 in the phys_id_present_map
...changing IO-APIC physical APIC ID to 3 ... ok.
init IO_APIC IRQs
 IO-APIC (apicid-pin) 2-0, 2-2, 2-5, 2-10, 2-11, 2-13, 2-14 not connected.
..TIMER: vector=0x31 pin1=-1 pin2=0
...trying to set up timer (IRQ0) through the 8259A ...
. (found pin 0) ...works.
number of MP IRQ sources: 40.
number of IO-APIC #2 registers: 16.
number of IO-APIC #3 registers: 16.
testing the IO APIC...
IO APIC #2..
 register #00: 0200
...: physical APIC id: 02
...: Delivery Type: 0
...: LTS  : 0
 register #01: 000F0011
... : max redirection entries: 000F
... : PRQ implemented: 0
... : IO APIC version: 0011
 register #02: 
... : arbitration: 00
 IRQ redirection table:
 NR Log Phy Mask Trig IRR Pol Stat Dest Deli Vect:
 00 001 01  000   0   01131
 01 001 01  000   0   01139
 02 000 00  100   0   00000
 03 001 01  000   0   01141
 04 001 01  000   0   01149
 05 000 00  100   0   00000
 06 001 01  000   0   01151
 07 001 01  000   0   01159
 08 001 01  000   0   01161
 09 001 01  000   0   01169
 0a 000 00  100   0   00000
 0b 000 00  100   0   00000
 0c 001 01  000   0   01171
 0d 000 00  100   0   00000
 0e 000 00  100   0   00000
 0f 001 01  000   0   01179
IO APIC #3..
 register #00: 0300
...: physical APIC id: 03
...: Delivery Type: 0
...: LTS  : 0
 register #01: 000F0011
... : max redirection entries: 000F
... : PRQ implemented: 0
... : IO APIC version: 0011
 register #02: 0D00
... : arbitration: 0D
 IRQ redirection table:
 NR Log Phy Mask Trig IRR Pol Stat Dest Deli Vect:
 00 001 01  110   1   01181
 01 001 01  110   1   01189
 02 001 01  110   1   01191
 03 001 01  110   1   01199
 04 001 01  110   1   011A1
 05 001 01  110   1   011A9
 06 001 01  110   1   011B1
 07 001 01  110   1   011B9
 08 001 01  110   1   011C1
 09 001 01  110   1   011C9
 0a 001 01  110   1   011D1
 0b 001 01  110   1   011D9
 0c 001 01  110   1   011E1
 0d 001 01  110   1   011E9
 0e 001 01  110   1   01132
 0f 001 01  110   1   0113A
IRQ to pin mappings:
IRQ0 - 0:0
IRQ1 - 0:1
IRQ3 - 0:3
IRQ4 - 0:4
IRQ6 - 0:6
IRQ7 - 0:7
IRQ8 - 0:8
IRQ9 - 0:9
IRQ12 - 0:12
IRQ15 - 0:15
IRQ16 - 1:0
IRQ17 - 1:1
IRQ18 - 1:2
IRQ19 - 1:3
IRQ20 - 1:4
IRQ21 - 1:5
IRQ22 - 1:6
IRQ23 - 1:7
IRQ24 - 1:8
IRQ25 - 1:9
IRQ26 - 1:10
IRQ27 - 1:11
IRQ28 - 1:12
IRQ29 - 1:13
IRQ30 - 1:14
IRQ31 - 1:15
 done.
Using local APIC timer interrupts.
calibrating APIC timer ...
. CPU clock speed is 598.0026 MHz.
. host bus clock speed is 132.0894 MHz.
checking if image is initramfs... it is
Freeing initrd memory: 7348k freed
NET: Registered protocol family 16
PCI: PCI BIOS revision 2.10 entry 

[Unattended] compaq n1015v (netboot) pb

2004-08-26 Thread Julien TOUCHE
i've a problem with unattended network boot on hp compaq n1015v notebook
with Realtek RTL8139 C+ Fast Ethernet NIC
* realtek card is not recognized by linux or irq conflict (acpi=off)
i've copy the following part of dmesg (no network and no floppy because
modules are on network)
8139too: 000:00:0b.0: Chip not responding, ignoring board
8139too: probe of 000:00:0b.0 failed with error -5
8139cp: ...
PCI: IRQ  11 for device 000:00:0b.0 doesn't match PIRQ mask - try
pci=usepirqmask
with pci=usepirqmask
8139too: probe of 000:00:0b.0 failed with error -5
...
8139cp: probe of 000:00:0b.0 failed with error -22
* with undis3c:
with emm386.exe - same text to display in loop
no emm386 - UMB's unavailable - hang
i've 4_4a and will test 4_4b tomorrow.
ideas ?
Regards
Julien
---
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink  Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] compaq n1015v (netboot) pb

2004-08-26 Thread Julien TOUCHE
Patrick J. LoPresti a écrit :
Julien TOUCHE [EMAIL PROTECTED] writes:

* realtek card is not recognized by linux or irq conflict (acpi=off)
 
I assume you have tried it without acpi=off ?
yes
Please try booting with the shell option, or just type Ctrl-C before
the script loads the modules.  (Either way will give you a shell
prompt before the network drivers are loaded, which is what we want.)

Then run modprobe 8139cp by hand.  Maybe loading the 8139too driver
somehow messed up the state of the hardware.
i tried after /etc/master which goes out (as no eth[012]) with no more luck.

i've copy the following part of dmesg (no network and no floppy
because modules are on network)
copy at hand part of it
Actually, we include the floppy driver on the boot disk for exactly
this reason.  You should be able to put in a formatted floppy and
then:
vfat/msdos modules are on /z, right ?
no network ...
no way to mount msdos or vfat floppy
or maybe you think to an ext2 floppy ?
* with undis3c:
with emm386.exe - same text to display in loop
no emm386 - UMB's unavailable - hang

Well, FreeDOS has given us a lot of trouble.  You can copy all of our
stuff to a disk with MS-DOS and try that instead...
yes, but that's for the form. i agree linux will be better ..
Regards
Julien
note: no need to cc, i'm on list
---
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink  Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


[Unattended] some scripts question

2004-08-24 Thread Julien TOUCHE

here some scripts i used:
(some could be update if unattended could recognized zip files or if md5)
* cmdcons: recovery console install (need sed)
--- cmdcons.bat
:: OPTIONAL: Install recovery console
@echo off
todo.pl %Z%\os\%WINVER%\i386\winnt32.exe /cmdcons /unattend
:: to change boot timeout to 5sec
attrib -S -H -R %systemdrive%\boot.ini
type %systemdrive%\boot.ini | sed 's/timeout=30/timeout=5/' 
%systemdrive%\boot.init.new
move /Y %systemdrive%\boot.init.new %systemdrive%\boot.ini
attrib +R +A +S +H %systemdrive%\boot.ini
* nrpe_nt : nagios monitoring
--- nrpe_nt.bat
:: OPTIONAL: Install nrpe_nt
:: need to unzip file
::
URL|ALL|http://unc.dl.sourceforge.net/sourceforge/nrpent/nrpe_nt.0.7f-bin.zip|packages/nrpe_nt.0.7f-bin.zip
:: http://www.miwi-dv.com/nrpent/
@Echo off
set SRC=%Z%\packages\nrpe_nt
set DST=c:\Program Files\nrpe_nt
xcopy /e /v /c /q /h /I %SRC% %DST%
echo y| cacls %DST% /E /G BUILTIN\Administrateurs:F
:: configure nrpe_nt service
%DST%\bin\nrpe_nt.exe -i
* filezilla: ftp/sftp client
--- filezilla.bat
:: OPTIONAL: Install Filezilla
::
URL|ALL|http://unc.dl.sourceforge.net/sourceforge/filezilla/FileZilla_2_2_8a_setup.exe|packages/FileZilla.exe
@Echo off
start /wait %Z%\packages\FileZilla.exe /S
* flash
--- flash.bat
:: OPTIONAL: Install Flash Player
::
URL|ALL|http://fpdownload.macromedia.com/get/shockwave/flash/english/win95nt/7.0.19.0/flashplayer7installer.exe|packages/flashplayer7installer.exe
@Echo off
start /wait AutoIt.exe %Z%\scripts\flash.aut
if errorlevel 1 exit 1
--- flash.aut
SetEnv, APPPATH, Z:\\packages
Run, %APPPATH%\\flashplayer7installer.exe
;Sleep, 5000
WinWaitActive, Installation de Macromedia Flash Player
Send, {ENTER}{ENTER}
WinWaitActive, Installation de Macromedia Flash Player, Continuer
Send, {ENTER}
* gnupg
--- gnupg.bat
:: OPTIONAL: Install Gnupg
:: need to unzip it
::
URL|ALL|ftp://ftp.gnupg.org/gcrypt/binary/gnupg-w32cli-1.2.5.zip|packages/gnupg-w32cli-1.2.5.zip
todo.pl xcopy /E /Y /I \z:\winapps\Mozilla\gnupg\ c:\gnupg
* update-nav.aut
todo.pl AutoIt.exe %Z%\scripts\nav-update.aut
to add to nav script (client or corporate)
--- nav-update.aut
SetEnv, APPPATH, Z:\\packages
; update
SetEnv, APP, 20040811-020-i32.exe
Run, %APPPATH%\\%APP%
WinWaitActive, SARC Intelligent Updater (%APP%)
Send, {ENTER}
WinWaitActive, SARC  Intelligent Updater, OK
Send, {ENTER}
* clamwin
--- clamwin.bat
:: OPTIONAL: install clamwin
::
URL|ALL|http://unc.dl.sourceforge.net/sourceforge/clamwin/clamwin-0.35.2-setup.exe|packages/clamwin-0.35.2-setup.exe
:: http://www.clamwin.com/
@echo off
todo.pl %Z%\packages\clamwin-0.35.1-setup.exe /silent
* aquastudio: sql client
--- aquastudio.bat
:: OPTIONAL: Install SQL Client Aquastudio
:: msi inside the installer
:: http://www.aquafold.com/downloads.html
@Echo off
set msi=%Z%\packages\Aqua Data Studio 3.7.msi
start /wait msiexec /qb /l* %SystemDrive%\netinst\logs\aquastudio.txt
/i %msi%
@if errorlevel 1 exit 1
* tomcat
--- tomcat.bat
:: OPTIONAL: Install Tomcat 5
::
URL|ALL|http://apache.fastorama.com/dist/jakarta/tomcat-5/v5.0.27/bin/jakarta-tomcat-5.0.27.exe|packages/jakarta-tomcat-5.0.27.exe
:: http://jakarta.apache.org/tomcat/
@echo off
start /wait %Z%\packages\jakarta-tomcat-5.0.27.exe /S
on the questions
* why IIS is installed with Manual start and not Disabled (as manual,
another service could request to start it) ?
* is there an alternate way for customizing mozilla  keeping default
package than install than extract package, changing config.ini and
adding xpi, making a default prefs.js.
* one remarks : office2k fra: no Olk901, nor kb830347 patchs
* is there any structure in todo.pl to have a some sort of for ? the
application i want it to do is having one dir with some *.reg file, all
of which are merged on install or maybe depending on some settings in
_meta or software.csv
* another extra like that is one script which call secedit. something
like that:
secedit /configure /cfg %Z%\scripts\security\%INF% /db
%systemdrive%\winnt\security\database\newdb.sdb /log
%systemdrive%\secedit-log.txt /quiet
Regards
Julien
---
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink  Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] some scripts question

2004-08-24 Thread Julien TOUCHE
lot of interesting scripts.
seems time to merge in main cvs or for a contrib dir, patrick ? :)

---
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink  Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] Unattended 4.4a released

2004-08-15 Thread Julien TOUCHE
Adam Peart a écrit :
Is there an easy way to upgrade from 4.2b to 4.4x without having to copy 
the os directory, updates, packages, etc.?
cvs update ?
TAG=REL_4_4
cvs -z3 up -r$TAG -Pd unattended/install
Regards
Julien
---
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink  Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


[Unattended] questions + extra scripts

2004-08-11 Thread Julien TOUCHE
few questions/comments first (setup is a linux server with 4.4; use
software.csv/hardware.csv; test with xpsp1):
* even with software.csv, unattended ask me for os, but get the rest
through csv
* after formatting, it asks for users to add to local Admin group: i
didn't find a corresponding meta to auto answer on the advanced web page
of the site. is there any ?
* fixtz.pl: it seems to open properties for time but doesn't close it
* to join to domain: which solution do you prefer to permit without
putting main admin name/pass in unattend.txt ?
(and this user must be admin, right ?  a way to defined a user only for
joining domain ?)
* will be cool to add mute.exe from Adam Peart [EMAIL PROTECTED]
in bin and at the beginning of base.bat (and unmute at the end [eventually])
* is there a way to impose classic theme to xp ???
it seems the following key doesn't work (even after new session or reboot)
[HKEY_CURRENT_USER\Software\Microsoft\Plus!\Themes\Current]
; = %SystemRoot%\resources\Themes\Windows Classic.theme
@=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,\
00,5c,00,72,00,65,00,73,00,6f,00,75,00,72,00,63,00,65,00,73,00,5c,00,54,00,\
68,00,65,00,6d,00,65,00,73,00,5c,00,57,00,69,00,6e,00,64,00,6f,00,77,00,73,\
00,20,00,43,00,6c,00,61,00,73,00,73,00,69,00,63,00,2e,00,74,00,68,00,65,00,\
   6d,00,65,00,00,00
* to impose status bar and some list display by type ?
* to impose classical display on control panel ?
* one log i would find useful will be the timing hour when begin
install, end and timing for each script
* for fra lang, office2k has no Olk901 and kb830347 (not exist/no fetch
by prepare)
* else (it asked before but ...) is there any solution to let
software.csv handles serial for other software than windows (office not
corporate or others) or to give it the value of top and middle meta ?
next some script or cmdline to add to default scripts :)
* pdfcreator (autoit joined)
* tomcat win
jakarta-tomcat-5.0.27.exe /S
* eclipse3 (just copy)
xcopy /e /v /c /q /h /I %SRC% %DST%
echo y| cacls %DST% /E /G BUILTIN\Administrateurs:F
BUILTIN\Utilisateurs:R
* autoitv2 (msi by extracting setup)
* flash (autoit)
* quicktime
from http://appdeploy.com/packages/detail.asp?id=123
i joined a pl, ini and preferences file
Regards
Julien
note: it seems msg was dropped/blocked for attachements.
i put script/aut/ini/pl on http://tjn0.free.fr/unattended/

---
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink  Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


[Unattended] extra-software serials handling

2004-08-08 Thread Julien TOUCHE
is there a defined or preferred way to handle the serial of software
with unattended ?
for example, say i have corporate softwares which don't need serial, but
i have office which need it.
is it possible to have (maybe) an extra column in software.csv saying
office:SERIAL1; other: SERIAL2
and which could be recovered by scripts
Regards
Julien
---
This SF.Net email is sponsored by OSTG. Have you noticed the changes on
Linux.com, ITManagersJournal and NewsForge in the past few weeks? Now,
one more big change to announce. We are now OSTG- Open Source Technology
Group. Come see the changes on the new OSTG site. www.ostg.com
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


[Unattended] more fra + java details + one question

2004-08-07 Thread Julien TOUCHE
two patch
* one for jre: disable javaupdate by default and no webstart icon
* some fra updates for winxpsp1
one note, i didn't find (again) on advanced page of the site how do you
define default response to error when installing updates
(Abort/ignore/retry).
it's important for non-enu languages, some system update files doesn't
exist (a todo for todo.pl) and stop unattended setup.
Regards
		Julien
--- winxpsp1-updates.bat.orig   2004-08-02 14:33:56.0 +0200
+++ winxpsp1-updates.bat2004-08-02 15:18:22.0 +0200
@@ -13,6 +13,7 @@
 :: 
URL|ENU|http://download.microsoft.com/download/7/0/D/70D0BAC6-A68B-4CB6-94AB-E0DF8C0EFCAF/WindowsMedia9-KB837272-ENU.exe|updates/mediaplayer9/windowsmedia9-kb837272-enu.exe
 :: 
URL|NLD|http://download.microsoft.com/download/3/7/0/370f42db-fcd5-48d3-b798-56ef8f258206/WindowsMedia9-KB837272-NLD.exe|updates/mediaplayer9/windowsmedia9-kb837272-nld.exe
 :: 
URL|RUS|http://download.microsoft.com/download/3/c/6/3c6b5375-05af-4fef-8dd0-595506d9e59b/WindowsMedia9-KB837272-RUS.exe|updates/mediaplayer9/windowsmedia9-kb837272-rus.exe
+:: 
URL|FRA|http://download.microsoft.com/download/0/b/b/0bbce627-51cf-416c-bb79-1bc58bd09e4b/WindowsMedia9-KB837272-FRA.exe|updates/mediaplayer9/windowsmedia9-kb837272-fra.exe
 :: http://support.microsoft.com/?id=837272
 todo.pl .reboot-on 194 %Z%\updates\mediaplayer9\windowsmedia9-kb837272-%WINLANG%.exe 
/passive /n /norestart
 
@@ -22,6 +23,7 @@
 :: 
URL|ITA|http://download.microsoft.com/download/d/4/7/d47caaef-4089-44e5-830a-98161cfd4563/WindowsXP-KB833998-x86-ITA.EXE|updates/winxpsp1/windowsxp-kb833998-x86-ita.exe
 :: 
URL|NLD|http://download.microsoft.com/download/4/f/f/4ff8b6d8-e59d-4a5c-b546-146cb96dfd3b/WindowsXP-KB833998-x86-NLD.EXE|updates/winxpsp1/windowsxp-kb833998-x86-nld.exe
 :: 
URL|RUS|http://download.microsoft.com/download/b/7/c/b7c06c76-7812-4da9-90b4-e70fb7c5cc5b/WindowsXP-KB833998-x86-RUS.EXE|updates/winxpsp1/windowsxp-kb833998-x86-rus.exe
+:: 
URL|FRA|http://download.microsoft.com/download/6/9/b/69bfea3d-ddb6-4eed-b374-3bc489759aff/WindowsXP-KB833998-x86-FRA.EXE|updates/winxpsp1/windowsxp-kb833998-x86-fra.exe
 :: http://support.microsoft.com/?id=833998
 todo.pl .reboot-on 194 %Z%\updates\winxpsp1\windowsxp-kb833998-x86-%WINLANG%.exe 
/passive /n /norestart
 
@@ -142,6 +144,7 @@
 :: 
URL|ITA|http://download.microsoft.com/download/8/3/d/83d65455-1428-45cd-9680-bc10b1c6e716/WindowsXP-KB837001-x86-ITA.EXE|updates/winxpsp1/windowsxp-kb837001-x86-ita.exe
 :: 
URL|NLD|http://download.microsoft.com/download/4/4/8/448abf29-ed78-4a64-8fd8-b31bf1295944/WindowsXP-KB837001-x86-NLD.EXE|updates/winxpsp1/windowsxp-kb837001-x86-nld.exe
 :: 
URL|RUS|http://download.microsoft.com/download/4/d/4/4d40c874-b227-4ec5-8b30-3f0054d0732f/WindowsXP-KB837001-x86-RUS.EXE|updates/winxpsp1/windowsxp-kb837001-x86-rus.exe
+:: 
URL|FRA|http://download.microsoft.com/download/3/a/6/3a6ef20c-e3db-44dc-b7c1-e39ffc24ea12/WindowsXP-KB837001-x86-FRA.EXE|updates/winxpsp1/windowsxp-kb837001-x86-fra.exe
 todo.pl .reboot-on 194 %Z%\updates\winxpsp1\windowsxp-kb837001-x86-%WINLANG%.exe 
/passive /n /norestart
 
 :: Recommended update 826942
@@ -306,6 +309,7 @@
 :: 
URL|ENU|http://download.microsoft.com/download/a/f/a/afa937e7-e7f4-4fe8-8324-6e322f7ab542/WindowsXP-KB840374-x86-ENU.EXE|updates/winxpsp1/windowsxp-kb840374-x86-enu.exe
 :: 
URL|NLD|http://download.microsoft.com/download/1/c/9/1c9d2292-7e0d-49a9-b9ba-2dd25c3bfc38/WindowsXP-KB840374-x86-NLD.EXE|updates/winxpsp1/windowsxp-kb840374-x86-nld.exe
 :: 
URL|RUS|http://download.microsoft.com/download/b/a/f/baf12958-e3c1-439d-a4c9-78d60bc0f1b5/WindowsXP-KB840374-x86-RUS.EXE|updates/winxpsp1/windowsxp-kb840374-x86-rus.exe
+:: 
URL|FRA|http://download.microsoft.com/download/0/c/1/0c11efca-21a2-4d7e-9afd-3708b1dc0616/WindowsXP-KB840374-x86-FRA.EXE|updates/winxpsp1/windowsxp-kb840374-x86-fra.exe
 todo.pl .reboot-on 194 %Z%\updates\winxpsp1\windowsxp-kb840374-x86-%WINLANG%.exe 
/passive /n /norestart
 
 :: Critical update MS04-012 (828741)
@@ -317,6 +321,7 @@
 :: 
URL|ITA|http://download.microsoft.com/download/1/5/4/154f374f-e519-4bf4-b167-65bb3419295b/WindowsXP-KB828741-x86-ITA.EXE|updates/winxpsp1/windowsxp-kb828741-x86-ita.exe
 :: 
URL|NLD|http://download.microsoft.com/download/c/3/6/c367a850-9239-43a3-9914-6d9be29fdc2b/WindowsXP-KB828741-x86-NLD.EXE|updates/winxpsp1/windowsxp-kb828741-x86-nld.exe
 :: 
URL|RUS|http://download.microsoft.com/download/9/6/5/965969b8-b010-439f-923c-6cee6ef7a8e3/WindowsXP-KB828741-x86-RUS.EXE|updates/winxpsp1/windowsxp-kb828741-x86-rus.exe
+:: 
URL|FRA|http://download.microsoft.com/download/8/3/7/837b3c37-e6a7-4732-9271-56b8decf7c59/WindowsXP-KB828741-x86-FRA.EXE|updates/winxpsp1/windowsxp-kb828741-x86-fra.exe
 todo.pl .reboot-on 194 %Z%\updates\winxpsp1\windowsxp-kb828741-x86-%WINLANG%.exe 
/passive /n /norestart
 
 :: Critical update MS04-011 (835732)
@@ -327,6 +332,7 @@
 :: 

[Unattended] boot problem

2004-07-21 Thread Julien TOUCHE
i'm trying unattended 4.3 (on whitebox linux) on a hp compaq nx9005
notebook and both pxe boot failed.
with linux, it freezes. with at last:
ACPI : subsystem revision 20040326
spurious 8259A interrupt : IRQ7.
ACPI : IRQ9 SCI : Level Trigger
with dosboot and undis3c.imz (network card is a National Semiconductor
DP83815/816 10/100 Ma), i can trace and Emm386.exe is followed by an
instant reboot. without, i get
UMB's unavailable
Kernel: allocated 40 Diskbuffers = 21280 Bytes in HMA
ideas ?
thanks
Regards
Julien
note: i also join a small patch to add FRA lang to office2k.bat

--- office2k.bat.orig   2004-07-21 19:27:57.0 +0200
+++ office2k.bat2004-07-21 19:47:31.0 +0200
@@ -11,6 +11,7 @@
 :: 
URL|NLD|http://download.microsoft.com/download/e/b/d/ebd43dd9-9cc8-4ea9-b6e1-dfc75a78984f/WindowsXP-KB810217-x86-NLD.exe|updates/winxpsp1/windowsxp-kb810217-x86-nld.exe
 :: 
URL|RUS|http://download.microsoft.com/download/a/a/d/aad356bb-ca20-4f89-a5bc-3a9b474c0d4c/WindowsXP-KB810217-x86-RUS.exe|updates/winxpsp1/windowsxp-kb810217-x86-rus.exe
 :: 
URL|ITA|http://download.microsoft.com/download/8/6/4/864155f4-9708-403b-b6e0-8fa7c3d25e20/WindowsXP-KB810217-x86-ITA.exe|updates/winxpsp1/windowsxp-kb810217-x86-ita.exe
+:: 
URL|FRA|http://download.microsoft.com/download/2/e/0/2e083379-cdbe-45bd-9b5a-488420cb2460/Windows2000-KB810217-x86-FRA.exe|updates/winxpsp1/windowsxp-kb810217-x86-fra.exe
 :: Buffer Overrun in Microsoft FrontPage Server Extensions Could Allow Code 
Execution
 :: http://support.microsoft.com/?kbid=810217
 todo.pl .reboot-on 194 %Z%\updates\winxpsp1\WindowsXP-KB810217-x86-%WINLANG%.exe /u 
/n /z
@@ -22,6 +23,7 @@
 :: 
URL|NLD|http://download.microsoft.com/download/e/e/7/ee74120e-cbb7-4f27-bc1f-933a4c4d6576/office2000-kb830349-client-nld.exe|updates/office2k/office2000-kb830349-client-nld.exe
 :: 
URL|RUS|http://download.microsoft.com/download/a/b/f/abf7c3a2-296f-4219-ad58-653d334d7b51/office2000-kb830349-client-rus.exe|updates/office2k/office2000-kb830349-client-rus.exe
 :: 
URL|ITA|http://download.microsoft.com/download/b/a/b/babcaa5a-3a95-4fef-a257-08d050064bd6/Office2000-kb830349-client-ita.exe|updates/office2k/office2000-kb830349-client-ita.exe
+:: 
URL|FRA|http://download.microsoft.com/download/8/4/4/844d78e5-3637-404f-a0ad-b1458430456c/office2000-kb830349-client-fra.exe|updates/office2k/office2000-kb830349-client-fra.exe
 :: http://support.microsoft.com/?kbid=830349
 :: http://www.microsoft.com/technet/security/bulletin/MS03-050.mspx
 todo.pl %Z%\updates\office2k\Office2000-kb830349-client-%WINLANG%.exe /q 
/c:\msiexec /qb /l* %SystemDrive%\netinst\logs\excelop.txt /p EXCELop.msp 
REBOOT=ReallySuppress\
@@ -42,6 +44,7 @@
 :: 
URL|NLD|http://download.microsoft.com/download/8/2/9/829f8dcc-ed43-4054-a3c5-ea630db63f63/office2000-kb826292-client-nld.exe|updates/office2k/office2000-kb826292-client-nld.exe
 :: 
URL|RUS|http://download.microsoft.com/download/1/e/c/1ecb33e7-bc4e-46d0-ac80-d9bfb6c04cb5/office2000-kb826292-client-rus.exe|updates/office2k/office2000-kb826292-client-rus.exe
 :: 
URL|ITA|http://download.microsoft.com/download/2/f/f/2ff717e2-83f2-42d3-8532-0709288c9453/office2000-kb826292-client-ita.exe|updates/office2k/office2000-kb826292-client-ita.exe
+:: 
URL|FRA|http://download.microsoft.com/download/a/4/6/a460bfac-362c-45c4-9f9a-ef8703a331dc/office2000-kb826292-client-fra.exe|updates/office2k/office2000-kb826292-client-fra.exe
 :: http://support.microsoft.com/?kbid=826292
 :: http://www.microsoft.com/technet/security/bulletin/ms03-038.mspx
 todo.pl %Z%\updates\office2k\office2000-kb826292-client-%WINLANG%.exe /q 
/c:\msiexec /qb /l* %SystemDrive%\netinst\logs\snapviewop.txt /p SNAPVIEWop.msp 
REBOOT=ReallySuppress\
@@ -52,6 +55,7 @@
 :: 
URL|NLD|http://download.microsoft.com/download/9/b/1/9b1d2c2f-7261-4040-ac27-abb796897655/office2000-kb824993-client-nld.exe|updates/office2k/office2000-kb824993-client-nld.exe
 :: 
URL|RUS|http://download.microsoft.com/download/5/e/2/5e21412f-aa5f-4efc-abf6-8e918f854061/office2000-kb824993-client-rus.exe|updates/office2k/office2000-kb824993-client-rus.exe
 :: 
URL|ITA|http://download.microsoft.com/download/4/4/7/4477a633-2258-47eb-8460-9c1918a39e32/office2000-kb824993-client-ita.exe|updates/office2k/office2000-kb824993-client-ita.exe
+:: 
URL|FRA|http://download.microsoft.com/download/6/d/b/6dbd9992-6459-426b-89c9-a7bd15796f08/office2000-kb824993-client-fra.exe|updates/office2k/office2000-kb824993-client-fra.exe
 :: http://support.microsoft.com/?kbid=824993
 :: http://www.microsoft.com/technet/security/bulletin/MS03-036.mspx
 todo.pl %Z%\updates\office2k\office2000-kb824993-client-%WINLANG%.exe /q 
/c:\msiexec /qb /l* %SystemDrive%\netinst\logs\msconvop.txt /p MSCONVop.msp 
REBOOT=ReallySuppress\
@@ -62,6 +66,7 @@
 :: 

Re: [Unattended] shortcut.pl + arguments

2004-06-08 Thread Julien TOUCHE
 
 OK, I added a --description option to set the infotip.
 

on the same matter, is it possible to add a --name option so we don't
need to make an extra move to change the name of the shortcut ?

Regards,

Julien



---
This SF.Net email is sponsored by: GNOME Foundation
Hackers Unite!  GUADEC: The world's #1 Open Source Desktop Event.
GNOME Users and Developers European Conference, 28-30th June in Norway
http://2004/guadec.org
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] shortcut.pl + arguments

2004-06-08 Thread Julien TOUCHE
On Tue, Jun 08, 2004 at 12:15:26PM +0200, Julien TOUCHE wrote:
 
 on the same matter, is it possible to add a --name option so we don't
 need to make an extra move to change the name of the shortcut ?

Bad explication.
real problem is wheren using special as target, how do you give a
shortcut name different than application ?

thanks
Regards,
Julien.




---
This SF.Net email is sponsored by: GNOME Foundation
Hackers Unite!  GUADEC: The world's #1 Open Source Desktop Event.
GNOME Users and Developers European Conference, 28-30th June in Norway
http://2004/guadec.org
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] few problems

2004-05-18 Thread Julien TOUCHE
On Tue, May 18, 2004 at 03:18:54PM -0400, Patrick J. LoPresti wrote:
 
  * first, with linux ( 4.2b), i get a format error in dosemu:
  Dos driver error (hex): 01
  fdisk_cmds=fdisk /delete /pri:1;fdisk /prio:2000;fdisk /activate:1
 
 Please try this instead:
 
   fdisk_cmds=fdisk /delete /pri:1;fdisk /pri:4000;fdisk /activate:1

was it, works !
sadly for me, it seems
* linux 2.6 is not too happy with dma from my shuttle sb51g
hda: dma_timer_expiry: dma status == 0x21
hda: timeout error
hda: timeout error, status = 0xd0 {busy}
hda: DMA disabled
multiple times
* my disk need to be changed ...
end_request: I/O eror, dev hda, sector X

so i can't achieve the first stage of windows install 

 
  * with dosboot  memdisk 2.0.6/9, rtsnd.imz stops on
  Loading boot sector ... booting ...
 
 Try upgrading your version of memdisk to the one we ship.  You need to
 use 2.0.10-pre1 or later, which supports WinImage (pkzip) style
ok, works too.

Regards

Julien



---
This SF.Net email is sponsored by: SourceForge.net Broadband
Sign-up now for SourceForge Broadband and get the fastest
6.0/768 connection for only $19.95/mo for the first 3 months!
http://ads.osdn.com/?ad_id=2562alloc_id=6184op=click
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


[Unattended] 4.1a: install.pl problem

2004-05-15 Thread Julien TOUCHE
i encounter some problem with a pxe install with 4.1a  linux (just cvs):
* it stops just after partition question
internal error at /z/dosbin/install.pl line 504
main::convert_fdisk_parted(' fdisk /delete /pri:1') called at
/z/dosbin/install.pl line 1412
* more, even with the rw flag on z mount and a 1777-tmp dir on server /z,
i can't copy my log:
smb_create: tmp/log failed, error=-2
cp: unable to open '/z/tmp/log': No such file or directory
* one last thing, i failed to find for now, is the right cmd to add to
partition menu
  582 my $ret = menu_choice^M
583 ('Do nothing (continue)' = undef,^M
584  'Run partitioning tool manually (experts only)' =
$interactive_cmd,^M
585  'Whole disk C:', =^M
586  'fdisk /pri:100,100',^M
587  '4G C:, rest D:' =^M
588  'fdisk /pri:4096;fdisk /pri:100,100 /spec:7',^M
to have a use first partition and nothing else, and as install as
pre_cmd/post_cmd try an empty cmd but doesn't work
ideas ?
Regards
Julien
note: you may also make a mount check to avoid multiple /z mounting when
launching /etc/master multiple times



---
This SF.Net email is sponsored by: SourceForge.net Broadband
Sign-up now for SourceForge Broadband and get the fastest
6.0/768 connection for only $19.95/mo for the first 3 months!
http://ads.osdn.com/?ad_id=2562alloc_id=6184op=click
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


[Unattended] shortcut.pl + arguments

2004-04-30 Thread Julien TOUCHE
i try to get some shortcut with arguments: something like
\path\to\mozilla -mail

seems unattended shortcut.pl can't handle that.
shortcut.pl \c:\Program Files\mozilla.org\Mozilla\mozilla.exe\
http:\/\/url test.lnk = C:\c:\Program
Files\mozilla.org\Mozilla\mozilla.exe http:\url

i try with some vbs but encounter some bad quotes
lnk.TargetPath = Chr(34)  c:\Program
Files\mozilla.org\Mozilla\mozilla.exe  Chr(34)  
url '= C:\c:\Program
Files\mozilla.org\Mozilla\mozilla.exe url

unix way of escaping doesn't work and in all case, it seems vb add some
quotes on both end or maybe it's windows as shortcut.pl has this issue
too.

any ideas ?

Regards

Julien

one extra note: add a description option to shortcut.pl,
http://www.winnetmag.com/WindowsScripting/Article/ArticleID/9176/9176.html


---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE. 
http://ads.osdn.com/?ad_id=3149alloc_id=8166op=click
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] shortcut.pl + arguments

2004-04-30 Thread Julien TOUCHE
Patrick J. LoPresti wrote:

I have added a --arguments option to shortcut.pl.  So now this
should do what you want:

OK, I added a --description option to set the infotip.
thanks a lot
Regards
		Julien

---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE. 
http://ads.osdn.com/?ad_id=3149alloc_id=8166op=click
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] registry + other user

2004-03-26 Thread Julien Touche
On Fri, Mar 26, 2004 at 10:35:20AM -, James Barlow wrote:
 In the Windows 2000 Resource Kit there is a utility reg.exe that can be
 used in batch files to script registry modifications.
 
 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

but coult it elevate privilege to change reg entry ? (unlike perl,
autoit, ...)

a normal user (and guest) can't modify all keys of his current_user
tree: for example, if i log in as a user and try to load a reg to
disable  control panel, run,  co, it says it can't: some are opened by
system or other process.

regards

julien


---
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_id=1470alloc_id=3638op=click
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


[Unattended] registry + other user

2004-03-25 Thread Julien TOUCHE
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.
Regards

		Julien



---
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_id=1470alloc_id=3638op=click
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] registry + other user

2004-03-25 Thread Julien TOUCHE
Patrick J. LoPresti wrote:

  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.
i know, but if i try with group policy, i'm falling here:
http://support.microsoft.com/default.aspx?scid=kb;en-us;q315675sd=tech
a complex procedure to have one group policy for admins, and one for
the rest. i would prefer making a few more differences.
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.
do you know if ntuser.dat can be prepared and copy on a new system
thereafter ?
if it's possible, we could load some reg for admin/machine entries and
let somes ntuser.dat for guest, normal user, or any types of users. right ?
http://www.microsoft.com/windows2000/en/server/help/load_hive_reged.htm
http://cvs.sourceforge.net/viewcvs.py/unattended/unattended/install/bin/win2ksp4-notips.pl?view=markup
thanks for the links.
very interesting
Regards

		Julien

---
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_id=1470alloc_id=3638op=click
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] make iso?

2004-01-04 Thread Julien TOUCHE
Ryan Nowakowski wrote:

Hey Folks,

I thought it would handy to setup your unattended install server and
then be able to type make iso to produce a bootable cd image of your
entire install including os and apps.  You could then use that cd
to install a non-network connected host by booting from the cd and
answering the same questions as the network install.  Of course, you're
limited by what you can squeeze on a cd.  Maybe it would be possible to
automatically split up the installation onto multiple cds and then have
the perl scripts ask the user to switch them.  Has anyone tried this?
Would this be useful to anyone else?
i think this would be very interesting to have.

i have take the path auto cd to auto network but now i don't maintain my 
cd, except there are some situations where it would be better ...

Regards

		Julien

---
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_id=1278alloc_id=3371op=click
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] Problem with booting from PXE

2003-11-06 Thread Julien TOUCHE
Patrick J. LoPresti wrote:

Julien TOUCHE [EMAIL PROTECTED] writes:


i'm not sure tsize is a required tftp feature here: i'm currently
testing unattended on an openbsd server (stock dhcp, tftpd + pxegrub
and memdisk) and have no problem with it (and openbsd tftpd does not
support tsize; pxelinux doesn't work with it).


We are talking about using PXE to boot, not floppy or CD-ROM.

And for PXE booting, we use PXELINUX which definitely requires tsize.

i know. i just say, if you want (not default in unattended), you can use 
pxegrub which doesn't have tsize requirement. It works well for me to 
boot floppy image or linux kernel (has not try netbsd; openbsd doesn't 
work) and unattended solution.

Regards

		Julien



---
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?   SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] Problem with booting from PXE

2003-11-05 Thread Julien TOUCHE
I am running solarwinds TFTP Server which appears to work all the way up to loading the DEFAULT (image)

at this point it produces the error 'TFTP server does not support the tsize option'
i'm not sure tsize is a required tftp feature here: i'm currently 
testing unattended on an openbsd server (stock dhcp, tftpd + pxegrub and 
memdisk) and have no problem with it (and openbsd tftpd does not support 
tsize; pxelinux doesn't work with it).

Regards

		Julien



---
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?   SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
___
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info