Page 1 of 1

Network share (Many time asked i think?)

PostPosted: 07.09.2015, 17:46
by Raimon93
Hello all!

I need some help!. In our company we use WSUS offline alot for installing alot of different laptops. from windows vista till windows 10 all unnatended..
we use a network storage (running linux with Samba) to install all of them. but after the first reboot he could not found the path..

Is there a script or tutorial for installing multiple laptops at the same time?

Greetings,


Raimon

Re: Network share (Many time asked i think?)

PostPosted: 07.09.2015, 22:46
by aker
Did you mount the network in an administrative command prompt and with "/persistent:no"?
Does the server allow logging in with no user name and password?

Re: Network share (Many time asked i think?)

PostPosted: 08.09.2015, 08:16
by Raimon93
This is the Unattend file command:
Code: Select all
         <FirstLogonCommands>
                <SynchronousCommand wcm:action="add">
                    <CommandLine>"%systemroot%\SETUP\SCRIPTS\run_sdi.bat"</CommandLine>
                    <Order>1</Order>
                </SynchronousCommand>
            <SynchronousCommand wcm:action="add">
                    <CommandLine>"%systemroot%\SETUP\SCRIPTS\winup.bat"</CommandLine>
                    <Order>3</Order>
                </SynchronousCommand>
            </FirstLogonCommands>

The run_sdi.bat is the driver installer, after that finishes WSUS Offline should start (winup.bat)

winup.bat:
Code: Select all
net use Z: \\172.16.0.11\winUpdate\wsus /persistent:no
pushd Z:\cmd
DoUpdate.cmd /verify /instielatest /updatecpp /instmssl /instdotnet4 /instdotnet35 /instmsse /autoreboot /shutdown


this is what i use. is some one knows a better way for installing laptops/desktops ect than i would like to hear them!.

yes the server allows logging without user and password!