There are two commands that need to be executed:
<em>cd</em><em> </em><em>C</em><em>:</em><em>\</em><em>W</em><em>i</em><em>n</em><em>d</em><em>o</em><em>w</em><em>s</em><em>\</em><em>S</em><em>y</em><em>s</em><em>t</em><em>e</em><em>m</em><em>3</em><em>2</em>
<em>dir</em><em> </em><em>*</em><em>.</em><em>ini</em>
Let's analyse them.
First we have the cd command aka change directory command. It's very simple.
cd {directory path}
Whenever you enter this command windows operating system will internally switch the path parameter of the working terminal to your desired path in this case windows system32 directory.
Then we have another command. The dir or directory command.
dir {directory path}
Directory command will list you all files and subdirectories in a certain directory.
{file name}.{file extension}
If we use * for file name you are telling your os that all you care is file extension so it will return you all files in a certain directory who possess the same file extension.
Hope this helps.
r3t40