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
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
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.
add a comment |
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
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.
add a comment |
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
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
windows-7 windows-10 powershell configuration-managment
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.
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.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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
add a comment |
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
add a comment |
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
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
answered 4 hours ago
harrymcharrymc
260k14271575
260k14271575
add a comment |
add a comment |
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.
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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