Re: [Unattended] 4.8 Release Candidate1

2008-04-07 Thread [EMAIL PROTECTED]
I just tried it with pxe boot :

Everything goes fine, except a warning  :

install.pl says that bootdisk version 4.7 doesn't match the current 
version 4.8

ntxinstall runs perfectly, nice stuff !

Another point :

there was no pxelinux.0 file in linuxboot/tftpboot. I copied my old one 
and everyting goes fine. Is it normal, I can't remember having this 
problem the last time i install unattended ( 3 years ago !)

Thanks,

Denis



-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Register now and save $200. Hurry, offer ends at 11:59 p.m., 
Monday, April 7! Use priority code J8TLD2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] Strange error

2008-01-15 Thread [EMAIL PROTECTED]
>aren't the filenames too long? try shortening the directory names,
>pathname+filename max 64 chars

In my unattend.txt I put: OemPnPDriversPath = "d\hp\b;d\hp\m;d\hp\v"
So the complete path will be: \install\os\xp\i386\$OEM$\$1\d\hp\b
This is less than 64 chars when an filename is added (max 12 chars).

Feike



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info


[Unattended] little bug nano --dos or -N ?

2007-06-26 Thread [EMAIL PROTECTED]

we found a problem when editing the files unattend.txt doit.bat 
postinst.bat
we can't edit and verify them


in  install/dosbin/install.pl :

system 'nano', '--dos', '--nowrap', dos_to_host ($file);

seems not to work

we replace --dos by -N to solve the problem

­if ($is_linux) {
 system 'nano', '-N', '--nowrap', dos_to_host ($file);


who confirm?




-- 
 Maurice Libes
Tel : +33 (04) 91 82 93 25Centre d'Oceanologie de Marseille 
Fax : +33 (04) 91 82 93 03UMS2196CNRS- Campus de Luminy, Case 901 
      F-13288 Marseille cedex 9

Veuillez noter ma nouvelle adresse ==> [EMAIL PROTECTED]   



-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] Added drivers, but not detecting?

2007-04-30 Thread [EMAIL PROTECTED]
Tim Bates a écrit :
> I have just added a pile of drivers for some new laptops to the $OEM$\$1 
> dir, but they aren't being picked up by the resulting Windows install.
>
> The existing ones had been working for our existing PCs, and I just 
> dropped more new drivers in. They copy across fine and I can manually 
> install them from where they end up. But it seems they aren't being 
> loaded as drivers during setup (joining the domain fails due to no 
> network card).
>   
it seems to be the same problem as discussed before in early april.. 
look at the archives..
adding more drivers may lead to a "oemPnPDriversPath" string too long.. 
so some drivers path are not taken into account at install time
the max length for such a string is 4096 chars 
http://support.microsoft.com/kb/312535
if your drivers are behind this limit they are not taken into account

