Powermenu 1 38

broken image


  1. Powermenu 1 38 Cm
  2. 1.38 Inches
  3. Powermenu 1 38 Sailboat
  4. Powermenu 1 38 Sailboat

[Please note: To avoid further neglect, this page is now maintained by Gaby Chaudry (you may know her Windows 3.1 site).]

'PowerMenu' is a free utility which provides this essential feature which Microsoft has not implemented in Windows yet. It adds following 4 extra options in Windows control menu (the menu which appears when you right-click on windows titlebar or its taskbar button). PowerMenu.exe is located in a subfolder of 'C:Program Files (x86)' or sometimes in a subfolder of C:WindowsSystem32—mostly C:Program Files (x86)PowerMenu. The file size on Windows 10/8/7/XP is 57,344 bytes. The PowerMenu.exe file is not a Windows system file. It can change the behavior of other programs or manipulate other programs. Power Menu Burrito with steak, reduced fat sour cream, real cheddar cheese, guacamole, pico de gallo, avocado ranch sauce, and romaine lettuce. As part of a site I'm trying to design I have a div with the id 'powersettings' when clicked it toggles a div with the id 'powermenu' and toggles the class 'blur' on my 'content' div and 'tab a's.

Before we begin: What's Win32s anyway?

Win32s is an extension for 16-bit Windows (3.1x) that allows the execution of 32-bit programs originally written for 32-bit Windows versions, such as NT 3.x, 4.0 and Win 9x. But please do not assume that every 32-bit program will actually run on Win32s: originally it was only designed for compatibility with NT 3.x, and only a subset of the Win32 API is supported (that's why it's called Win32s)! By the way: 16 and 32 bit apps can exchange data over the clipboard and use OLE functions (which means that you can put an image that has been created in Paint Shop Pro 3.12 32-bit into your Winword 6.0 document and edit the image in PSP when necessary; this only works if PSP is registered as an OLE server though).

Download of Win32s

Win32s 1.30c can be downloaded here: ftp.microsoft.com/softlib/MSLFILES/PW1118.EXE
or - if this link doesn't work - here: ftp://gaby.de/pub/win3x/win32s/ole32s13.exe

It's about 2.5 MB in size and comes with a 32 bit Help program, which is very useful, as it is a functional equivalent of the Help program of Windows 95; it can even read Win95 help files. Also included is a little game called Freecell, mainly for test purposes. And last but not least, the latest OLE files (v2.03) come with Win32s as well - OLE functionality must come from somewhere ;).

What kind of program is more likely to run on Win32s?

Multi-platform software is more likely to work with Win32s, such as the image viewer XNView (freeware, more than 100 formats), the math software Maple V (until Rel. 4; Rel. 5: Single-user version only), the raytracer POV-Ray (until V. 3.02, Win32s support dropped for V. 3.1; freeware), and, as I've been told, Adobe Photoshop until V.4. And of course we mustn't forget the kind of programs Win32s was originally intended for: a host of Win NT 3.x software (well, 'host of software' may be a 'bit' exaggerated..;). Jixipix hand tint pro 1 0 12 0.

Why are there so many programs that don't run on Win32s?

There are a number of reasons. To summarize:

The programmers must address Win32s specific problems; for example, good memory management is necessary to prevent resource leakage. That means extra work, of course. Additionally Win32s needs program and DLL sections that can be omitted in Win9x/NT. Another reason is that all the newer development tools do not support Win32s anymore (the last MS Win32 SDK that ships with Win32s is from 1996, for example), and today's compilers' defaults are usually incompatible to Win32s as well.

Now the details:

  • If a program uses Win9x specific functions of any kind, multi-threading, relies on fixed addresses (meaning that it lacks relocation tables) or simply uses Win32 functions that aren't implemented in Win32s, then it won't work. In case of lacking relocation tables Win32s simply doesn't understand the format of the executable (resulting in an 'Invalid format' message).
  • The registry database is another problem, especially if the program's keys contain spaces (' ').
  • Console mode apps can run if they're well-written (e.g. have relocation tables etc.), but there are no output possibilities, which means that one can't see what the program is telling the user, including help texts, unfortunately. Additionally, they must be started from Windows; unlike in Win9x, starting them directly from a DOS box doesn't work. Examples of working console mode apps are the Win32 console mode version of the web server Xitami 2.4d7 and the image converter NConvert which comes with the Win9x/NT version of XNView (which BTW, is identical to the 'Win 3.x' version, except for other language DLLs).

