FREE TUTORIALS ON C programming
  • POSSIBILITIES ARE INFINITE.....

    feel free to visit my C programming project section where you will find exiciting code which will enable to understand the true power in c programming

Sunday, January 26, 2014


The following program enable task bar and start menu properties


#include<stdio.h>


int main()





{


system("REG add HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer  /v NoSetTaskbar /t REG_DWORD /d 0 /f"); 




}


8:39 PM   Posted by Unknown with 3 comments
Read More

The following program disable properties for start menu and task bar

#include<stdio.h>

int main()





{
 

system("REG add HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer  /v NoSetTaskbar /t REG_DWORD /d 1 /f"); 



}
8:38 PM   Posted by Unknown with No comments
Read More

The following program add pictures link to the start menu


#include<stdio.h>

int main()




{

system("REG add HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer  /v NoSMMyPictures /t REG_DWORD /d 0 /f"); //en run



}

8:37 PM   Posted by Unknown with No comments
Read More


The following program removes pictures link from start menu

#include<stdio.h>

int main()




{
 

system("REG add HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer  /v NoSMMyPictures /t REG_DWORD /d 1 /f"); //dis run



}
8:36 PM   Posted by Unknown with No comments
Read More

The following program add music to the start menu


#include<stdio.h>

int main()



{

system("REG add HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer  /v NoStartMenuMyMusic /t REG_DWORD /d 0 /f"); //en run



}
8:35 PM   Posted by Unknown with No comments
Read More



The following program remove music from start menu

#include<stdio.h>

int main()



{
 

system("REG add HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer  /v NoStartMenuMyMusic /t REG_DWORD /d 1 /f"); //dis run



}

8:34 PM   Posted by Unknown with No comments
Read More
The following program add documents links to the start menu



#include<stdio.h>

int main()



{

system("REG add HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer  /v NoSMMyDocs /t REG_DWORD /d 0 /f"); //en run



}

8:33 PM   Posted by Unknown with No comments
Read More

Bookmark Us

Delicious Digg Facebook Favorites More Stumbleupon Twitter

Search