we applied here the solution given by michael Kidd (thanks..)
it is not simple but it works (look in the archive its mail from april 
12th...
which consists in modifying the "hivesft.inf" file, and giving the 
driver path string as a register key...

Find a line that says this:
HKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion","DevicePath",0x00020002,"%SystemRoot%\inf"
 


let's hope a well integrated solution in the unattended system?
ML

> Anyone got any tips or ideas? Did I miss something I was supposed to do 
> (it's been a while since I added drivers)?
>
> TB
>
> **
> This message is intended for the addressee named and may contain
> privileged information or confidential information or both. If you
> are not the intended recipient please delete it and notify the sender.
> **
>
> -
> This SF.net email is sponsored by DB2 Express
> Download DB2 Express C - the FREE version of DB2 express and take
> control of your XML. No limits. Just data. Click to get it now.
> http://sourceforge.net/powerbar/db2/
> ___
> unattended-info mailing list
> unattended-info@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/unattended-info
>   



-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] Added drivers, but not detecting?

2007-04-30 Thread [EMAIL PROTECTED]
Tim Bates a écrit :
> I have just added a pile of drivers for some new laptops to the $OEM$\$1 
> dir, but they aren't being picked up by the resulting Windows install.
>
> The existing ones had been working for our existing PCs, and I just 
> dropped more new drivers in. They copy across fine and I can manually 
> install them from where they end up. But it seems they aren't being 
> loaded as drivers during setup (joining the domain fails due to no 
> network card).
>   

it seems to be the same problem as discussed before in early april.. 
look at the archives..
adding more drivers may lead to a "oemPnPDriversPath" string too long.. 
so some drivers path are not taken into account at install time
the max length for such a string is 4096 chars 
http://support.microsoft.com/kb/312535
if your drivers are behind this limit they are not taken into account

we applied here the solution given by michael Kidd (thanks..)
it is not simple but it works (look in the archive its mail from april 
12th...
which consists in modifying the "hivesft.inf" file, and giving the 
driver path string as a register key...

Find a line that says this:
HKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion","DevicePath",0x00020002,"%SystemRoot%\inf"
 


let's hope a well integrated solution in the unattended system?
ML
> Anyone got any tips or ideas? Did I miss something I was supposed to do 
> (it's been a while since I added drivers)?
>
> TB
>
> **
> This message is intended for the addressee named and may contain
> privileged information or confidential information or both. If you
> are not the intended recipient please delete it and notify the sender.
> **
>
> -
> This SF.net email is sponsored by DB2 Express
> Download DB2 Express C - the FREE version of DB2 express and take
> control of your XML. No limits. Just data. Click to get it now.
> http://sourceforge.net/powerbar/db2/
> ___
> unattended-info mailing list
> unattended-info@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/unattended-info
>   



-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] Permission denied problem.

2007-04-18 Thread [EMAIL PROTECTED]
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

try adding
fake oplocks = yes

in the smb.conf
also check if the correct user is used (unattended uses user=windows and not
guest)

Paulo Almeida wrote:
> Hi,
> 
> We have installed Unattended 4.6 with following environment:
> 
>   - openSuse Linux 10.2;
>   - samba server 3.0.23d;
>   - dhcp server 3.0.5;
>   - aftp server 0.7;
> 
> The samba server machine was joined to ours Windows-NT domain. We put the
> suggested configuration lines to smb.conf:
> 
> [global]
> ...
> guest account   = guest
> unix extensions = no
> ...
> [install]
>comment  = Unattended
>writable = no
>locking  = no
>path = /path/to/unattended/install
>guest ok = yes
> 
> The client process boot (PXE) runs without problems until installation
> script "Z:\dosbin\install.pl". In this step occur the following error:
> 
> Can't open perl script "Z:\dosbin\install.pl" : permission denied (EACCES)
> Aborting.
> A:>
> 
> I've searched on mailing list archives about this error but i did not find
> nothing relevant. Also a google search did not returned nothing.
> 
> Doing:
> 
> Z:
> cd \dosbin
> dir
> more install.pl
> 
> Result that i can list the content of install.pl file.
> 
> Any help??
> 
> Thanks,
> Paulo Almeida
> 

- --
Regards
Vladimir Vitkov
Operations Team
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFGJjJjoiOVExCFVC0RAgFxAJ0ck9iG5DNluXq5ixlT18AzFLxyWACfS2Br
r8MTA2mn9iRh3LR3Tfzs9dI=
=A4/F
-END PGP SIGNATURE-

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] unattended boot problem

2007-02-27 Thread [EMAIL PROTECTED]
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

>> yes i confirm
>> after i changed the SATA mode, installation could continue but i had
>> many errors further such as
>> could not copy atmfd.dll
>> could not copy sprt040c.dll
>> and obrs040c.dll
shit happens (windows is so fragile and with a temper)
> 
>> so i would like to use mario's linux boot disk as you advise...
>> but i dont know where to find it? if you have a link... and some more
>> explanations in order to understand what it solves, if it is an official
>> patch or not etc...
http://unattended.technikz.de/index.php/Main_Page
Documentation is a bit scarce but worth the reading
> 

- --
Regards
Vladimir Vitkov
Operations Team
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFF5GNzoiOVExCFVC0RAvceAJ9eeo5FtXG7dSDGiTLAnx1t7eKH+QCfTDQ3
fdr3gouThIBQ1wix09ZAeLM=
=mLCd
-END PGP SIGNATURE-

-
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.php&p=sourceforge&CID=DEVDEV
___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] unattended boot problem

2007-02-27 Thread [EMAIL PROTECTED]
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1