For further enlightenment I've cited from various posts from Paul Chitescu (hope he doesn't mind):

[comments in italic]

(Date: Wed, 30 Jun 1999 16:53:38 +0400
Forum: microsoft.public.win3x_wfw_dos)

Waves complete 2017 10 10 download free. Top reasons why a 32-bit applications won't run on Win32s :

  • They use fixed address that are unavailable in Win32s
  • The installer wants NT or 9x - but there are solutions ..
    [see his user page's software directory]
  • Use multithreading (but 95% of them dont' really need MT)
  • Use functions implemented in IE4 - 32bit
    [Active Desktop or the Windows Scripting Host, for example]
  • Are linked to Win32 specific thunking code
  • Are linked to Win9x specific DLL ordinals

As a general rule, well written applications have more chances to run on Win32s. I managed to run (up to a point) MS Word 95 and Excel 95 under Win32s - and those are heavy programs. Why such an application can run and a pityful applet that strips the Internet cache can't - answer yourself.

In the same message he wrote about his modified version of shell32.dll:

Many applications are not using purely Win32 API but also '9x specific ones. MS had to add some things to his NT 4 to keep such applications running (remember DirectX ?)

What I've done is a rewrite of the SHELL32.DLL that came with Win32s ersion 1.30C (that is, build 172). I disassembled that file and copied low-level thunking code as-is, except I stripped unreferenced setjmp() and longjmp() (Note: How did they link them there anyway ?).

  • main enhancement : functions that return an OLE HRESULT now return correctly E_NOTIMPL. The MS version does SetLastError(E_NOTIMPL) but always return 0 so programs assume everything is OK and won't call GetLastError(). That leads to GPFs;
  • changed exported ordinals to match Win95, not NT;
  • possibility to dynamically load another DLL(s) to implement more functions. All documented entry points are patchable;
  • added the Win95 icons ;-)

[Direct download link for his modified version of shell32.dll]

Powermenu 1 38 Cm

Powermenu
Powermenu

I've written a DLL that extends this version of SHELL32 by implementing Shell_NotifyIcon() (both A and W, I've found later that 9x implements only the ANSI version) and SHAppBarMessage(). When I have more time I will implement more SHxx functions.
[I'll ask him if he can put it in his user page's software directory]

In another post in the same newsgroup (dated Thu, 17 Feb 2000 12:29:45 +0200), he wrote the following about memory management in Win32s:

[Someone had encountered an Error 21/'Invalid Format' message from Win32s]

1.38 Inches

Unfortunately the VC++ 5 and 6 compilers default to not generate a .reloc section in applications so the .EXE can be loaded only at its fixed base address (default 0x400000) that is not available in Win32s.

There's no way around this error because of the different memory organization in Win32s where all programs share the memory in a single virtual machine. In a true Win32 environment each 32bit application gets its own virtual machine in which all the address space is free.

List of compatible apps

Legend:

  • 'mp' means multi-platform software.
  • Especially 'friendly' apps are marked ':)'.
  • Programs that are also friendly, but which suffer from minor problems (difficult installation, resource eating or slight instabilities), are marked ':|'.
  • Programs suffering from major instabilities (thus being only useful for experiments) are marked ':('. The third category is constituted by programs not intended for Win32s (as you may imagine).
  • Smileys in brackets mean 'not sure'.
  • Question marks stand for 'unknown'.
  • The license types are COM (commercial [payware]), COM/DEMO (commercial, w/ demo version), FREE (freeware), SHR (shareware).

Note: Many thanks to Gaby Chaudry, who has added quite a few programs in the past :).

