QUOTE(EsotericSatire @ Dec 2 2020, 06:43)

Just make sure the drivers support XP and not vista only.
I checked already; looks like we're probably good there.
QUOTE(EsotericSatire @ Dec 2 2020, 06:43)

edit: I probably shouldn't post stuff from reports.
whoopsie.
I think I have it all set up/updated now, but it's kinda hard to tell when MS killed off automatic updates. I'm not sure if I'm safe to do the POSReady ones, either, because apparently some of those updates have minimum CPU requirements that are higher than the minimum requirements for XP when it launched. I think my Pentium M 740 is probably okay, but I'm just not sure.
Found an old .bat script I wrote to force XP's start menu to sort alphabetically without me doing tons of dragging.
CODE
@echo off
REG DELETE "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Start Menu2\Programs" /f
taskkill /f /im explorer.exe
start explorer
@echo on
So primitive.
I just got my ancient Cygwin install upgraded to the last release that supported XP. Seamonkey, too. And I dug up and installed that patch for AppLocale that disables that dumb warning message whenever you use it. And I:
- Dug up the ExFAT driver and SHA-256 certificate processing updates that M$ tried to kill off and removed from their servers.
- Dug up IE8 (couldn't find an easy link to an installer for it from M$).
- Dug up that patched library for installing Windows Media Player 11 without WGA (totally unnecessary; I hate WMP almost as much as WGA. I have a valid XP license anyways, but I just don't want WGA on my system. It was a fun challenge to find some of this old shit no one cares about anymore but which I remembered).
- Got OpenVPN working (although I'm not going to be networking this much more). Had to find a special driver version to make it work.
- Copied the old-style Program Manager off my WinXP "SP0" installation CD (the program manager got removed and replaced with a stub in SP2).
- Copied over Monmusu Quest.
I might finally build that USB DAC thing I'd thought of making before. TI sells a pretty simple-to-solder chip (as far as surface-mount goes) that can do 48khz, and pretty much anything can have less line noise than the built-in headphone jack on the D610, even if it's laid out by someone who knows nothing about DAC's (it really is that bad). The chip in question is ancient (from around 2003, at the very latest; it was originally a Burr-Brown design), so I have no doubt there's XP drivers for it.
Just made an absolutely horrid autohotkey script to counteract the huge volume increase on the volume buttons on my keyboard. On the lower end of the grade, it's much more noticeable, so in order to somewhat "linearise" things on the lower end of the scale I did something really stupid that required the least thought/critical thinking/math about the problem.
CODE
Gui +LastFound
hWnd := WinExist()
DllCall( "RegisterShellHookWindow", UInt,hWnd )
MsgNum := DllCall( "RegisterWindowMessage", Str,"SHELLHOOK" )
OnMessage( MsgNum, "ShellMessage" )
Return; // End of Auto-Execute Section //
isMin := 0
isMax := 0
ShellMessage( wParam,lParam ) {
; tooltip,% wParam "-" lParam>>16
global isMin
global isMax
If ( wParam == 12 ); HSHELL_APPCOMMAND := 12
{
HiWord:=lParam>>16
if(HiWord == 9);voldown
{
isMin -= 1
if(isMin < 0)
{
isMin := 0
}
}
if(HiWord == 10);volup
{
if(isMin <= 1)
{
SoundGet,curMasterVol
if(curMasterVol < 10)
{
SoundSet,(-3.5 + (isMin))
}
}
if(isMin < 3)
{
isMin += 1
}
}
}
}
I also bound different keys that I'll probably use way more often; namely ctrl-alt-left and ctrl-alt-right.
CODE
^!Left::
SoundSet,-0.1;Down a teensy bit
return
^!Right::
SoundSet,+0.1;Up a teensy bit
return
…Now back to Monmusu Quest. Still feels fresh. I went so long without playing it a while back that I'd forgotten about 95% of the story. It was great. I still don't care for any of the losses, but I just save scum to avoid them to be honest.
…I missed being able to drag the taskbar down in windows. Auto-hide isn't the same because it'll come back and annoy you if your mouse drifts too low. I still think XP got the UI best of any version (possibly bar Win2K). Vista looked really pretty, but had quite a few regressions as well.
Almost none of this shit I've been doing in XP is even applicable on later versions; I'd say that I've spent probably three hours total using Windows 10 since it came out (all on public machines). Something like 25% of the habits I had in XP and 7 seem to work fine, and for the rest i just use the command line because it's quicker than finding where they're hiding the same old shit now.
This post has been edited by dragontamer8740: Dec 2 2020, 21:19