Maurice Libes wrote:
> Sebastian Mellmann a écrit :
>> Change to SATA legacy mode should fix the problem.
> 
> 
> ok, i found it,
> (don't take into account my prior mail )
> 
> in the BIOS
> in the SATA operation part; there's a choice called "combination mode"
> (for older OS)
It won't do you any good. It almost cripples the system. Slow transfers and
etc. The better route is to use mario's linux boot disk (look in the archives)
> 
> thanks
> ML
> 
>>
>>  Original-Nachricht ----
>> Datum: Tue, 27 Feb 2007 11:41:14 +0100
>> Von: Maurice Libes <[EMAIL PROTECTED]>
>> An: unattended-info@lists.sourceforge.net
>> CC: Betreff: [Unattended] unattended boot problem
>>
>>> hello
>>>
>>> at the beginning of install time, when booting on the 2.6.10
>>> unattended kernel, i got this problem on a Dell optiplex GX520 computer
>>>
>>>  cut-
>>> loading edd
>>> BIOS EDD facility ...
>>> done loading edd
>>> and locate the boot device
>>> Unrecognized interface type in /sys/firmware/edd/int13_dev80/interface
>>> Unable to determine boot device at /usr/bin/find_boot_device line 212
>>> find boot device failed
>>> dropping to shell
>>>
>>>
>>> what's wrong? what can i possibly do
>>> many thanks for your help
>>>
>>> ML
>>>
>>>
>>> -- 
>>>   Maurice Libes
>>> Tel : +33 (04) 91 82 93 25Centre d'Oceanologie de Marseille
>>> Fax : +33 (04) 91 82 93 03UMS2196CNRS- Campus de Luminy,
>>> Case 901
>>>F-13288 Marseille cedex 9
>>>
>>> Veuillez noter ma nouvelle adresse ==> [EMAIL PROTECTED]
>>>
> 
> 
> 
> 
> 
> -
> 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.php&p=sourceforge&CID=DEVDEV
> 
> 
> 
> 
> ___
> unattended-info mailing list
> unattended-info@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/unattended-info

- --
Regards
Vladimir Vitkov
Operations Team
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFF5BisoiOVExCFVC0RAhhYAJ0XlWs3kYXdPNAqbjpDPLMmdg1KZwCgye6q
SW85saA3C7bEGyrbzVGKNys=
=z+8S
-END PGP SIGNATURE-

-
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.php&p=sourceforge&CID=DEVDEV
___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] Concurrent installs crashing

2007-02-22 Thread [EMAIL PROTECTED]
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

i can suggest to eliminate the impact of the samba share. On some strange
configurations we have tested it fails to obtain write lock (though it wont
write), so we have enabled "fake oplocks" in samba which solved our problem

Andrew McBeath wrote:
> Hi,
> 
> I'm trying to do a large number of installations of win2k/xp/2k3 across 
> a bunch of blades, and have run into a problem I dont know how to get 
> around.
> I have the unattended infrastructure all working fine, and single 
> installs work perfectly.
> 
> The problem is: When I install more than one machine at a time, the 
> first machine (usually) installs without problem, but all others (even 
> when theres only two) crash at the end of the file copy part.
> 
> The error message is:
> 
> ---
> The following value in the .SIF file used by setup is corrupted or missing:
> 
> Value 1 on line 0 in section [Keyboard]
> 
> Setup cannot continue.  To quit Setup, press F3.
> ---
> 
> The network share is read-only off a samba server, so I doubt there 
> could be any race conditions there and from my understanding of the 
> unattended process, everything else will be local on the individual 
> machines.  Am I right in concluding that?
> 
> 
> Any advice or assistance would be appreciated.
> 
> 
> Kind Regards,
> 
> Andrew
> 
> -
> 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.php&p=sourceforge&CID=DEVDEV
> ___
> unattended-info mailing list
> unattended-info@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/unattended-info

- --
Regards
Vladimir Vitkov
Operations Team
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFF3Vx4oiOVExCFVC0RAglfAJ9zEa13Cv17FYQTJ7zEOnPVVRJEHgCfb5k+
NoDr8vX3xudKSXmFVnPPf+c=
=Xn11
-END PGP SIGNATURE-

-
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.php&p=sourceforge&CID=DEVDEV
___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info


[Unattended] Problems with 3ware raid controlers

2006-12-28 Thread [EMAIL PROTECTED]
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi group,

i have the following 3ware controller

3ware 8006-2LP

this is sata disc raid controller supported under linux by the module 3w-.
The installation boots just fine, finds the drive (it is set in RAID 1 mode, 2
disks) sets up dosemu stuff and starts copying files then somewhere about the
90th percent of copying it fails with the following

Setup was unable to copy the following file:

MINGLIU.TT_

Additionally at the bottom is seen the following:

ERROR: Sector not found, AH=0x42!

repeated 3 times.
Also at about 30th percent the screen starts blanking every 10 seconds and
down ... reaching to almost instantaneous blanking after hitting  key

