How can I open the file properties dialog on Windows via CLI?

Does Windows offer a way to open the file/directory properties dialog through command line?

I found various rundll32.dll commands, but none of them offer this functionality. What would be the

enter image description here


Solution 1:

There is a utility called wmic in windows

wmic datafile where Name="F:\\abc.txt" get Description,Name,FileType

Hope it helps, Thnx in advance if not pls do comment below...