How to search for specific tags in Microsoft products?

Dyrul Courtney 0 Reputation points
2025-03-20T16:34:22.8966667+00:00

What is the process to search for specific tags within Microsoft products? Are there particular locations or features that facilitate this search?

#search #tag #dyrul

Microsoft Q&A
Microsoft Q&A
Use this tag to share suggestions, feature requests, and bugs with the Microsoft Q&A team. The Microsoft Q&A team will evaluate your feedback on a regular basis and provide updates along the way.
871 questions
{count} votes

2 answers

Sort by: Most helpful
  1. MotoX80 35,716 Reputation points
    2025-03-20T18:49:47.63+00:00

    If you just want to get a list of tag names you can use this Powershell script. I'm not aware of any search capability on this site for tags.

    #---------------------------------------------
    # Script: Show-QNA-Tags.ps1
    # Author: MotoX80
    # Last update: 20-Mar-2025
    #---------------------------------------------
    $tags = @()
    $LastUri = ""
    $pagecount = 1 
    while($true) { 
    	$page = Invoke-WebRequest "https://learn.microsoft.com/en-us/answers/tags/?page=$pagecount"
    	if ($LastUri -eq $page.BaseResponse.ResponseUri.AbsoluteUri) {      # did we get redirected to the last page? 
    		break 
    	}  
    	$tags += ($page.AllElements | Where-Object -Property Class -eq 'card-title').innerText
    	$LastUri = $page.BaseResponse.ResponseUri.AbsoluteUri
    	$pagecount++ 
    } 
    cls
    $tags = $tags | Sort-object | Select-Object -unique 
    $tags
    $tags | clip
    ""
    write-host -foregroundcolor Yellow "Tags have also been copied to the clipboard."
    
    0 comments No comments

  2. Alison A 1,285 Reputation points Microsoft External Staff
    2025-03-20T19:48:27.8066667+00:00

    Hi,

    On the Q&A main page, click on the product, then select the option to browse all tags associated with it.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.