The question i have is:
Any idea what causes this behaviour?
Any idea where and how to fix it?

Googling didn't came up with anything usefull

Unattended is 4.2 i think, linux kernel is 2.6.14+
- --
Regards
Vladimir Vitkov
Operations Team
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFFk6HyoiOVExCFVC0RAo2BAJsEDyL2Njp9s17ghonNmnx+/UzTBgCeIT/j
Cx09SH1P5c+9QgjgRFwNCCM=
=VPEA
-END PGP SIGNATURE-

-
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.php&p=sourceforge&CID=DEVDEV
___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info


[Unattended] sound-pool.net News

2006-11-18 Thread [EMAIL PROTECTED]


  -
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.php&p=sourceforge&CID=DEVDEV___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] Server requirement

2006-11-03 Thread [EMAIL PROTECTED]
for OS dir - 600MB per version
for updates dir - 2 - 3 GB
for packages dir - 2 - 10 gb depending how much packages you will install (MUI 
is 2 G)

so .. about 20 G is enough

William Cheng wrote:
> Hi Nils,
> 
>  How about harddisk requirement, any suggestion? I guess this is quit
> important, since it is mainly a file server.
> 
>  Thanks
> 
> William
-- 
Regards
Vladimir Vitkov
Operations Team

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info


[Unattended] 有发票可代开

2006-10-12 Thread [EMAIL PROTECTED]
您好:
 我是广州市科飞贸易有限公司,
  现有剩余广告.运输.服务.商品.建筑
  等各种普通发票可以代开只收2% 的税点 
  联 人:   林生
  电 话: 020-33622299
  手 机: 13826444669
  回 邮:[EMAIL PROTECTED]
 
 

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info


[Unattended] (no subject)

2006-09-20 Thread [EMAIL PROTECTED]
尊敬的商家朋友: 您好!

 深圳市宝利达公司规模庞大,实力雄厚,本着互利互惠的原则向外优惠代办各类
发票,

  (普通发票为1-2%左右,增值发票为6%左右)税点高低可依所开金额大小酌情商讨!

所开具发票验证后再付款!对合作伙伴负责!   
 
 注: 普通发票包括商品销售(电子产品、五金交电、仪表仪器、机械设备、

塑胶制品、化工原料、医疗设备等)运输、租赁、广告设计、建筑安装、

其它服务等……真诚寻找合作伙伴,若有疑问,请来电咨询! 

  联 系 人:张小姐

  手机:13418640981

-
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.php&p=sourceforge&CID=DEVDEV___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] windows xp text setup missing files

2006-06-21 Thread [EMAIL PROTECTED]
Jan Aps wrote:
> Hey,
> 
>  
> 
> I'm quite new to unattended, so bear with me please.
> 
> 
> 
> I have a windows XP slipstreamed with SP2 (Dutch version). During the text
> mode part of the setup a get reports of missing files. Setup tells me that
> it cannot copy the following files
> 
> alcxwdm10.inf - alcxwdm25.inf
> 
> nvraidenu.dll
> 
> nvraidman.exe
> 
> nvraidservice.exe
> 
> nvraidsvenu.dll
> 
> nvraidwizard.dll
> 
> nvraidwizardenu.dll
nvidia driver right?
Probably too long name. That part is pure dos and does not like long names/paths
> 
>  
> 
> q312370_wxp_sp1_x86_ara.exe 
> 
... cut ...
> q312370_wxp_sp1_x86_cht.exe
Definitely long names.
Either fully slipstream theese patches (not needed because theese are just
different langs for one and the same) or shorten the name or eradicate them.
> 

-- 
Regards
Vladimir Vitkov
Operations Team

All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info


[Unattended] patch for ws2k3sp1-updates.bat

2006-06-21 Thread [EMAIL PROTECTED]
there is a bug in the updates for ws2k3sp1

the update for kb916281 is dl in ws2k3sp1 folder but is called from winxpsp2

patch attached
-- 
Regards
Vladimir Vitkov
Operations Team
--- ws2k3sp1-updates.bat2006-06-21 17:17:06.0 +0300
+++ ws2k3sp1-updates-fixed.bat  2006-06-21 17:19:16.0 +0300
@@ -112,7 +112,7 @@
 :: 
URL|RUS|http://download.microsoft.com/download/e/6/5/e65c16e1-6ee8-49ad-82c0-0ee8d1f0d7a6/WindowsServer2003-KB916281-x86-RUS.exe|updates/ws2k3sp1/windowsserver2003-kb916281-x86-rus.exe
 :: 
