XP: Converting Folder Into System Folder

  • Thread starter Thread starter mr-rain
  • Start date Start date
M

mr-rain

I want to convert a folder to a system folder for the
purpose of manually inserting a visable background image
in that folder on WinXP.

I was told to RUN\CMD, enter "attrib +s C:\foldername".
When doing so I had given an incorrect parameter msg.
Any clues as to how to correctly do this?
 
The correct syntax to use is
Attrib /S /D +S C:\Foldernam

Note that the D switch tells attrib to process folders and the S switch processes subfolders.

This only seems to work if you have a folder in the folder FOLDERNAME

Hope this helps

Regards
Paul E Davey
 
ok for the purpose of this execise I created a new folder
on my C Drive. The Location is C:\New Folder

in cmd.exe, my starting point is C:\Documents and
Settings\Admin> (does <-- that matter?)

I proceeded to type "Attrib /S /D +S C:\New Folder"
and parameter format is still incorrect... :(

-----Original Message-----
The correct syntax to use is:
Attrib /S /D +S C:\Foldername

Note that the D switch tells attrib to process folders
and the S switch processes subfolders.
 
attrib +r "c:\new folder"

You shpuld be making the folder read only not system. Both do the same but many programs refuse to have anything to do with things marked system. As the path has a space in it it needs to be enclosed in quotes.
 
Back
Top