PowerShell Tip: Searching for Controls Without a Fully-qualified Type Name
Today’s post is a quick tip. I’m working with some older code where a lot of the ascx files don’t have a fully qualified type name in the Inherits attribute of the Control directive. I wanted to find them without having to open dozens of files and manually search for offenders:
This is a pretty straightforward function, it finds all the user control files in a given directory or any of its subdirectories, filters the list using No-Publickeytoken and prints out the paths to the offending files. And here’s No-Publickeytoken:
$firstLine = Get-Content $_.FullName -TotalCount 1
($firstLine -match "Inherits") -and `
(-not ($firstLine -match "PublicKeyToken"))
}
This function gets the first line of the file passed to it and then returns true if the line contains the word “Inherits” but doesn’t contain the word “PublicKeyToken”.
Hope this is useful to someone, it certainly saved me a bunch of repetitive manual work.
Popularity: 1% [?]
A minor nit: “No-PublicKeyToken” is named in conflict with PowerShell best practices. For boolean returning test predicate functions/cmdlets, “Test” is the standard verb. Therefore, “Test-HasNoPublicKeyToken” might be a good name for the function.
Certainly useful code though