URL|SVE|http://download.microsoft.com/download/7/0/c/70c26a62-e849-44d2-ab70-11da85627062/WindowsServer2003-KB916281-x86-SVE.exe|updates/ws2k3sp1/windowsserver2003-kb916281-x86-sve.exe
 :: 
URL|TRK|http://download.microsoft.com/download/6/c/1/6c1c28f1-03e2-4e41-98b2-3cc89ba5f2cb/WindowsServer2003-KB916281-x86-TRK.exe|updates/ws2k3sp1/windowsserver2003-kb916281-x86-trk.exe
-todo.pl ".reboot-on 194 
%Z%\updates\winxpsp2\WindowsServer2003-KB916281-x86-%WINLANG%.exe /passive /n 
/norestart"
+todo.pl ".reboot-on 194 
%Z%\updates\ws2k3sp1\WindowsServer2003-KB916281-x86-%WINLANG%.exe /passive /n 
/norestart"
 
 :: Critical Updates
 
___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] samba error while copying files

2006-06-09 Thread [EMAIL PROTECTED]
The install process is using some copy which has the limitation that
pathlength is max 64 symbols. So from here comes this:

You have overly long dirname or permission problem.
The best candidate for long pathname is:
\os\ws2k3\$oem$\$1\drivers\

shorten it and you should be fine.
Also please check permissions on the path and case consistency. Either use
only Locase or Hicase

The samba options are usually of little importance, but you can try lifting up
the SO_SNDBUF to 16K sometimes helps speed up the copy

Bunting, Glen, IG wrote:
> All,
> 
> I have set up unattended and have successfully built w2k and w2k3
> servers.  However, lately (I think since I upgraded to 2.6) I have being
> seeing this error during the file copy process:
> 
> smb_proc_readdir_long: error=-2, breaking.
> 
> Can someone explain what the error means and even better how to prevent
> the error in the first place?
> 
> I am using the Linux boot disk for unattended 4.6.  The server is
> running redhat AS 3.0.  I am using samba-3.0.7-1.3E.  The smb options
> that I am using are the defaults:
> 
> socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192
> 
> Thanks
> 
> Glen
> 
> 
> *
> If you are not the intended recipient of this e-mail, please notify 
> the sender immediately. The contents of this e-mail do not amend 
> any existing disclosures or agreements unless expressly stated.
> *
> 
> 
> 
> ___
> unattended-info mailing list
> unattended-info@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/unattended-info

-- 
Regards
Vladimir Vitkov
Operations Team


___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] VNC 4

2006-03-15 Thread [EMAIL PROTECTED]
Scott Allison wrote:
> is it posible to install VNC 4 with out the start menu.
probably yes

remark: learn how to ask good questions this one is very bad.
how to improve it:
1) provide all necessary info os, version exaxct, homepage would be 
nice.
2) google is your friend ... i am not
-- 
Regards
Vladimir Vitkov
Operations Team


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] Windows Components

2006-03-15 Thread [EMAIL PROTECTED]
Sven Geipel wrote:
> Scott Allison schrieb, Am 14.03.2006 14:03:
> 
>>How can I Not install windows components, ie games, outlook express,
>>& msn Explorer.
>>  
> == unattend.txt ==
> [Components]
> freecell = off
> hearts = off
> Minesweeper = off
> Pinball = off
> Solitaire = off
> Spider = off
> zonegames = off
One side remark: Do not hope you will be left with choice. You WILL install
whatever MS decides. As you can see most of the components that can be turned
off are mainly cosmetical and practically useless. If targeting to a much more
streamlined version (no stuff/drivers/etc) try using nlite to cleanup the i386
and put it in unattended

-- 
Regards
Vladimir Vitkov
Operations Team


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] Registry Entry

2006-03-01 Thread [EMAIL PROTECTED]
Scott Allison wrote:
> 
> 
> 
> How can I change the Regitry setting? I wnat to change the value of
> the following
> 
> HKEY_LOCAL_MACHINE\SYSTEM\CURRENTCONTROLSET\SERVICES\BROWSER\PARAMETERS\MaintainServerList.

like this
todo.pl "regedit.exe /s %Z%\scripts\fixes\mntlst.reg"

== mntlst.reg ==
[REGEDIT4]
...

Best way is to change by hand and after that export the needed keys and use
the resulting file
-- 
Regards
Vladimir Vitkov
Operations Team


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] installation speed

