-->

Wednesday, 8 October 2014

Net Booster Windows Form Project in .Net 3.5 Framework

Net Booster Windows Form Project in .Net 3.5 Framework

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();

Read other related articles

Also read other articles

© Copyright 2019 Project Source Code | All Right Reserved