how to read pastebin files You can use the command prompt to search. ---------------------------------------- Start - All Programs - Accessories - Right click Command Prompt and choose Run As Administrator. Type (or copy and paste by right clicking in the Command Prompt window and choosing Paste). Search File Names To search for a file in a folder. dir c:\windows\shell32.dll how to read pastebin files How to get it for free? how to read pastebin files To search for a partial name in a folder dir c:\windows\sh*.dll To search the hard drive for a file and search for hidden files as well. dir c:\shell32.dll /s /a The first search will have to read the disk structure. This places the structure in the file cache. Second and subsequent searches will be run against the cached structure. This means the second and subsequent searchs are very, very quick. how to read pastebin files How to get it for free? how to read pastebin files For help dir /? Search File Contents To search all ini files in a folder for exact text CodePage findstr /c:"CodePage" c:\windows\*.ini how to read pastebin files How to get it for free? how to read pastebin files To search all ini files in a folder and it's sub folders for text Windows or System findstr /s "Windows System" c:\windows\*.ini For Help findstr /? . how to read pastebin files How to use it? how to read pastebin files -- how to read pastebin files