2006-01-20 Thread [EMAIL PROTECTED]
> Same here as well.. its the reboots on the updates that slows it down...
> I wonder if using a WSUS server might help things here...
> Brett
There is no salvation of the updates part if you do it the classic way. The
possible solutions are slipstreaming and patch integration or moving to
something that does not reboot so much ...


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] Last script

2006-01-17 Thread [EMAIL PROTECTED]
open install.pl and look for penultimate
put this renaming above it and make sure you don't do anything else after 
reboot.

Andrè Wilmann wrote:
> Hey.
> 
> As the final touch i want to rename the administrator account when the
> installation is finished.
> I've found out i could do this whit; todo.pl "start /wait
> %Z%\packages\netuser.exe administrator /name:newusername".
> If i call that line in the top of base.bat it will rename the account to
> soon, so the autologon will fail.
> 
> Where do i putt the final command?
> 
> / AW
> 
> 
> ---
> This SF.net email is sponsored by: Splunk Inc. Do you grep through log
> files
> for problems?  Stop!  Download the new AJAX search engine that makes
> searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
> ___
> unattended-info mailing list
> unattended-info@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/unattended-info

-- 
Regards
Vladimir Vitkov
Operations Team


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] Unable to read from windows 2000 cd

2006-01-11 Thread [EMAIL PROTECTED]
Hi chad,

> The feedback I got befo re was that the server drive is slow, but I have
> a really hard time believing that theory, since the files can be copied
> from a cd-rom drive during install where the process is the same - just
> a file copy.
this is rarely the case. Well if you are trying to install 50+ clients at the
same time it is an issue
  The server is less than one year old an has an ata133 ide
> drive running at 7200 rpm.  The machine that it is going to is a mere
> pIII 450, so if there is a problem it is that the client is slow.  Can
> someone explain this better, and/or tell me what I am doing wrong?
Not quite sure what exactly is going on but here are few suggestions
1) do you have excessively long paths sth like dir1\dir2\dir3\dir4\i386
2) is your OS_MEDIA variable too long
3) is by any chance the network too "loud" i.e. too much traffic in it.
4) which version of unattended you use
5) are the network cables ok

-- 
Regards
Vladimir Vitkov
Operations Team


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] Unattended updates

2006-01-09 Thread [EMAIL PROTECTED]


Chad Anderson wrote:
> Thanks Vladimir, but this does not work as presented.  I must be missing
> something.
>  
> When I go to a command prompt, on the windows machine with unattended on
> it, and change to the /scripts folder and type in cvs -uD I
> get a message that cvs -uD is recognized as a valid internal or external
> command.  What else is required to do this in the manner you have
> suggested, and being on that windows machine?
>  
> Thank you!
> 
Sorry Chad, my fault. The procedure i have described is for *NIX machine not
for win. But the idea is as follows:
1) get the current version of the scripts (with cvs -uD) cvs is a concurent
versioning system tool. Also you can get the updated version from sf.net web
based cvs tree. For you more important are the updates scripts. these scripts
are called like ws2k3-updates.bat

2) the check and prepare scripts are used to see if something is changed
and/or missing and get it from somewhere.

3) with perl you can parse the *-updates.bat files to pick only the necessary
urls and after that to feed them to some sort of downloader. As far as i know
wget has win version and is a prety good tool.

you don't need cygwin if you just want to stay current on the updates
The task of syncyng the updates could be automated and i strongly advise on that
> 
> procedure is as follows
> 
> cd /scripts
> cvs -uD
> ./check
> ./prepare
> 
> the interesting files are
> -updates.bat
> they have the links in them. The prepare script fetches the
> necessary urls
> 
> Chad Anderson wrote:
> > Can someone please direct me to documentation/instructions on how to
> > keep unattended updates (like all the ms updates) current on a
> Microsoft
> > server, as opposed to a ?NIX server?
> >
> > Thank you!
> >
> > Chad D. Anderson ([EMAIL PROTECTED] )
> >
> > Yahoo! DSL
> > >> Something to write home about. Just $16.99/mo. or less
> 
> -- 
> Regards
> Vladimir Vitkov
> Operations Team
> 
> 
> ---
> This SF.net email is sponsored by: Splunk Inc. Do you grep through
> log files
> for problems? Stop! Download the new AJAX search engine that makes
> searching your log files as easy as surfing the web. DOWNLOAD SPLUNK!
> http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
> ___
> unattended-info mailing list
> unattended-info@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/unattended-info
> 
> 
> Yahoo! Photos
> Ring in the New Year with Photo Calendars
> <http://us.rd.yahoo.com/mail_us/taglines/photos/*http://pa.yahoo.com/*http://us.rd.yahoo.com/mail_us/taglines/photos/evt=38087/*http://pg.photos.yahoo.com/ph//page?.file=calendar_splash.html&.dir=>.
> Add photos, events, holidays, whatever.

