QUOTE (soporific @ Jun 4 2007, 10:56 AM)

Latest News:v1.96.58 is out get it here:
upgrade 1.96.50 to 1.96.58file size: 297kb
changes from 1.96.57 to 1.96.58:1) there is a big code bug in 1.96.57 that may or may not trigger. It doesn't seem to be a problem in normal program operation - the bug is in the code for the menus at the start of the program so its nothing important, but a very common label has somehow

been repeated twice and its only because the proper one is above the wrong one that nothing appears different.
2) If you try to exit the program with CTRL-C (like the screen says at the end), AND you have rebooted at least once during the patch session, when you exit you get another DOS window with a message saying "Batch file missing". This file is supposed to be missing, you just aren't supposed to see that message.
EDIT: the suspense is killing me ... is this version any good? The new May 2007 is all ready to go but i want at least one word of feedback on the new code before releasing! So i hereby announce a competition: the first person who replies with some feedback about 1.96.57 or 1.96.58 will be awarded: 10 points, a commendation from the God of Feedback, good luck for a week, a gold star, a plaque commemorating this achievement, a purple flower stamp, and some Che Guevara Lip Balm. Ok so i'm lying about the plaque and the lip balm, but the rest is all waiting to be won ... OK, wait for it .... Ready ..... Steady .................. GO!
EDIT2: - Yes!! my dastardly plan seems to be working perfectly!! ... you see, the reason no-one has given any feedback is because the code was written in such a way as to make all those who install it and use it, completely disappear! Yes, that's right, Auto-Patcher is actually a disintegrator in disguise, and i actually work for Microsoft who want me to bump off everyone still using Windows 98. It's working!! If you think i'm joking, why not try installing it yourself... you could always come back and tell me i'm wrong ... and while you're here you may as well say something about the program itself .....
edit3: and the winner is .... LL028!! ... now about that gold star and purple flower ... just give me a sec ...

Soporific. Sorry to spoil your day, but "We have a problem Houston"!
With respect to AP 1.96.58 =>
1. The debug report option does not work when selected from the Start Menu
2. AP hangs if one selects the Custom option to edit Config.sys to change the amount of ES allocated when SE boots up (Ctrl C cannot be used to terminate the console window)
3. AP outputs the following error message when the option to report all the missing patches is selected
This program has performed an illegal operation and will be terminated.
Quit all programs, and then restart your computer.
If the program consistently encounters problems, click the Start button,
then select Help, Troubleshooting, and 'If you have trouble running
MS-DOS programs'.
The program encountered a general protection exception.
Fault location: FFFF:10000
Interrupts in service: None
I wasn't able to fully research the third problem last night, but this is what I have established thus far =>
1. The "general protection exception" (GPE) occurs in MainCode.bat which is launched by this section of code in HFsecure.bat
CODE
:ENDTHIS
%COMSPEC% /E:2048 /C "%LOC8%\code\MainCode.bat" HF_END
At the time the GPE occurs, Report.txt contains the following with respect to the Critical Security Hotfixes module:
*** Critical Security Hotfixes module:
36. q245729: Hotfix for File Access URL Vulnerability
37. q258765: Hotfix for Remote Update Option Vulnerability
38. q269239: Hotfix for NetBIOS Vulnerability May Cause Duplicate Name
39. q269388: Hotfix for Spoofed Route Pointer Vulnerability
40. q273991: Share Level Password Update
41. q273727: Hotfix for Malformed IPX NMPI Packet Vulnerability
42. q274113: Hotfix for WebTV Vulnerability
43. q314941: Hotfix for Vulnerability in Universal Plug 'n' Play
44. q323172: Hotfix for Certificate Enrollment Control Vulnerability
45. q323255: Hotfix for Windows Help Facility Vulnerability
46. q329048: Hotfix for File Decompression Function Vulnerability
47. OLEDBUp: OLE DB Provider for Internet Publishing Update
48. TelnetUp: Hotfix for Buffer overrun in Telnet Vulnerability
49. kb811630: Hotfix for HTML Help Security Vulnerability
50. kb823559: Hotfix for Buffer Overrun In HTML Converter Vulnerability
51. kb873374: Hotfix for Vulnerability in JPEG Processing
52. kb891711: Unofficial Hotfix for Cursor and Icon Format Handling Vulnerability
53. kb917344: Hotfix for Vulnerability in Microsoft JScript
54. kb918547: Unofficial Hotfix for Vulnerability in Graphics Rendering Engine
55. UCrypt9x: Unofficial 128-bit SSL Encryption Security Fixes
56. kb926247: Unofficial Hotfix for Vulnerability in SNMP Service
2. If I change the aforementioned code in HFsecure.bat to read as follows:
CODE
:ENDTHIS
CALL "%LOC8%\code\MainCode.bat" HF_END
then the GPE still occurs, but in (I think) a different section of AP's code.
When the GPE occurs this time, Report.txt contains the following with respect to the Critical Security Hotfixes module:
*** Critical Security Hotfixes module:
36. q245729: Hotfix for File Access URL Vulnerability
37. q258765: Hotfix for Remote Update Option Vulnerability
38. q269239: Hotfix for NetBIOS Vulnerability May Cause Duplicate Name
39. q269388: Hotfix for Spoofed Route Pointer Vulnerability
40. q273991: Share Level Password Update
41. q273727: Hotfix for Malformed IPX NMPI Packet Vulnerability
42. q274113: Hotfix for WebTV Vulnerability
43. q314941: Hotfix for Vulnerability in Universal Plug 'n' Play
44. q323172: Hotfix for Certificate Enrollment Control Vulnerability
45. q323255: Hotfix for Windows Help Facility Vulnerability
46. q329048: Hotfix for File Decompression Function Vulnerability
47. OLEDBUp: OLE DB Provider for Internet Publishing Update
48. TelnetUp: Hotfix for Buffer overrun in Telnet Vulnerability
49. kb811630: Hotfix for HTML Help Security Vulnerability
50. kb823559: Hotfix for Buffer Overrun In HTML Converter Vulnerability
51. kb873374: Hotfix for Vulnerability in JPEG Processing
52. kb891711: Unofficial Hotfix for Cursor and Icon Format Handling Vulnerability
53. kb917344: Hotfix for Vulnerability in Microsoft JScript
54. kb918547: Unofficial Hotfix for Vulnerability in Graphics Rendering Engine
55. UCrypt9x: Unofficial 128-bit SSL Encryption Security Fixes
56. kb926247: Unofficial Hotfix for Vulnerability in SNMP Service
*** Critical & Recommended System Updates Module:
With the exception of the last line of this report, the output of Report.txt here is identical to that of Report.txt before I changed the code.
I haven't had time to investigate further, but with the coding change I made I suspect the GPE now occurs in HFSysOth.bat instead of MainCode.bat?