D365FO Searching Code
Views (11)
It is oftne useful to be able to search through all the code to find an error message so you can understand the error condition.
The best way to search the code is to use powershell:
cd "K:\AOSService\PackagesLocalDirectory"
Get-ChildItem .\* -Recurse -Include *.xml | Select-String -Pattern "<key word to search for>" | Set-Content -Path "$home\Desktop\SearchResult.txt"
This was originally posted here.

Like
Report
*This post is locked for comments