-- 
Regards
Vladimir Vitkov
Operations Team


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] Unattended updates

2006-01-06 Thread [EMAIL PROTECTED]
procedure is as follows

cd /scripts
cvs -uD
./check
./prepare

the interesting files are
-updates.bat
they have the links in them. The prepare script fetches the necessary urls

Chad Anderson wrote:
> Can someone please direct me to documentation/instructions on how to
> keep unattended updates (like all the ms updates) current on a Microsoft
> server, as opposed to a ?NIX server?
>  
> Thank you!
>  
> Chad D. Anderson ([EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>)
> 
> Yahoo! DSL
> <http://pa.yahoo.com/*http://us.rd.yahoo.com/evt=37474/*http://promo.yahoo.com/broadband/
>> Something to write home about. Just $16.99/mo. or less

-- 
Regards
Vladimir Vitkov
Operations Team


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] broadcom ethernet devices and linuxboot

2005-12-02 Thread [EMAIL PROTECTED]


[EMAIL PROTECTED] wrote:
> hello list, 
> 
> using unattended 4.6 linux boot cd i cannot use the onboard "Broadcom
> NetXtreme Gigabit Ethernet" device of a hp compaq dc7600, it seems there is
> no driver found for the device.
> 
> strange thing is that a nc6220 notebook with a "Broadcom NetXtreme Gigabit
> Ethernet" device is supported by the linux boot without problems.
> 
> any hints ? 
create the following dir structure
i386
 \$oem$
  \$1
   \drivers
\nic
 \brd
  + drivers for nics

and modify the unattended.txt this way

[Unattended]
UnattendMode=FullUnattended
UnattendSwitch=Yes
OemPreinstall=yes
DriverSigningPolicy=Ignore
OemPnPDriversPath=drivers\nic\brd

that will add additional path in which to search for the drivers. And as added
bonus will copy these drivers in c:\

of course you can place them somewhere else where they will be visible for the
instalation and change the paths accordingly
> 
> thank you 
> 
> 

-- 
Regards
Vladimir Vitkov
Operations Team


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] merging 2 instalation trees

2005-11-30 Thread [EMAIL PROTECTED]
Jerome Brown wrote:
> Are you using a Windows or Linux server?
the fileserver is lunux based
> 
> In regards to saving space, you could link the files so that you only store
> one copy of the common files and separate copies of the different files.
I am looking exactly for that and have an idea how to do it but the overhead
for each different tree (for the moment) is about 2 Gigs (3 different windows
installs)
> For example, we have different versions of WinXP for install for our customers
> (OEM, Volume, Retail etc), and so save space I have linked all the
> installation files except for the setupp.ini files which control what type
> of install it is.
Or maybe you are suggesting to link all the contents of i386? that will exaust
too many inodes on the fs. For a sorry the current filesystem does not support
hardlinks :(

-- 
Regards
Vladimir Vitkov
Operations Team


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info


[Unattended] merging 2 instalation trees

2005-11-30 Thread [EMAIL PROTECTED]
Hello List :),

we have the following situation

4 different types of hardware stumped in 2 trees.
We will be introducing 5th type of hardware which unfortunately will have to
reside in its own tree. This is not quite acceptable. Apart from the waste of
space it brings too much overhead in the management of the trees (updates,
addtl programs, etc.). The trees are different in only one aspect one of the
trees has i386/$oem$/textmode folder and the other does not.

My questions
1) Has someone idea how to merge the trees so i get only one tree for almost
all the stuff and just the differences reside somewhere else?
2) Is it possible to install different sata drivers (needed rough the textmode
setup) with only one txtsetup.oem? Of course the unattended.txt will be
different for theese.

thanks
-- 
Regards
Vladimir Vitkov
Operations Team


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info


Re: [Unattended] Problems installing windows updates

2005-11-22 Thread [EMAIL PROTECTED]
Jerome Brown wrote:
> Try running the updates manually on the machinew that is having the
> problem and note why the install fails. I have had this occasionally on
> machines with updates such as .NET Framework where the machine already
> has this installed, and the installer returns an odd error code.
Manual install finishes OK no errors no nothin.

