HI
 
Microsoft is releasing patches and updates nearly daily, sometimes they are
Q articles with high number and at the same time Q articles with lower
numbers and once in a while the worst... updates with just a name.
 
So now to the question, how shall I add them in the script? By the Q article
number ascending or release date?
In the old days when I used the traditional Windows Update it sometimes
appeared more updates at the same time you were rebooting to install the
once you couldn't install at the same time?
 
Any one has any ideas or smart theories?
/Daniel

-----Original Message-----
From: Scott Card [mailto:[EMAIL PROTECTED] 
Sent: den 16 april 2003 16:57
To: [EMAIL PROTECTED]
Subject: RE: [Unattended] Requesting "mapdrive.pl" from Scott Card

... By setting the home drive for which account?  The local
administrator account that is not a member of a domain?  Elaborate a
little if you could.

Thanks,
Scott

-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Tuesday, April 15, 2003 3:49 PM
To: [EMAIL PROTECTED]
Subject: RE: [Unattended] Requesting "mapdrive.pl" from Scott Card



Sylvain,

The text from that file is attached below, but I would note that I have
been successfully getting around this problem simply by setting the home
drive for the account to Z: and pointing it at the install share.

Also, I think that having a blank password can sometimes cause more
problems than it causes

Hope it helps

Kevin

_____________ Start mapdrive.pl (do not include this
line)_________________________ # used to map a drive with authentication
upon restart and #  run todo.pl --go

use strict;

my $mapdrvcmd = 'net use z: \\\\aa1pri\\install installpasswd
/USER:install /persistent:no'; my $gocmd = 'start cmd /c
c:\\perl\\bin\\perl.exe z:\\bin\\todo.pl --go'; my $golog =
"c:\\netinst\\logs\\golog.txt";

open GOLOG, ">>$golog"
    or die "Unable to open $golog for writing: $^E";
my $i;
my $not_mapped=1;

# Try 5 times at 2 second intervals
for ($i=0, $i<6, $i++){
    if (! ($not_mapped = mapdrive() ) ){
        last;
    }
    sleep 2;
}

if ($not_mapped){
    print GOLOG "Could not map drive, giving up.", "\n";
    close GOLOG;
    exit 1;
} else {
    print GOLOG "Map drive successful\n";
    print GOLOG "Running todo.pl\n";
    system $gocmd;
}

print "done.\n";
close GOLOG
    or die "Unable to close $golog: $^E";

sub mapdrive {
    print "Running $mapdrvcmd...";
    if (0 != (system $mapdrvcmd) ){
        print GOLOG "$mapdrvcmd failed: ", ($? ? $? : $^E), "\n";
        print "$mapdrvcmd failed: ", ($? ? $? : $^E);
        return 1;
    }
    return 0;
}

__________________________end mapdrive.pl (do not include this line)
_______ -----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Sylvain
Faivre
Sent: 15 April 2003 21:13
To: [EMAIL PROTECTED]
Subject: [Unattended] Requesting "mapdrive.pl" from Scott Card


Hello,
I've been trying to setup an unattended install for some time now and
this system seems very good =) However, Windows won't logon
automatically after each reboot, it keeps asking me for a password to
access the network share. Even with a user who has a blank password, i
have to press the ENTER key to close the messagebox. So I browsed
through the mailing list archive and found an interesting post by Scott
Card. It seems to be exactly what I'm trying to do, but the
"mapdrive.pl" file that was attached to the message isn't available on
the archive. So I was wondering if anyone could send me that file ? The
message was entitled "RE: Questions - Username for app installs" and its
date was "2003-03-10 13:04". Thanks in advance.

---------------------
Sylvain Faivre
EdifiXio - AIH Team
+33 1 56 90 51 24
www.edifixio.com


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


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

Reply via email to