Windows - “Get-WindowsFeature” Multiple DevicesMemory dumps of a 32-bit process on 64-bit Windows 7List...

What is this waxed root vegetable?

Are small insurances worth it

What's the difference between a cart and a wagon?

I am on the US no-fly list. What can I do in order to be allowed on flights which go through US airspace?

Is there a low-level alternative to Animate Objects?

Why does the author believe that the central mass that gas cloud HCN-0.009-0.044 orbits is smaller than our solar system?

Why might Google Analytics report a sudden, but persistent, drop in bounce rate (70% to 12%)

Six real numbers so that product of any five is the sixth one

Creature spells vs. ability to convert a permanent into a creature

CBP Reminds Travelers to Allow 72 Hours for ESTA. Why?

Waiting for the gravy at a dinner table

Compare four integers, return word based on maximum

Could quantum mechanics be necessary to analyze some biology scenarios?

When does inspiration across artforms become plagiarism

Use comma instead of & in table

Should I choose Itemized or Standard deduction?

What am I? I am in theaters and computer programs

How to properly claim credit for peer review?

Is there a frame of reference in which I was born before I was conceived?

Replacement ford fiesta radiator has extra hose

What is a term for a function that when called repeatedly, has the same effect as calling once?

How can I find an Adventure or Adventure Path I need that meets certain criteria?

What prevents the construction of a CPU with all necessary memory represented in registers?

Significance and timing of "mux scans"



Windows - “Get-WindowsFeature” Multiple Devices


Memory dumps of a 32-bit process on 64-bit Windows 7List installed personal certificates in batchNeed Help or Tips on Creating Multiple Copies of the Identical Windows 7 “Client” SystemsMultiple IP Settings to Emulate Multiple DevicesWindows 10 prompts on new computersCreating a Windows to Go ISO from an installed systemRegistry keys to change personalization settings?Can I opt-out of specific Windows updates?Power to usb devices flickers brieflyRSAT unavailable in Windows 10 - 1803













0















Is there a good methodology for determining if a specific windows feature is enabled across multiple computers?



I know what feature I'm looking for, but I want to generate at minimum a dump of which PCs have it on or off. I do have System Center Configuration Manager available, but don't see the info there if it's present.










share|improve this question







New contributor




Hilla is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

























    0















    Is there a good methodology for determining if a specific windows feature is enabled across multiple computers?



    I know what feature I'm looking for, but I want to generate at minimum a dump of which PCs have it on or off. I do have System Center Configuration Manager available, but don't see the info there if it's present.










    share|improve this question







    New contributor




    Hilla is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.























      0












      0








      0








      Is there a good methodology for determining if a specific windows feature is enabled across multiple computers?



      I know what feature I'm looking for, but I want to generate at minimum a dump of which PCs have it on or off. I do have System Center Configuration Manager available, but don't see the info there if it's present.










      share|improve this question







      New contributor




      Hilla is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.












      Is there a good methodology for determining if a specific windows feature is enabled across multiple computers?



      I know what feature I'm looking for, but I want to generate at minimum a dump of which PCs have it on or off. I do have System Center Configuration Manager available, but don't see the info there if it's present.







      windows-7 windows-10 powershell configuration-managment






      share|improve this question







      New contributor




      Hilla is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question







      New contributor




      Hilla is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question






      New contributor




      Hilla is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 8 hours ago









      HillaHilla

      11




      11




      New contributor




      Hilla is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      Hilla is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      Hilla is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






















          1 Answer
          1






          active

          oldest

          votes


















          1














          From the post
          Ouput Server Name Along With InstallState of Service
          comes this snippet of PowerShell code:



          $serversall = (Get-Content ".Servers.txt")
          $output = @()
          foreach($vm in $serversall) {
          $installed = (Get-WindowsFeature Web-Server -ComputerName $vm).InstallState
          $output += New-Object PSCustomObject -Property @{'ComputerName'=$vm; 'Status'=$installed }
          }

          $output | Export-Csv -path E:ScriptsOutputIISWebServersStatus.csv -Append





          share|improve this answer























            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "3"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });






            Hilla is a new contributor. Be nice, and check out our Code of Conduct.










            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1411146%2fwindows-get-windowsfeature-multiple-devices%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            1














            From the post
            Ouput Server Name Along With InstallState of Service
            comes this snippet of PowerShell code:



            $serversall = (Get-Content ".Servers.txt")
            $output = @()
            foreach($vm in $serversall) {
            $installed = (Get-WindowsFeature Web-Server -ComputerName $vm).InstallState
            $output += New-Object PSCustomObject -Property @{'ComputerName'=$vm; 'Status'=$installed }
            }

            $output | Export-Csv -path E:ScriptsOutputIISWebServersStatus.csv -Append





            share|improve this answer




























              1














              From the post
              Ouput Server Name Along With InstallState of Service
              comes this snippet of PowerShell code:



              $serversall = (Get-Content ".Servers.txt")
              $output = @()
              foreach($vm in $serversall) {
              $installed = (Get-WindowsFeature Web-Server -ComputerName $vm).InstallState
              $output += New-Object PSCustomObject -Property @{'ComputerName'=$vm; 'Status'=$installed }
              }

              $output | Export-Csv -path E:ScriptsOutputIISWebServersStatus.csv -Append





              share|improve this answer


























                1












                1








                1







                From the post
                Ouput Server Name Along With InstallState of Service
                comes this snippet of PowerShell code:



                $serversall = (Get-Content ".Servers.txt")
                $output = @()
                foreach($vm in $serversall) {
                $installed = (Get-WindowsFeature Web-Server -ComputerName $vm).InstallState
                $output += New-Object PSCustomObject -Property @{'ComputerName'=$vm; 'Status'=$installed }
                }

                $output | Export-Csv -path E:ScriptsOutputIISWebServersStatus.csv -Append





                share|improve this answer













                From the post
                Ouput Server Name Along With InstallState of Service
                comes this snippet of PowerShell code:



                $serversall = (Get-Content ".Servers.txt")
                $output = @()
                foreach($vm in $serversall) {
                $installed = (Get-WindowsFeature Web-Server -ComputerName $vm).InstallState
                $output += New-Object PSCustomObject -Property @{'ComputerName'=$vm; 'Status'=$installed }
                }

                $output | Export-Csv -path E:ScriptsOutputIISWebServersStatus.csv -Append






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered 4 hours ago









                harrymcharrymc

                260k14271575




                260k14271575






















                    Hilla is a new contributor. Be nice, and check out our Code of Conduct.










                    draft saved

                    draft discarded


















                    Hilla is a new contributor. Be nice, and check out our Code of Conduct.













                    Hilla is a new contributor. Be nice, and check out our Code of Conduct.












                    Hilla is a new contributor. Be nice, and check out our Code of Conduct.
















                    Thanks for contributing an answer to Super User!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1411146%2fwindows-get-windowsfeature-multiple-devices%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Cannot install PyQt5 The Next CEO of Stack OverflowCannot install tcpreplay 3.4.4cannot...

                    Kapp-Putsch Acontecimentos | Outros artigos | Menu de navegação

                    Why did early computer designers eschew integers? The Next CEO of Stack OverflowWhat register...