Just about anything is possible - How much work it might take is another issue.

For the computers that you do not want to include, is there a commonality among them that is not common to the others? Is it a static list?

Basically how are you going to define what to not look at.

Then you can adjust your code as such

 Code:
For each $Computername in $Batch
  If AScan($Skip,$ComputerName) = -1
   ?$ComputerName
  EndIf
Next


Where $Skip would equal a list of computers that you do not want to run against.

 Code:
$Skip = "Server01","PrintServer01","FileServer01"


Edited by Gargoyle (2008-12-05 01:31 AM)
Edit Reason: had the wrong function in there
_________________________
Today is the tomorrow you worried about yesterday.