• Recent
  • Unsolved
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Register
  • Login
  • Recent
  • Unsolved
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Register
  • Login

Recommended guide for Windows 10 image creation (from scratch) ?

Scheduled Pinned Locked Moved
Windows Problems
9
30
29.3k
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S
    Scott Adams @x23piracy
    last edited by Sep 30, 2016, 5:31 PM

    @x23piracy How did you go about doing this? I’m running into an issue with sysprep anytime I try to remove a Windows 10 app. It sure would be nice to not have those pesky apps in my image.

    G X 2 Replies Last reply Sep 30, 2016, 5:42 PM Reply Quote 0
    • G
      george1421 Moderator @Scott Adams
      last edited by Sep 30, 2016, 5:42 PM

      @Scott-Adams How are you removing this applications? You have to uninstall them from the current users and then remove them from the system. The last time I built a win10 reference image (on CBB 1511) I was able to do it and sysprep without any issues, but I used a powershell script to extract the unwanted applications.

      Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!

      S 1 Reply Last reply Oct 3, 2016, 12:33 PM Reply Quote 0
      • X
        x23piracy @Scott Adams
        last edited by x23piracy Sep 30, 2016, 1:54 PM Sep 30, 2016, 7:49 PM

        Hi,

        @Scott-Adams said in Recommended guide for Windows 10 image creation (from scratch) ?:

        @x23piracy How did you go about doing this? I’m running into an issue with sysprep anytime I try to remove a Windows 10 app. It sure would be nice to not have those pesky apps in my image.

        Get-AppxPackage -AllUsers | where-object {$_.name –notlike “*store*” -And $_.packagename –notlike “*culator*”} | Remove-AppxPackage
        Get-appxprovisionedpackage –online | where-object {$_.packagename –notlike “*store*” -And $_.packagename –notlike “*culator*”} | Remove-AppxProvisionedPackage -online
        

        I did this based on 1511 and updated later to 1607, i always restore my image to a virtual box to rework on it and then i also do actual windows updates… so i was coming with that script above from 1511 just FYI…

        I would like to keep store and new calculator, if you remove the new calc anyway you need to install windows 7 calculator for windows 10…if you need a calc app, in business you will. ;): http://winaero.com/blog/get-calculator-from-windows-8-and-windows-7-in-windows-10/

        Regards X23

        ║▌║█║▌│║▌║▌█

        M 1 Reply Last reply Oct 3, 2016, 6:27 PM Reply Quote 0
        • A
          adukes40
          last edited by Oct 1, 2016, 3:37 PM

          Anyone played with the LTSB version of Win10 in their environment?

          G 1 Reply Last reply Oct 1, 2016, 3:52 PM Reply Quote 0
          • G
            george1421 Moderator @adukes40
            last edited by george1421 Oct 1, 2016, 10:01 AM Oct 1, 2016, 3:52 PM

            @adukes40 Yes. I suspect the 2016 one should be in the works soon. I think 2015 LTSB dropped in Nov of 2015.

            But right now CBB 1607 has issues with WSUS updates not applying, so I suspect they are trying to nail that one down first. (edit: Actually I just found an article that says LTSB 2016 will be released on Oct 1 [today]. Its unclear if that date is still valid or not).

            Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!

            1 Reply Last reply Reply Quote 0
            • A
              adukes40
              last edited by Oct 1, 2016, 3:53 PM

              do you use it, George?

              G 1 Reply Last reply Oct 1, 2016, 3:58 PM Reply Quote 0
              • G
                george1421 Moderator @adukes40
                last edited by george1421 Oct 1, 2016, 9:58 AM Oct 1, 2016, 3:58 PM

                @adukes40 Only in the dev lab. We are not quite ready to roll it out to the organization. But it does work in the dev labs. We are still fine tuning the GPOs to get them to work like we want them.

                Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!

                A 1 Reply Last reply Oct 1, 2016, 4:01 PM Reply Quote 0
                • A
                  adukes40 @george1421
                  last edited by Oct 1, 2016, 4:01 PM

                  @george1421 thats good to hear, I was thinking about using LTSB instead of Education, because of its simplicity. Don’t have to worry about the apps, or store, and all that mess.

                  G M 2 Replies Last reply Oct 1, 2016, 4:04 PM Reply Quote 0
                  • G
                    george1421 Moderator @adukes40
                    last edited by george1421 Oct 1, 2016, 10:54 AM Oct 1, 2016, 4:04 PM

                    @adukes40 We went with LTSB for a few reasons, not having the consumer apps was one, the other was the longer refresh cycle. CBB will force an update even if you mark it to delay the upgrade. The force update will be 6 months after the current release was released. We have to verify each of our core applications work before we can release an new OS and twice a year is a little much OS thrashing. As soon as we would get one version tested and approved we would have to start on the next release. That is a bit crazy.

                    [edit] FWIW: I was just able to get CBB 1607 to create cleanly with mdt and windows updates after a bit of hacking about. The late sept 1607 cume update and setting the delivery optimization to 100d fixed the wsus updates getting stuck issue.

                    Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!

                    M 1 Reply Last reply Oct 3, 2016, 2:16 PM Reply Quote 0
                    • S
                      Scott Adams @george1421
                      last edited by Tom Elliott Oct 3, 2016, 7:16 AM Oct 3, 2016, 12:33 PM

                      @george1421 I’m doing it from audit mode, so there is only the default administrator account at that time.

                      I uninstall the user app and the provisioned app using a powershell script. An example of my script is:

                      Get-appxpackage *3dbuilder* | Remove-AppxPackage
                      Get-appxprovisionedpackage –online | where-object {$_.packagename –like "*3dbuilder*"} | remove-appxprovisionedpackage –online
                      Get-appxpackage *windowsalarms* | Remove-AppxPackage
                      Get-appxprovisionedpackage –online | where-object {$_.packagename –like "*windowsalarms*"} | remove-appxprovisionedpackage –online
                      

                      Tom Elliott – Modded to use code format. Asterisks italicize the font in MD language.

                      S G 2 Replies Last reply Oct 3, 2016, 12:34 PM Reply Quote 0
                      • S
                        Scott Adams @Scott Adams
                        last edited by Oct 3, 2016, 12:34 PM

                        Not sure why, but the post removed my asterisks. There should be asterisks enclosing 3dbuilder and windowsalarms for the Get-appxpackage portions.

                        1 Reply Last reply Reply Quote 0
                        • M
                          MRCUR Testers @george1421
                          last edited by Oct 3, 2016, 2:16 PM

                          @george1421 If you use WSUS then updates will not force themselves on the machines unless you approve them. The “Windows Update for Business” stuff only applies to non-WSUS deployments where you’re controlling Windows Update only with group policy and no WSUS.

                          G 1 Reply Last reply Oct 3, 2016, 2:33 PM Reply Quote 0
                          • M
                            MRCUR Testers @adukes40
                            last edited by Oct 3, 2016, 2:23 PM

                            @adukes40 I’ll just mention that you can disable the Store and all “modern” apps with a single group policy setting. You may not need to go the drastic route of deploying LTSB if your primary concern is access to the Store & modern apps.

                            S 1 Reply Last reply Oct 3, 2016, 3:20 PM Reply Quote 0
                            • G
                              george1421 Moderator @MRCUR
                              last edited by Oct 3, 2016, 2:33 PM

                              @MRCUR said in Recommended guide for Windows 10 image creation (from scratch) ?:

                              @george1421 If you use WSUS then updates will not force themselves on the machines unless you approve them. The “Windows Update for Business” stuff only applies to non-WSUS deployments where you’re controlling Windows Update only with group policy and no WSUS.

                              FWIW: There are documented “bugs” with CBB 1607 where windows updates will hang applying them. This happens with images being built in MDT as well as images already in production. The late September cume update kb3193494 as well as setting the DeliveryOptimization registry key fixed the MDT / WSUS deployment issues with image creation. I suspect that kb3193494 will also address the 1607 systems in the wild too, but we don’t have any as of now. Which will be interesting since wsus is broken so the only way to deploy that update is via some alternate methods.

                              Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!

                              M 1 Reply Last reply Oct 3, 2016, 2:39 PM Reply Quote 0
                              • M
                                MRCUR Testers @george1421
                                last edited by Oct 3, 2016, 2:39 PM

                                @george1421 Interesting & good to know. We’re still actively deploying build 1511 and just starting to test 1607 so we haven’t seen any issues with WSUS patching 1511 so far.

                                1 Reply Last reply Reply Quote 0
                                • G
                                  george1421 Moderator @Scott Adams
                                  last edited by Oct 3, 2016, 2:41 PM

                                  @Scott-Adams My script essentially is the same as your except I have an array of applications that I look through and remove but they heart of the script does the same as your script does. The only difference is I’m not doing it in audit mode (if that matters).

                                  Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!

                                  1 Reply Last reply Reply Quote 0
                                  • S
                                    Scott Adams @MRCUR
                                    last edited by Oct 3, 2016, 3:20 PM

                                    @MRCUR What is the group policy setting? Could be extremely beneficial to us in the education sector.

                                    M 1 Reply Last reply Oct 3, 2016, 3:22 PM Reply Quote 0
                                    • M
                                      MRCUR Testers @Scott Adams
                                      last edited by Oct 3, 2016, 3:22 PM

                                      @Scott-Adams Computer Config - Admin Templates - Windows Components - Store - “Disable all apps from Windows Store”. If you enable this, all “modern” apps plus the store will be disabled.

                                      You must be using Enterprise or Education editions to use this (I still don’t know what the difference is between Ent & EDU, so we deploy Ent at our district).

                                      1 Reply Last reply Reply Quote 0
                                      • M
                                        MRCUR Testers @x23piracy
                                        last edited by Oct 3, 2016, 6:27 PM

                                        @x23piracy Are you keeping all 3 of the “store” apps? “ConnectivityStore”, “StorePurchasesApp” & “WindowsStore”?

                                        I can’t find a clear answer on what of those three (besides “WindowsStore”) is required to make the store functional if we decide to enable it in the future. I’ve also seen it noted that “DesktopAppInstaller” may be needed for some apps to be installed through the store.

                                        X 1 Reply Last reply Oct 3, 2016, 8:13 PM Reply Quote 0
                                        • X
                                          x23piracy @MRCUR
                                          last edited by x23piracy Oct 3, 2016, 2:14 PM Oct 3, 2016, 8:13 PM

                                          @MRCUR said in Recommended guide for Windows 10 image creation (from scratch) ?:

                                          @x23piracy Are you keeping all 3 of the “store” apps? “ConnectivityStore”, “StorePurchasesApp” & “WindowsStore”?

                                          I can’t find a clear answer on what of those three (besides “WindowsStore”) is required to make the store functional if we decide to enable it in the future. I’ve also seen it noted that “DesktopAppInstaller” may be needed for some apps to be installed through the store.

                                          Since i use WILDCARDstoreWILDCARD i think yes because all of that apps cover the word “store”

                                          ║▌║█║▌│║▌║▌█

                                          1 Reply Last reply Reply Quote 0
                                          • 1
                                          • 2
                                          • 2 / 2
                                          2 / 2
                                          • First post
                                            20/30
                                            Last post

                                          157

                                          Online

                                          12.0k

                                          Users

                                          17.3k

                                          Topics

                                          155.2k

                                          Posts
                                          Copyright © 2012-2024 FOG Project