mitsukai Posted December 8, 2007 Posted December 8, 2007 hello i want to create a system folder and add items to it...than i need to add a link to this folder in the control panel.system folders are like "administrative tools", "printers and faxes" etc.
eidenk Posted December 12, 2007 Posted December 12, 2007 You can make any standard folder a system folder by using a vb script called togglesystembit I think.As for folders like printers, control panel, My Computer, etc..., they aren't actually real folders but virtual ones, otherwise known as namespace extensions.Other folders are both real and virtual, that's the recycle bin, the temporary internet files, Cookies and IE history folders for example. Here you have namespace extensions handling the contents of real folders.If you want to create such folders you need to learn coding and write a namespace extension dll and register it in your system.That's a nice tool to put executables in the control panel :http://www.simtel.net/pub/pd/68753.html
spacesurfer Posted December 12, 2007 Posted December 12, 2007 Create your folder "c:\Myfolder". Then in command prompt, type "attrib +s +h +r C:\Myfolder". This will make it a system folder - meaning it's hidden (even when viewing hidden files and folder), but it's visible when viewing hidden system files. Otherwise, you can't make a folder to add to control panel unless you write an extension.
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now