Windows 10
A Microsoft operating system that runs on personal computers and tablets.
11,906 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
impossible to ask microsoft a question through their rubbish Q & A panel - not finding tags
I too had issues with the tags, so I wrote this little Powershell script to screen scrape the site to list off all tag names. It saves the tags in the clipboard so that you can paste them into notepad for reference/searching.
$tags = @()
$tc = 0
1..15 | foreach {
$page = Invoke-WebRequest "https://learn.microsoft.com/en-us/answers/tags/?orderBy=Name&page=$($_)"
$tags += ($page.AllElements | Where-Object -Property Class -eq 'card-title').innerText
$tags.count
if ($tc -eq $tags.count) {
break
} else {
$tc = $tags.count
}
}
$tags = $tags | Sort-object | Select-Object -unique
$tags
$tags | clip