Jump to content

Sculptor

Member
  • Posts

    4
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United Kingdom

About Sculptor

Contact Methods

  • Website URL
    http://

Sculptor's Achievements

0

Reputation

  1. Attached archive contains "all.txt" file (1393kb), just in case u need it. all.rar
  2. Greetings XtremeMaC kindly sent me all reg tweaks that he collected from this thread. I put them all in one big "all.txt" file (1393kb). I wrote 3 small C++ programs. 1st, "Filter.cpp" expands all Value entries by adding Key data in front of Value data. Input file is determined by 1st command line argument. Output file is "filtered.txt". All comments are copied exactly as they are. All other data is pasted to 2nd output file, "unknown.txt". Example: ;Change Default Search Options (1 = ON, 0 = OFF) [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer] "SearchSystemDirs"=dword:00000001 "SearchHidden"=dword:00000001 "IncludeSubFolders"=dword:00000001 "CaseSensitive"=dword:00000001 "SearchSlowFiles"=dword:00000000 is expanded as: ;Change Default Search Options (1 = ON, 0 = OFF) [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer]"SearchSystemDirs"=dword:00000001 [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer]"SearchHidden"=dword:00000001 [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer]"IncludeSubFolders"=dword:00000001 [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer]"CaseSensitive"=dword:00000001 [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer]"SearchSlowFiles"=dword:00000000 Multiline Value data are supported too. Example: [HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\TaskManager] "UsrColumnSettings"=hex:1c,0c,00,00,34,04,00,00,00,00,00,00,78,00,00,00,01,00,\ 00,00,1d,0c,00,00,35,04,00,00,01,00,00,00,23,00,00,00,01,00,00,00,1e,0c,00,\ 00,36,04,00,00,00,00,00,00,5d,00,00,00,01,00,00,00,1f,0c,00,00,39,04,00,00,\ 00,00,00,00,64,00,00,00,01,00,00,00,20,0c,00,00,37,04,00,00,00,00,00,00,78,\ 00,00,00,01,00,00,00 is expanded as (one line): [HKEY_CURRENT_USER\Software\Microsoft\WindowsNT\CurrentVersion\TaskManager]"UsrColumnSettings"=hex:1c,0c,00,00,34,04,00,00,00,00,00,00,78,00,00,00,01,00,\/00,00,1d,0c,00,00,35,04,00,00,01,00,00,00,23,00,00,00,01,00,00,00,1e,0c,00,\/00,36,04,00,00,00,00,00,00,5d,00,00,00,01,00,00,00,1f,0c,00,00,39,04,00,00,\/ 00,00,00,00,64,00,00,00,01,00,00,00,20,0c,00,00,37,04,00,00,00,00,00,00,78,\/00,00,00,01,00,00,00 2nd program, "remdup.cpp", removes all duplicate entries, including duplicate comments. Input file is "filtered.txt". Output file is "filt2.txt". 3rd program, "finalize.cpp", converts data from "filt2.txt" to reg file format. Input file is "filt2.txt". Output file is "final.txt". "Final.txt" has 340kb. Approx 75% redundant data were removed. It contains all reg tweaks from this thread (up to page 56, i think). It has no duplicate entries. It has redundant comments, though. Attached archive contains "filter.cpp", "remdup.cpp" and "finalize.cpp" sources and output files "final.txt" and "unknown.txt". I have no time to further process "final.txt" manually. If some 1 has time to process it further, just go ahead. Other option is to split it on several parts. Each part can be processed by other person that way. Some comments contain (commented out) reg tweaks that might be redundant. Note: If you have any questions, you can reach me at blazic@gmail.com . Have fun! all_tweaks.zip
  3. Every time you connect to a web server, your IE sends a User Agent string that includes certain data about your system (OS & browser). Here are few examples: 1.Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0) - IE 5.5 running on Win2000 2.Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 5.1) - IE 6.0 running on WinXP 3.Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 5.2) - IE 6.0 running on Longhorn Some webforums use User Agent string to determine and display type of one`s OS. I will show you how to change your IE User Agent string. Before we find out how we can change it, we can see what our current IE User Agent string is by using following code (save it as .html file and open it with your IE): <html> <body> Your User Agent header is: <pre> <script type="text/javascript"> <!-- document.writeln( navigator.userAgent ); // --> </script> </pre> </body> </html> Our arbitrary User Agent string will be: A (B; C; D [E1; E2;...]), where Ex are additional information than can be added, if necessary. If we want, for instance, to change our User Agent string to: Mozilla/4.01-C-MACOS8 (Macintosh; I; PPC), we should use following registry tweak: [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Internet Settings\5.0\User Agent] "Compatible"="Macintosh" "Version"="I" "Platform"="PPC" @="Mozilla/4.01-C-MACOS8" We can conclude that: 1st UA string field ( A ) = data of Default value 2nd UA string field ( B ) = data of value Compatible 3rd UA string field ( C ) = data of value Version 4th UA string field ( D ) = data of value Platform If these values do not exist, fill free to create them. If we want to add some extra data at the end of our User Agent String, for example, to change our new User Agent string to: Mozilla/4.01-C-MACOS8 (Macintosh; I; PPC; Sculptor; Rules), we should go for: [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\User Agent\Post Platform] "Sculptor"="" "Rules"="" So, if we want to add some additional information at the end of our User Agent string, we should create properly named empty string values in the Post Platform key. Notice: If you want to test it out, remember: close all open IE windows for the changes to take effect.
  4. Try this: Start -> Settings -> Control Panel -> Regional and Language Settings -> Languages TAB -> Details -> Advanced TAB -> deselect Turn off advanced text services
×
×
  • Create New...