-- 
Regards
Vladimir Vitkov
Operations Team


---
This SF.Net email is sponsored by the JBoss Inc.  Get Certified Today
Register for a JBoss Training Course.  Free Certification Exam
for All Training Attendees Through End of 2005. For more info visit:
http://ads.osdn.com/?ad_id=7628&alloc_id=16845&op=click
___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info


[Unattended] Problems installing windows updates

2005-11-18 Thread [EMAIL PROTECTED]
Hello Guys,

Thanks for the good software created.

I have a problem with applying updates on win2k3 server
The following updates just crash and return incorrect exit codes
KB903235 - instead of 194 returns 246
KB890830 - 1 instead of 194
KB896423 - 67 instead of one

We also have almost identical instalation tree in which the updates pass
normaly and install. The only difference between the instalation trees is that
in the one crashing there is integrata sata driver.

I am open to suggestions
-- 
Regards
Vladimir Vitkov
Operations Team


---
This SF.Net email is sponsored by the JBoss Inc.  Get Certified Today
Register for a JBoss Training Course.  Free Certification Exam
for All Training Attendees Through End of 2005. For more info visit:
http://ads.osdn.com/?ad_id=7628&alloc_id=16845&op=click
___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info


[Unattended] 广东联丰实业发展有限公司

2005-08-03 Thread [EMAIL PROTECTED]
贵公司(厂)负责人:
您好!
贵公司想减轻企业纳税负担吗?
本公司从事代开多项发票.(国税和地税)点数优惠!
代开发票范围:商品销售发票、广告业发票.服务业发票、建筑装饰工程发票.租凭业发票、
运输业发票.旅游业发票、增值税发票等等  
予需请来电咨询、洽谈!谢谢!  
联系人:刘晓伟先生  
电话:13826043700.13450362636
传真:020-33186535  







---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info


[Unattended] 广东联丰实业发展有限公司

2005-08-03 Thread [EMAIL PROTECTED]
贵公司(厂)负责人:
您好!
贵公司想减轻企业纳税负担吗?
本公司从事代开多项发票.(国税和地税)点数优惠!
代开发票范围:商品销售发票、广告业发票.服务业发票、建筑装饰工程发票.租凭业发票、
运输业发票.旅游业发票、增值税发票等等  
予需请来电咨询、洽谈!谢谢!  
联系人:刘晓伟先生  
电话:13826043700.13450362636
传真:020-33186535  







---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info


[Unattended] Message Deleted:STATUS

2005-07-19 Thread Mail Daemon ([EMAIL PROTECTED])
Your message (header below) has been deleted because of the following error:
A virus of type W32/Mytob-Z was detected in attachment text.pif

-- Original Message Header --
Received: from lists.sourceforge.net[195.10.45.233] by C-00467;
 Wed, 20 Jul 2005 04:50:50 +0100
From: unattended-info@lists.sourceforge.net
To: [EMAIL PROTECTED]
Subject: STATUS
Date: Wed, 20 Jul 2005 04:45:25 +0100
MIME-Version: 1.0
Content-Type: multipart/mixed;
boundary="=_NextPart_000_0003_84438443.7F067F06"
X-Priority: 3
X-MSMail-Priority: Normal
Message-Id: <[EMAIL PROTECTED]>






[Unattended] Two partitions and profilesdir on the second partition

2005-02-09 Thread [EMAIL PROTECTED]
Hi,

First of all I like your program and our company greatly improved in speed of 
deploying workstations, so thanx for all :). (sorry for my poor english but hey 
I am from belgium, it's already enough we got to know 2 other languages :p)

Anyway let me situate my problem.
We recently changed our policies for our users that they are responsible for 
their own data. But to facilitate the use of a backup software, we decided to 
go from one partition to a two partions scheme. No problem with unattended so 
that went well. Now the problem is that the profiles dir in has to be on the 
second partion. I've read that we can do it by changing the fdisk_cmd and do  
manually parted /dev/dsk mkfs 2 fat32, to format the second disk as fat32. That 
I've done and functions great. now my problem is that we have first line 
support ppl that use a disk we created (linuxboot by the way) and we want to 
automate the second format.

Is this fixed in newer releases? if not how can we jurryrig this command in the 
install.pl file so it happens anyway :)

Thanks in advance
Gerry






---
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://ads.osdn.com/?ad_ide95&alloc_id396&op=click
___
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info