synnyzter @ Fri Sep 18, 2009 12:20 pm wrote:
heh now to remember the syntax to unhide *.cdg
....
1. Go to Start|Run and type:
cmd
in the run box. Click OK.
2. type the following in the command prompt:
attrib -h -s
Make sure you add a space after the -s.
3. Drag and drop the file you want to change onto the command prompt window.
4. Press enter.
5. Repeat 2-4 for each file.
Or make a batch file to do a bunch at once:
1. Make a text file in Notepad and call it Unhide.txt.
2. Put the following line of text in the text file and save it:
attrib -h -s %1
3. Close Notepad and rename the text file to Unhide.bat so that it will be treated as a batch script file. (Note that you'll need have extentions for known file types showing, so if they're not a trip to Folder Options is in order.)
4. Drag and drop the files you need to adjust onto the batch file one at a time.
Hope this helps!