Home IIS.NET Forums IIS 7 and Above PowerShell Get all CPUs in the domain and in a workgroup running IIS? Re: Get all CPUs in the domain and in a workgroup running IIS?
77 Posts
Aug 26, 2014 05:11 AM|Michelle Ge - MSFT|LINK
Hi,
So far as I know, you can use powershell with Active Directory module, please refer to do as below:
Import-Module ActiveDirectory Get-ADComputer -Filter {enabled -eq $true} -properties *|select Name, DNSHostName, OperatingSystem, LastLogonDate
For more information, please refer to the link below:
http://technet.microsoft.com/en-us/library/ee617192.aspx
Hope it's useful for you.
Best Regards,
Michelle Ge
77 Posts
Re: Get all CPUs in the domain and in a workgroup running IIS?
Aug 26, 2014 05:11 AM|Michelle Ge - MSFT|LINK
Hi,
So far as I know, you can use powershell with Active Directory module, please refer to do as below:
For more information, please refer to the link below:
http://technet.microsoft.com/en-us/library/ee617192.aspx
Hope it's useful for you.
Best Regards,
Michelle Ge
Feedback to us