Jump to content


simulacra75

Established Members
  • Posts

    141
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by simulacra75

  1. Folks

    Not even sure if this is possible. I'm using the built-in UDI wizard to create a frontend to my SCCM OSD. We have multiple domains (with differing software package requirements) and the domain can be chosen during the UDI process. What i am trying to do is, display a different set of Programs to install, based on whatever domain the machine is going to be joining. Not sure this is even possible to be honest.  What i am trying to avoid is having a huge Programs list with each Domain as a "header", basically trying to keep the choices to 1 single page, without the need to scroll all over the place to add packages. Hope that makes some sense.

     

    Thanks

  2. Here's how i would do it. Create a collection of machines that have McAfee installed. Once you're satisfied that this collection populates with all the correct computers, create another collection (McAfee missing) with All Client Workstations as the limiting collection. Once this is setup add the first collection (McAfee installed) as an exclusion collection. This means that it should contain all machines that do not have McAfee installed.

  3. Hi everyone

    Have a TS that upgrades Win10 clients to Win10 170x. There are a number of steps in the TS, showing splash screens, removing some software, etc ,etc. I based it upon Niall's TS here at windows-noob. Have a slight problem though, namely Task Sequence progress bar not showing. Basically there's a pre-upgrade step that removes some software and then reboots the machine. After reboot the TS progress bar does not come back, even though i can see from SMSTS.log that the TS is indeed running. Obviously this might cause confusion to end users, wondering if their "upgrade" is finished (when it's not from the log files). 

    I should point out that the progress bar doesn't appear if nobody logs on, or if the last person (before the restart) logs on. Anyone have any ideas as to how i can get the Progress Bar to appear?

     

    Thanks

  4. Hi all

    Currently preparing for the 1710 upgrade from a previous version. According to MS, it's advisable to upgrade ADK on site servers beforehand. Currently running ADK 1607 (10.1.14393.0) and our default Production Boot Image is located in the ADK installation folder. I'm supposing that if/when i upgrade ADK to 170x that this default boot image would get overwritten, is that a correct assumption? If it is, any ideas of what i can do to prevent or remediate this? I don't want to have a situation where the we upgrade to 1710 and immediately afterwards, PXE/USB boot media no longer works due to missing PE drivers (our current boot image has a bunch of PE drivers added to it).

     

    Any thoughts from anyone?

     

    Thank you

  5. It's my understanding that the purpose of importing drivers in the WSUS DB is for the purpose of deploying to machines that are already built/imaged, not to supplement the actual imaging process. What you could try is imaging the computer with a completely "vanilla" build&capture image, see what drivers are missing after the imaging process and then just download these drivers and create a drivers package or deploy using the dism command against a standard package (my preferred method). I'm kinda surprised that you don't have some set of hardware "standards" that you maintain, this makes it a lot easier to manage your hardware inventory and imaging processes, but if you don't, you don't.

    Another suggestion is t try and determine what is the most common model of machine that you intend to image, prepare a TS for that model alone. That at least targets the maximum number of "default" machines in your org.

    Personally the Task Sequences i manage handle over 35 different models of machine from 4 different manufacturers. This is reasonably manageable for me. I wouldn't try and get a "magic" bullet solution that will fit every possible scenario, it most likely doesn't exist here.

  6. Has anyone had any success attempting the above? I've followed the guide on this forum and it seems to work great up to Win 10 1607 but i cannot get it to work with 1703 or 1709. For me, what i'm seeing is that the Time and Currency Combo box in UDI (which should be UserLocale) is not getting populated with the selection that the user chooses in UDI. I have my unattend.xml setup with the various TS variables (%OSDUserLocale%, %OSDUILanguage%, etc) but the value does not get populated and it means that later steps in the TS do not run because the UserLocale variable is blank/not populated. Anyone come across this yet? Any ideas to solve?

  7. Any topics i have read on this up to now have suggested not to include drivers in the WSUS update catalog. The reason been, that it causes a lot of bloat in the WSUS DB. I'd suggest you use standard packages for your drivers and deploy them during the TS. This is the preferred and supported way of doing it, and is likely to be the method you will find most online help for in getting it setup. To me, it doesn't make a pile of sense to apply drivers after the OS has been laid down when you have a method of applying them during the imaging process itself. Just my opinion though.

  8. Perhaps you have a firewall rule that blocks remote connections to WMI on a client machine? If you launch wbemtest from the Primary Site then hit the connect button and type in \\<machine-name>\root\cimv2 (make sure that DNS resolves the machine name correctly first), does it connect? If not, then i'd suspect there's something on the client side that's preventing you from connecting to WMI remotely, possibly a firewall rule. Somewhere to start at least.

  9. Well, 0x80072efe means "The connection with the server was terminated abnormally". Do your client machines in other offices that connect to this MP to get their updates? Are they working okay for you? If Yes, then is it possible that there's some network service/device that's not routing traffic correctly back to the MP, or blocking it? I'd also check how IIS is on your MP, is it pegging the CPU to high utilization percentages?

    What happens if a client machine in this VPN office connects to your company network outside of their home office, does the client communicate correctly with the MP and WSUS then?

  10. I've never gotten that "style" of query to work for me correctly and i've never figured out exactly why it doesn't work either! I imagine it has something to do with how the OR/AND logic is interpreted. There is a workaround though. Create 2 collections, 1 that refers to the Installed Applications table and another collection that refers to the Installed Application (64) table. In your first collection add the 2nd collection you created as an Include Collection member. Not the most elegant solution but it certainly works for me.

    I'd also suggest that you do not use the "like" criteria, it adds a lot of overhead to the performance of the query so you should always try and use the "equals" parameter, wherever possible.

  11. Hi there. I've followed the excellent guide on this site (thanks Niall!) for integrating Language Interface Packs into a Task Sequence and it seems to work pretty well for me. Something i thought of though, let's say for arguments sake that i rollout Win 10 1607 with a bunch of LIP's in a Task Sequence and further down the line i have a number of different computers with different LIP's installed.

    I now want to upgrade these machines to Windows 10 1703. Given that there are different LIP's for each build of Windows 10 I'd suspect that i would need to also upgrade the LIP on any machine where a 1607 LIP is installed. Is that a correct assumption? Assuming that it is, i was wondering how do i programatically identify machines that have, say, a Japanese LIP installed, so that when their OS is upgraded to 1703 that the Japanese 1703 LIP also gets installed?

    Anyone tackled this scenario before?

     

    Thanks

  12. I'd suggest booting into Windows PE, launching a command line (F8 key) and using Diskpart to see what state your HDD is in. It's possible that the disk is in a state that Windows PE is unable to read the disk (encrypted, for example). You could then use Diskpart to clean any partitions and format it to an NTFS partition. Doing that would at least ensure that your TS should be able to read the disk correctly. If you do wipe the disk using diskpart, then you would need to restart your TS to try imaging again.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.