Skip to content

Instantly share code, notes, and snippets.

@Dimtemp
Created November 2, 2023 13:59
Show Gist options
  • Save Dimtemp/11b450b76fb37908a37c0c34c54bc0b0 to your computer and use it in GitHub Desktop.
Save Dimtemp/11b450b76fb37908a37c0c34c54bc0b0 to your computer and use it in GitHub Desktop.
Inventory oneliner
Get-Content pcs.txt | foreach { Write-Host $_ -f Green; $pc=$_; Get-Content wmi.txt | foreach { Get-WmiObject $_ -ComputerName $pc } }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment