Inicio > Sin categoría > Getting GPOS and GPO Links

Getting GPOS and GPO Links

miércoles, 7 de diciembre de 2016 Dejar un comentario Ir a comentarios

This script creates a txt file with the next information:

– GPOName
– LinksTo
– Enabled
– NoOverride
– CreatedDate
– ModifiedDate

Script:

$names=get-gpo -all
        $output= foreach ($name in $names) {
            get-gpolink -name $name.DisplayName
            }
         $output | out-file C:\temp\GpoandLinks.txt

Categories: Sin categoría Tags:
  1. Sin comentarios aún.
  1. Sin trackbacks aún.