Windows Live Essentials with SCCM

Soldato
Joined
4 Jan 2004
Posts
7,727
Location
Nottingham
Hi Guys

Have a bit of a strange issue here that I'm hoping someone can help with. We're trying to build a W7 image to be deployed on all student desktop machines. The image must include various programs such as Office, Endnote etc.

The students use Microsoft's SkyDrive online storage and so need part of Windows Live Essentials installed (WLSync as well as Messenger and Mail).

To test with I've created a new software distribution package for WLM 2011, customized which features of WLM to install via a command line switch and advertised it to our test PC so it's dragged down and installed silently when the PC is turned on.

Strangely the only way I can get it to install silently is to use the /q switch with the Run option set to silent and also the box ticked that says "allow users to interact with this program".

To me that just seems crazy as all windows are hidden, it's being installed with the silent switch and it has elevated permissions? if I don't tick that box the installer runs but just hangs and doesn't install anything. It also means I can't add this package into the task sequence for the W7 image unless it's unticked.

I've tried running it in the task sequence with the option unticked but it just hangs and errors after 20 minutes (the time I've specified in the package that the installer is allowed to run). When booting the machine after and you can see that it's installed Silverlight and created a Windows Live folder but it's empty.

I know that it should take about 10 minutes tops to install this app so why is it hanging in the task sequence and why does it hang when advertised unless I allow user interaction?

Sorry for the long post but I hope someone can help :)

Cheers guys
 
Thanks for the replies guys

coldzero, I need go back and check the eventviewer logs and also the logs from the task sequence to see if it shows anything. Going by previous errors in the task sequence log file from the advertised package before I added it into the task sequence, they'll probably be generic error codes that aren't thrown by SCCM but rather error codes it's interpreted from the app. I.e. nothing helpful :(

brainchylde, Thanks for the link. I'm gonna have a good read over that tomorrow as it looks like theres loads more info about the WL installer I never knew.

PAz, running it from the command line on a desktop using the exact same switch doesn't display a single thing, it's totally silent and hidden. All I get is the process running (visible in task manager) for about 7/8 minutes, then when it's done everything is installed. That's why I don't get why I need to have the "allow user interaction" option ticked in SCCM when there's clearly no user interaction involved?
 
Last edited:
mrbios, thats exactly the kind of switch I'm using on the wlsetup.exe. We're just specifying the few apps we want using /AppSelect: and using the /q switch to make it a silent install. it works perfectly when run on a local machine and use cmd to run it, but it will only work in SCCM if I tick "allow user interaction"...of course doing this means I can't add it to the task sequence for the w7 install :(

I'm going to try and check over the log files today and have a read of the links posted above
 
yes, that's what I ment by the /q switch :)

this is what we're using: wlsetup-all.exe /q /NOToolbarCEIP /NOHomepage /NOLaunch /NOSearch /AppSelect:silverlight,mail,messenger,wlsync
 
Just a quick update to this thread...I've got the problem sorted :)

Basically I think my switch statement was wrong after brainchylde pointed out that Silverlight wasn't a valid selector (confirmed by the link he posted too) and also noticed that /NOToolbarCEIP wasn't valid either, I re-wrote it out like this:

wlsetup-all.exe /q /NOHomepage /NOLaunch /NOSearch AppSelect:mail,messenger,wlsync

Just done a test in my task sequence and it installed with no problem.

I think I was looking at the problem for too long and missed the obvious bits :p

Thanks for all you're help guys
 
Back
Top Bottom