• androidimg
  • phpimg
  • c++img
  • javaimg
  • netimg
  • Android Programming

    Android software development is the process by which new applications are created for the Android operating system. Applications are usually developed in the Java programming language using the Android Software Development Kit.

  • PHP Programming

    PHP is a server scripting language, and widely-used open source general-purpose scripting language that is especially suited for web development and can be embedded into HTML.

  • C++ Programming

    C++ is one of the most popular object oriented programming languages and is implemented for both hardware and operating system platforms. C++ is also used for hardware design, where the design is initially described in C++, then analyzed, architecturally constrained, and scheduled to create a register-transfer level hardware description language via high-level synthesis.

  • Java Programming

    Java is an object-oriented language similar to C++, but simplified to eliminate language features that cause common programming errors. Java source code files are compiled into a format called bytecode.

  • .Net Programming

    Microsoft describes .NET as a set of software technologies for connecting information, people, systems, and devices. This new generation of technology is based on Web services-small building-block applications that can connect to each other as well as to other, larger applications over the Internet.

Wednesday 8 October 2014

Posted by Venika Emy
No comments | 20:49
Project Description: Net Booster project is windows application which main purpose is boost 20% and more Dial up or Broadband network internet speed by updating windows registry files these updates known as window tweaks. This project built in .net framework 3.5, so after build a setup file you must need .net framework 3.5 to run this project and it also need administrator privileges to manipulate windows configuration, so run this project in “Run as administrator” mode. 

Net Booster Windows Form Project in .Net 3.5 Framework

Features of Net Booster Project:
  • Build in windows form.
  • Integrated with process bar.
  • Demonstrate how to access window registry file.
  • One click edit and reset feature.
  • Build individual setup file.

”download”
ProSourceCode:

To add Values:
string add = @"SYSTEM\CurrentControlSet\Services\TCPIP\Parameters";
            key1 = Microsoft.Win32.Registry.LocalMachine.CreateSubKey(add);
            key1.SetValue("TcpTimedWaitDelay",30);
            key1.SetValue("MaxUserPort",32768);
            key1.SetValue("KeepAliveInterval",1);
            key1.SetValue("GlobalMaxTcpWindowSize", 256960);
            key1.SetValue("TcpWindowSize", 256960);
            key1.SetValue("DefaultTTL", 64);
            key1.SetValue("EnablePMTUDiscovery", 1);
            key1.SetValue("SackOpts", 1);
            key1.SetValue("TcpMaxDupAcks", 2);
            key1.Close();
            string add1 = @"SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters";
            key = Microsoft.Win32.Registry.LocalMachine.CreateSubKey(add1);
            key.SetValue("IRPStackSize", 32);
            key.SetValue("SizReqBuf", 17424);
            key.Close();

To delete Values:
                    key.DeleteValue("TcpTimedWaitDelay");
                    key.DeleteValue("MaxUserPort");
                    key.DeleteValue("KeepAliveInterval");
                    key.DeleteValue("GlobalMaxTcpWindowSize");
                    key.DeleteValue("DefaultTTL");
                    key.DeleteValue("EnablePMTUDiscovery");
                    key.DeleteValue("SackOpts");
                    key.DeleteValue("TcpMaxDupAcks");
                    key.DeleteValue("TcpWindowSize");
                    key.Close();

0 comments:

Post a Comment

About Us

We provide excellent programming solutions & supports in an easy ongoing development environment.
Sitemap