Skip to content

Instantly share code, notes, and snippets.

@gyusza
Last active January 25, 2019 13:29
Show Gist options
  • Save gyusza/fbd3661f1cdb31e7af274d1cd29f2224 to your computer and use it in GitHub Desktop.
Save gyusza/fbd3661f1cdb31e7af274d1cd29f2224 to your computer and use it in GitHub Desktop.
$data = @(gci -Path . -Recurse -Language "en" )
$props = @{ Title = "SEO Data"
PageSize = 250
}
$data | Show-ListView -Property @{Label="Title"; Expression={ $_.DisplayName }},
@{Label="MetaDescription"; Expression={$_.MetaDescription} },
@{Label="MetaKeywords"; Expression={$_.MetaKeywords} },
@{Label="Path"; Expression={$_.FullPath} }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment