Last active
January 25, 2019 13:29
-
-
Save gyusza/fbd3661f1cdb31e7af274d1cd29f2224 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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