web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :

D365FO Searching Code

DaxNigel Profile Picture DaxNigel 2,574

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.

Comments

*This post is locked for comments