CompanySoftware / VersionLicense'Friendliness'StabilityProblem(s)Solution to the problem(s)Installable under Win32sIntended for
A+M NeuberTypograf 3.0SHR:)Good----yesWin 9x/NT
AdobePhotoshop until 3.xCOM:)GoodInstaller may give trouble by crashing in module (v3.0)Try installing with a minimum Windows configYesAny Win32 (mp)
AdobePhotoshop 4COM[:|]Said to be less fast and stableResource hog--YesAny Win32 (mp)
Ahead Software GmbHNero Burning ROM (until 4.0.3.0, newer versions: support dropped)COM/ DEMO:)GoodDoes only support SCSI CD-R drives, slight display problems, with SCSI burning problems seem to be anything but rare1st problem: Not found yet :-(YesAny Win32
Ajuba SolutionsTcl/Tk 8.0p2FREE:)GoodMinor incompatibilities--YesAny Win32 (mp)
AladdinGhostscript 6.01, GSview 3.6 FREEWARECOM/ FREE:|GoodDifficult install, some utility programs don't run on Win32sRTFMYesAny Win32
Alchemy Mindworks Inc.GIF Construction Set 95 1.0LSHR:)GoodMay complain about missing DLLsIt's not impossible to get those, though ;)YesWindows 95
Barefoot Inc.Tiles and Tribulations 1.5SHR:)Good----yesWindows 95
Christian GhislerWindows Commander 4.01 32bit (recently renamed to Total Commander)SHR:|Averagecrashes sometimes, directories won't be shown at startupuse 16bit versionyesWin 95/NT
Contact PlusMore Space '95 2.5SHR:)Good----yesWindows 95
Corel Corp.CorelDEPTH 6.0COM:|GoodMissing key in the registry databaseExecute this registry editor with the parameter /V and add the key (HKCR is root directory, all others are the same as HKCR)No, click here for dir list and ini file excerptsWin 95
Corel Corp.CorelDREAM 3D 6.0COM:|GoodSame as aboveSame as aboveNo, click here for dir list and ini file excerptsWin 95
Daniel HyamsCurve Expert 1.3SHR:|GoodReplaces CTL3D32.DLL. Help doesn't work, may cause a crash if executed anyway.Make a backup copy of CTL3D32.DLL before installing, and write it back afterwards.YesAny Win32
DommelschRoll'm upFREE:|Goodcrashes when leaving program or trying to load highscore list (i.e. 'Game over' really means 'game over'..)NoneYesWin95
FMJ SoftwareAwave 3.0SHR:)Goodmay crash when used with incompatible sound cardnoneYesAny Win32
FortéFree Agent 1.11/32FREE:)Good----YesWin95/NT
Funduc Software Inc.Search and Replace for Win95/NTSHR[:)]Good?--YesWin 95/NT
Gekko SoftwareKalua Cocktails 98DEMO:)GoodOccasionally shows error messages. Sound effects don't work (depending on sound card?).ignore error messagesYesWindows 9x
Gilles VollantWinImage 5.0SHR:|?Caused a few system lockups while reading floppies here - no clue why?YesAny Win32
Guardian Software Productions Patrick CornelißenSoundGuard 2.0SHR:|Goodstarts up with error messages (ignore them) and cannot be closed normallyuse a taskmanager or other program that can kill the problem(s) processes to close the applicationNot neededAny Win32
H&H EnterprisesKeyNote Music Drills 1.60SHR:)Goodresource hog--not neededWin95/NT 3.51
Hamrick SoftwareVuePrint Pro/32 7.6eSHR:)GoodNone as yet--YesAny Win32
HeadLight SoftwareGetRight 1.3bSHR:)GoodDoes not always work with Trumpet Winsock, some fiddling with proxy servers required (only if you use one, of course)Make sure Win32s's wsock32.dll is usedYesAny Win32
Helios Software SolutionsTextPad32 1.30SHR:)GoodNone--YesNT 3.x
iMatix Corp.Xitami 2.4d7 Win32 console mode versionFREE:)GoodConsole mode, so there's no outputnoneYesAny Win32 (mp)
IpswitchWS_FTP Pro 6.0COM:(GoodProfile manager hangs?YesWin95/NT
IpswitchWS_PING32?[?]?Some display problemsnone??
IpswitchWS_PingProPack 2.10COM:)Goodnone--YesWin95/NT
IpswitchWS_WATCHFREE:)GoodSome display problems, wants to use MS icmp.dllnone; insert line 'ms_icmp.dll=0' into %windir%ws_watch.ini to force using rs_icmp insteadYesAny Win32
Irfan SkiljanIrfanView32 2.05FREE for private use:)Average----yesWin 95/NT
JASC Inc.Paint Shop Pro 3.12SHR:)Good; very stableWill not show the properties of PNG images in the Open File dialog if they have been created by PSP itselfnone (the bug does not only occur under Win32s)YesAny Win32
Jeff ParkerMemory Status 1.1FREE:)GoodSmall resource leak--YesAny Win32
Jerome TremblayWindow HTML 1.1FREE:)Goodproduces long file name associations in the HTML filesedit the HTML code..YesWindows 9x
Lars HedererCabPack 1.3FREE:)GoodNone--YesWindows 9x
Leonardo LoureiroLView Pro 1.D2 32-bitSHR:)GoodNone--YesAny Win32
Luca BertoncelloEasyFTP 1.0SHR:)Good----yes, but installer may force other active applications to crash (e.g. Calmira)Win 95/NT
Lucien CincWinOne 7.3COM/Demo:)Good----yesany Win32
Michael SchöbelMichael's Disk Benchmark 2.0SHR:)Good----yesWin 9x/NT
?mIRC 5.6?[?]?Config dialog uses lots of resourcesConfigure mIRC when enough resouces are freeYes?
MicrografxPicture Publisher 6.0COM:(MediocreRegistry (does not save settings), startup screen won't go away, new window opened at startupFor startup screen: Find the dialog box under the startup screen, move it away and close it.
Otherwise: None, use for experiments only.
NoWin 95
Microsoft3D Pinball Space Cadet (included with NT 4.0)COM:)????Win NT4
MicrosoftFontView (from Win95's Quick Viewer)COM:)Goodnone--NoWin95
MicrosoftHelp compiler v4.0.213COM[?]it works?--?Win 95/NT (?)
MicrosoftMS-Info32 (from Office 95)COM[?]??--Probably notWin 95/NT
MicrosoftOLE2 viewer (Win95 SDK, Visual C 2.0)COM[?]it works?--?Win 95/NT (?)
MicrosoftWindows 95 calculatorCOM:)Goodnone--Not neededWin95
MicrosoftVarious W95 screen savers (the 'standard' ones, such as flywin, marquee, mystify etc.; 32-bit flywin runs _much_ more smoothly), except for bezier.scrCOM:|GoodSettings aren't savedKeep Paul Chitescu's Enhanced Registry Editor open.Install not neededWin 95
MicrosoftWindows 95's WordpadCOM:(Not all that goodRuler doesn't work, crashes on opening / saving files (IIRC)You need the Win32s compatible msvcrt20.dll and the MFC 3.0 DLLsInstall not neededWin 95
MirabilisICQ 1.111betaFREE:|GoodSometimes problems when communicating with newer versions, installs Win32s incompatible msvcrt40.dll, doesn't seem to work with IE 3.02's dialer, crashes on startup if Netscape is already running (resource shortage?), no longer works due to protocol changes?DLL problem: Replace with the correct version; otherwise: noneYesAny Win32
POV-Ray 3.02 (3.1 upwards: support dropped)FREE:|GoodSystem hangs when POV-Ray restarts itselfIf settings need a restart, change them manually in the pvengine.ini file.YesAny Win32 (mp)
Peter TheillFontLister 1.5FREE:)Good----not neededWindows 95
PhotodexCompuPic 4.00 build 963SHR:(unstablecrashes often, uses up nearly all the resourcesnoneYesWin95/NT
Pierre-e GougeletXNView 1.25 ('Win 3.x' version) and newerFREE:|GoodV1.07 didn't like Instant File Access; the versions 1.11 and 1.12 had a resource leak; the file browser in new versions is pretty resource hungryUse standard dialog instead (V1.07); resource leak fixed in 1.14Not neededAny Win32 (mp)
Pierre-e GougeletNConvert (included w/ XNView 1.15 for Win9x/NT)FREE:)GoodConsole mode, so one doesn't see what happensnoneNot neededAny Win32 (mp?)
RarSoftWinRAR 2.02SHR[?]??--?Win95/NT
Raihan Kibriafrhed - free hex editor 1.0.156FREE:)Goodnone--Not neededAny Win32
Raphael MolleWinVi 2.90 (32bit version) and newerFREE:)GoodAbout dialog doesn't worknone / use 16 bit version :)Not neededAny Win32
Siegfried WeckmannSWInfo 3.04FREE:|Goodonly partially usable because of incorrect outputnoneYesWin95
SmartdrawSmartdraw 3.23COM:)GoodInstaller says the program doesn't work with Win 3.1x (this is wrong)--YesWin95/NT
Todd C. WilsonMapThis! 1.3FREE:)Goodnone--YesAny Win32
UR SoftW32Dasm 6.4 and laterCOM/ DEMO:|Rather mediocreCrashes now and then, but Win32s can intercept the crashes; resource eaternoneNot neededAny Win32
Uwe SchmidtDatSave 1.2SHR:)Good'Open' dialog doesn't show any filesEnter file name manuallyYesAny Win32
Vincenzo IuornoLookdisk 2.5FREE:)GoodNone--YesAny Win32
Vulcan TechnologyVulcan Notes 2.13SHR:)GoodNone so far--YesWin95/NT
Waterloo MapleMaple V Rel. 5 Single-userCOM:|GoodCollides with All3D; uses 36% of GDI resourcesDo not add any 3D effects to wmaple.exe in Control Panel >> All3D; Maple uses them by itself, which then leads to a system hangYesWin95/NT4+, Win32s (mp)
Waterloo MapleMaple V Rel. 4COM[:)]Not extensively testedNone, seems to use less resources (~17%)--YesAny Win32 (mp)
XATechJPEG Optimizer 1.31SHR:|Goodit's impossible to close the program because of a persisting error messageuse the task manager to exit the programNoWin95
XATechJPEG Optimizer 3.15SHR:(Goodit's impossible to close the program because of a persisting error message; help doesn't work (may even crash the system); all features available in unregistered version, but the new ones (vs. 1.31) disappear when the registering code is entered!?use the task manager to exit the programNoWin95
Yuri SoftwareHEdit32 v1.2SHR:)GoodNone--YesAny Win32 (Win NT 3.1)

