Link to home
Start Free TrialLog in
Avatar of shfisb
shfisb

asked on

Windows 10 feature update

I have been tasked with coming up with a solution to upgrade roughly 150 computers with the new Windows 10 Feature Update 1709.
I have downloaded the .ISO file, and have extracted it to launch the setup.exe file. Is there a switch(s) to use to push this out silently and without reboot? We are using ZENworks to push this out, but I'm stumped on the switches.
We do not want to use WSUS to push this out, as it would clog up our network due to the size of the update.

Any help would greatly be appreciated.

Darren
Avatar of John
John
Flag of Canada image

V1709 is getting old, and while you can push it out (so far as I know), you CANNOT install without a (someone lengthy) restart.

I am not familiar with your method to push the update out.
Avatar of aravind anche
Hello Darren,

Can you run setup.exe /?
and see if there are /quiet and /noreboot options.
Also How are you pushining that through zenworks, like an application.
In previous company i worked for we pushed only applications with zenworks.

Regards
Anche
Avatar of shfisb
shfisb

ASKER

I would even take a switch to push out update 1803.  For example. Is there a way to push out these updates via the command line? ZENworks is basically a program that allows us to install software remotely via a server. It executes programs via a ZENworks agent on the local computer. I would just need the command to push.
Avatar of shfisb

ASKER

I was able to run the setup.exe /? command and it shows the /quiet switch. I have tried running setup.exe /quiet, but the exe doesn't install. Very frustrating
Check with ZEN support as these updates install fine on most machines
does it have switch for logs, if so use that switch and queit switch and see where it is going wrong. I am assuming you are running as administrator
Avatar of shfisb

ASKER

Yes. I am running it as an admin. I'll check for the log switch and let you know.

Darren
Avatar of shfisb

ASKER

Well, it created a log file, but I'm not sure which log file to look at. It created a MoSetup and a Panther folder.

I appreciate the help. I'll keep searching for a solution

Darren
Can you attach MOsetup logs
Avatar of shfisb

ASKER

you bet. There's just one log. See attached
BlueBox.log
ASKER CERTIFIED SOLUTION
Avatar of McKnife
McKnife
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of shfisb

ASKER

Thank you McKnife
I will try that today and let you know how it comes out. I really appreciate it
Avatar of shfisb

ASKER

Well, I have tried that script, and it does launch the program, but just not silently. Should I put the /quiet switch there as well?
I'm a heck of a lot closer now than I was yesterday!

Darren
"but just not silently" - that is an automated upgrade. When performed as scheduled task (system account executes it), it is not seen. No quiet switch needed. If you get questions, something is wrong - please explain.
Avatar of shfisb

ASKER

I understand now.
Last question. Since I will be needing to upgrade roughly 150 computers, is there a script that I can push out that creates this task on each workstation, or would I need to visit each computer to create the scheduled task to run the command?

Darren
you can do something like this
SchTasks /Create /SC MONTHLY /D 1 /TN “My Task” /TR “C:RunMe.bat” /ST 14:00

http://sourcedaddy.com/windows-7/creating-scheduled-tasks-with-script.html
Just deploy a task using group policy preferences.
Avatar of shfisb

ASKER

It looks like it works. If I can find a way to not automatically reboot the computer after it is complete, then I'm golden.

thank you everyone for your help

Darren
Why should a reboot be prevented?
Avatar of shfisb

ASKER

I don't mind the computer rebooting, as long as the customer using the computer is aware that it is being shut down, so that they can have time to save any documents/programs they have open.
When my test machine finished the silent install, it just started shutting down without warning. I need to prevent that from happening.
Is there a service or process running that is causing this? Start in Safe Mode (use MSCONFIG) and see if it shuts down unexpectedly
Before the installation, run
Msg * /time:0 yourWarningtext
In the same script.
Avatar of shfisb

ASKER

Before the installation, run
 Msg * /time:0 yourWarningtext
 In the same script.

So would my script be this?

 \\server\share\setup.exe /auto upgrade /dynamicupdate disable  Msg * /time:0 yourWarningtext
No, run it before, like this:
Msg * /time:0 yourWarningtext
\\server\share\setup.exe /auto upgrade /dynamicupdate disable

Open in new window

Avatar of shfisb

ASKER

Thank you all for your help. I think I have a handle on it. I'm going to push out a scheduled task, then run the\\server\share\setup.exe /auto upgrade /dynamicupdate disable command. I'll schedule the task to run after hours.

I really appreciate all the help