Win32s related downloads

I have some localized (=translated) Win32s 1.30c DLLs, but I'm not going to upload them, as they are quite large (German language files: approx. 607 KB zipped). If you'd like to have Danish, German, Spanish, Finnish, French, Italian, Dutch, Norwegian or Swedish DLLs and Winhlp32, just write to me and I will send them to you.

Windows NT 3.51 compatibility

Powermenu 1 38 Sailboat

One could call NT 3.51 'Win 3.1 on steroids', and there certainly is some truth to that. However, under the 3.1-ish hood it doesn't bear too much resemblance to plain Windows 3.1x - it's a 32 bit operating system which supports true preemptive multitasking, multithreading, SMP operation (NT Workstation: up to 2 CPUs, NT Server: up to 4 CPUs, NT Advanced Server: up to 8 CPUs), OpenGL acceleration (3D stuff), Unicode character sets/fonts and which runs much more stable than 'consumer-grade Windows' (partly due to virtually not having those nasty resource limits that drive you nuts in 3.1x).
Weaknesses are relatively few: No power management support, no support for plug and play (don't try removing PCMCIA cards when it runs!), only very limited (and thus virtually useless) DCI video acceleration. As you can see, it's not without a reason that the NT variants are called 'Workstation' and 'Server' - these names describe best where NT is able to play out its strengths (or the other way round: where its weaknesses don't matter much): office computers, graphic workstations (well, at least back then) and servers. Obviously it's not an ideal choice for multimedia or notebook computers. (This only changed with Windows NT 5.0 a.k.a. Windows 2000.)

Considering its 1995 release date (and 32 bit nature), it isn't all that amazing that Windows NT 3.51 is more demanding than plain 3.1x: 16 MB of RAM are the bare minimum, though even 24 megs will only allow operation of contemporary software (like Netscape 4.08) with lots of swapping; with 48 MB it's a lot better. Having become the proud owner of a dual Pentium 90 machine recently (Gigabyte GA-586DX rev. 3B, 48 (originally 24) megs of RAM from my old P75@90, a 540 meg hard disk, spare ELSA 2 meg PCI graphics card, 10 MBit PCI NIC), I decided to try NT 3.51 on it ('cuz it's 'the OS I've always wanted to check out').

Powermenu 1 38 Sailboat

It seems that this elderly OS has largely been abandoned, and quite a few newer apps will not run on it. (IMO this is a pity - it's a quite nice, stable OS.) The reasons for this are partly similar to those with Win32s:

  • Missing NT4/Win95 specific functions (Kernel32/User32/GDI32)
  • Missing HAL functions (most NT 4.0 drivers will not work, and getting ones for 3.51 is pretty much impossible with newer hardware - essentially the same problem as with Win 3.1x, but with a slightly larger possibility that 4.0 drivers might work)
  • Dated versions of common dialog and common control DLLs
  • No DirectX, of course (it doesn't work very well in NT 4.0 either, and needs kernel functions only available in NT 4.0 up)
  • Missing OpenGL functions only implemented in NT 4.0 up
  • Only Winsock 1.1 support, no Winsock 2.0, like in NT 4.0 / Win98 up (and optional in Win95)
  • Different GUI behavior (mostly leads to cosmetic problems only, comparable to the same issues in Win 3.1x + Win32s)

So it's time for a compatibility list, don't you think?

CompanySoftware / VersionLicenseStabilityProblem(s)Solution to the problem(s)Installable under NT 3.51Intended for
AdobeAcrobar Reader 3.01 (32-bit)FREEGoodnone noted; later versions don't work--YesWin 95/NT
CompCoreSoftPEG 2.21COM (*)GoodMplayer.exe from VfW 1.1 is needed; no video acceleration--YesWin 3.1x/95
Eberhard Backeshoff, DK8JVJVComm32 1.21SHRMediocreThe self-extracting distribution ZIP archive doesn't want to run; app crashes as soon another mode than 'None' is selected (probably window creation fails), which pretty much makes it uselessUse WinZip to extract the files and run setup.exe; none(No)Win95/NT4+
GIMPSPrime95 v21FREEGoodNone, great stability test (and you can make math history by finding a Mersenne prime :)--YesWin95/NT
JASC Inc.Paint Shop Pro 3.12SHRGood; very stableWill not show the properties of PNG images in the Open File dialog if they have been created by PSP itselfnone (the bug does not only occur under NT 3.51)YesAny Win32
Jeff ParkerMemory Status 1.1FREEGoodNone--YesAny Win32
Juoni VuorioCPU Stability Test 6.0FREEGoodNone--YesWin95/NT
Markus Oberhumer, Laszlo MolnarUPX 1.20wFREEGoodNone--YesWin95/NT
MicrosoftTZEdit (Win95 Kerneltoys)FREEGoodnone--YesWin 95
Mozilla.orgMozilla 1.3.1FREEGoodapparently no content in menus, font size select not working, display issues with bitmaps in themes, keyboard shortcuts not workingselect legible font sizes via userChrome.css / userContent.css; others: noneNot neededWin 95/NT4+ (mp)
Netscape Communications Corp.Communicator 4.08 (32-Bit), 4.51, 4.7, 4.73FREEGoodNo probs with these, but 4.78 did *not* work at first (some NT 4.0+ DLLs required)Installing the OLE automation update oadist2z.exe and other updates might not be a bad idea in case you experience any trouble with older versionsYesWin95/NT (mp)
Nico Mak Computing Inc.WinZip 7.0 SR-1SHRGoodWill not run EXE files from within archives, since they're not associated with anything in NT 3.51; 8.0+ versions don't workUse Regedt32 to set up the .EXE file type like in Win9x/NT4+? (I'm lazy and copied the whole directory over the network ;)Win95/NT
Opera SoftwareOpera 3.62 32-bitSHROKA bit too crashy for my taste, but the 16-bit version isn't any better; file dialogs don't work (CommDlg extended error 0x2)NoneYesWin95/NT
Opera SoftwareOpera 4.01SHRGoodSlight display problems, same dialog problem as with 3.62; both 5.12 and 6.01 gave considerable trouble (common control issues, I guess) and are not to be recommendedNoneYesWin95/NT
Pierre-e GougeletXNView 1.25 ('Win 3.x' version)FREEGoodLanguage files aren't loaded?!none so farNot neededAny Win32 (mp)
Raphael MolleWinVi 2.90 32-bitFREEGoodNone--YesAny Win32
Thong NguyenPowerMenu 1.50FREEGoodGrowing number of 'Priority' menus; 'Minimize to tray' minimizes to nowhere since there is no system tray (tip: use a good Win 3.1x task manager to unhide the window)NoneYesWin95/NT4+
Waterloo MapleMaple V Rel. 5 Single UserCOMGoodRequires use of Win32s files with Win32 msvcrt40.dllCopy whole Maple directory from a 3.1x computer, rename msvcrt40.dll to .dlx or similarNoWin95/NT4+, Win32s (mp)
Webwasher.com AGWebWasher 3.2 beta 3FREEGoodConfiguration dialog has some display issues: menus with empty captions and empty (but working) items, some displayed items like the local proxy port entry field are beyond the right borderNo fix, app works fine within the given limitations (Winsock 1.1, full functionality only available with Winsock 2.0)YesWin95/NT4+
XingXingMPEG 1.4COM (*)GoodMplayer.exe from VfW 1.1 is needed (possibly the whole package); no video acceleration--YesWin 3.1x

(*) Software has been abandoned and there are several free downloads because of it having been bundled with graphics cards



broken image