Jump to content

jaclaz

Member
  • Posts

    21,300
  • Joined

  • Last visited

  • Days Won

    53
  • Donations

    0.00 USD 
  • Country

    Italy

Everything posted by jaclaz

  1. Sure, why not? https://msfn.org/board/topic/163541-post-sp2-updates-for-office-2010-updated-14-nov-2015/ The problem might be actually getting all the needed updates. jaclaz
  2. I found the new un-feature interesting as it is among the things that Windows 10 fans like to use as argument to say how Windows 10 is "better". Even if I normally use one of my custom made sticks to NOT touch Windows 10, sometimes I have to, and when I happened to actually need an updated driver, historically that provision always failed in providing a proper driver, jaclaz
  3. Meanwhile in Redmond ... https://www.makeuseof.com/tag/microsoft-kills-windows-10-driver-search/ they seemingly removed the “search automatically for updated driver software.” jaclaz
  4. It would be a really strange PC, with no bootable USB but with a BIOS/NIC capable of PXE boot. AFAICR while USB and PXE booting were introduced at the same time, USB was adopted faster, at least in comsumer hardware, and while circa 2001/2002 *any* PC would have USB booting, not that many motherboards had a built-in NIC with PXE ROM (and even common PCI NIC's had rarely the PE "ROM" socket actually populated with a chip. jaclaz
  5. Maybe you can try an alternative to Daemon Tools. The requirement to use .isz files limit the choice, but ther are still at least a couple ones that can read them, I think gburner and yubsoft imgdrive support that. AFAIK .isz is not really-really a compressed .iso (I mean it is a compressed .iso but it i not - unlike .iso a "standard" file format) so your mileage may vary. jaclaz
  6. Well, than that seems another reason: You will probably need to disable Code integrity/ enable Testsigning. Before that, try with other (older) drivers: https://www.drvhub.net/devices/network/marvell/avastar-wireless-ac-network-controller jaclaz
  7. You are right, the files I linked are 32 bit (my bad, didn't see the x64 ), on the other thread Burd linked to them and latet for XP64 are 368.81: https://msfn.org/board/topic/177373-winxp-drivers-for-gtx-10xx-video-cards/?do=findComment&comment=1150073 Still I don't think they will work. jaclaz
  8. No other reference? I mean the file name, an error number, etc.? I have no idea if there is something in server 2012 needing particular attention if installing 8.1 drivers, but that driver seems like needing another subsystem, in the .inf: I have seen other similar reports about this, *like*: https://answers.microsoft.com/en-us/windows/forum/all/driver-not-installing-for-wi-fi-adapter/4c143a9b-ce66-4902-a1e5-e3ec4620e31f of course with everyone spewing nonsense about the issue or providing non-help. It is clear that for *some reasons* the netwifibus. inf (and the VWiFiBus.sys, etc.) are not installed or are not available on your PC, but these should be standard (at least in 7/8/8.1/10) Microsoft files. jaclaz
  9. I think latest for XP are 368.91: https://drivers.softpedia.com/get/GRAPHICS-BOARD/NVIDIA/NVIDIA-GeForce-iCafe-Graphics-Driver-36891-for-XP.shtml But it seems like it is a hit and miss game, see: https://msfn.org/board/topic/177373-winxp-drivers-for-gtx-10xx-video-cards/ https://msfn.org/board/topic/177373-winxp-drivers-for-gtx-10xx-video-cards/?do=findComment&comment=1177300 jaclaz
  10. But 8.1 drivers normally work on 2012 R2? Try this one: https://drp.su/en/hwids/PCI\VEN_11AB%26DEV_2B38?os=windows-8.1-x64 jaclaz
  11. I don't know, it was just a quick check/test, I removed duplicates (there are hundreds of them), but left the "first" occurrence. Needs to be redone with some time and attention. Procedure I used (basically). Copy to a new Excel sheet the two files (copied from notepad) one after the other in Column C. Add in column A a progressive line number (then copy / paste values). Put in column B a formula *like* (this is for B1): =IF(C2="";"DEL";if(left(C2;1)="!";"REN";"")) Put in column D (D1 and paste down): =IF(B1="REN";right(C2;length(C2)-1);"") Copy the whole stuff and paste values. Then use data sorting to: 1) remove all lines with B empty (sort by B) 2) order by C and by B Put in E (starting from E2) a formula *like*: =IF(C2=C1;"Duplicate";"") Copy paste values, reorder by E, remove duplicates Remove Column E Reorder by column A. This is the base, then removed the \??\, added "" quotes, etc. Then (on second thought) I made a mistake in the further processing, the lines with DEL and the lines with REN needs to be modified, something *like* the following: Line with DEL (OK): IF EXIST <file to be deleted> DEL <file to be deleted> Line with REN (needs to be changed as REN won't work if the <target file> already exists): IF EXIST <file to be renamed> IF EXIST <target file> DEL <target file>&&REN <file to be renamed> <target file> About the AVG (and possibly) others, it is perplexing to say the least. These two make sense: 55 DEL \??\C:\Program Files\Basilisk\tobedeleted\moz1BA7.tmp 56 57 DEL \??\C:\Program Files\Basilisk\tobedeleted 58 i.e. probably Basilisk first deletes the (only) file in C:\Program Files\Basilisk\tobedeleted and then removes the directory. These do not: 133 DEL \??\C:\Program Files\AVG\Antivirus 134 135 DEL \??\C:\Program Files\AVG\Antivirus\aswData.dll.sum 136 137 DEL \??\C:\Program Files\AVG\Antivirus 138 139 DEL \??\C:\Program Files\AVG\Antivirus\health.dll.sum 140 141 DEL \??\C:\Program Files\AVG\Antivirus 142 143 DEL \??\C:\Program Files\AVG\Antivirus\AVGUI.exe.sum In the case of the basilisk entry the "risk" is that of leaving behind an empty directory, it would be of course possible to check if any entry is a directory in batch, but is it worth the hassle? jaclaz
  12. You mean that each of the two files is a copy/paste from Regedit of a single “PendingFileRenameOperations” REG_MULTI_SZ value? It isn't however IMHO that bad. The copy paste seemingly creates: 1) an empty line (line feed+carriage return) in case of deletion 2) a line starting with "!" in case of rename This allows importing to (say) Excel and re-order/deduplicate lines. The "queer" thing seems that AVG for whatever stupid reason creates a "delete line" for directories just before the delete line for a file (which accounts for a lot of entries and that cannot possibly work). A quick test seems to me like producing some 2000 lines (as opposed to the more than 32000 given by appending the second file to the first), that could still be "too much" to import via reg.exe or regedit (let alone Copy/paste). Since the DEL command only deletes files (and not directories) it is safe to use it on a batch, it will throw an error but won't make damage, and the batch comes out as 634 lines. If I were you I would make a batch and run it, possibly from a PE/Another booted OS. Attached is what I came out with. jaclaz
  13. Technically the original FBI advise it is not FUD in itself, it is much more standard, boiler plate warning: http://www.documentcloud.org/documents/7013778-FBI-PIN-alert-on-Windows-7-End-of-Life.html What would you expect them to say? Brought to you by the same culture that produced: https://en.wikipedia.org/wiki/Objects_in_mirror_are_closer_than_they_appear and of course toothpick intructions. jaclaz
  14. Can't you use a text "diff" like tool on the two text (.reg) files? (to reduce the size and avoid duplicates) something *like*: https://www.prestosoft.com/edp_examdiff.asp Are they .reg files, right? Or post two snippets of the files you have, there may be other ways. jaclaz
  15. VmWare (running the same OS) won't make any difference from the "real" machines, so that is not a problem. But most probably you missed this: unless the actual diskpart scripts for partitoning/formatting are different for each disk size there is no need to "choose" a size. Commanding diskpart from batches is not straightforward, but it is also not particularly complicated/complex, though for querying the disk data maybe WMI/WMIC would be more appropriate/easier. As always you need to test commands on command line and then create the corresponding sequence of commands. Examples (to get the size of disks): On command line: Diskpart list disk Or using WMIC: WMIC Path Win32_DiskDrive Get Index,Model,Size In batch: @ECHO OFF SETLOCAL ENABLEDELAYEDEXPANSION ::Disksizes with diskpart ::The exact number of lines to skip needs to be checked as it may depend on OS and language ECHO By Diskpart FOR /F "skip=8 tokens=1,2,4,5 delims= " %%A IN ('ECHO list disk^|diskpart.exe^|FIND /V "DISKPART"') DO SET my_%%A_%%B=%%C %%D SET my_ ECHO. ::Let's reset variables FOR /F "tokens=1 delims==" %%A IN ('SET my_') DO SET %%A= ECHO By WMIC FOR /F "tokens=2,3,4,5,6 delims=," %%A IN ('WMIC Path Win32_DiskDrive Get Index^,Model^,Size^,Status^,SystemName /format:csv^|FIND /V "Index"') DO ( IF "%%D"=="OK" SET my_disk_%%A_Model=%%B&SET my_disk_%%A_Size=%%C IF DEFINED my_disk_%%A_Size SET /A my_disk_%%A_Size_GB=!my_disk_%%A_Size:~0,-6!/1074 ) SET my_ jaclaz
  16. There is (was) a freeware one, It is (was) called Atlantis Nova: http://www.321download.com/LastFreeware/page14.html Later it grew a bit and became Commercial (there is 30 day trial anyway) and was renamed to Atlantis Word (but still it remains more than "manageable" and "affordable"): https://atlantiswordprocessor.com/en/ Please take note that latest-latest version is compatible starting from 2K, so it has to be seen if earlier versions are available compatible with 9x/Me: https://www.atlantiswordprocessor.com/en/help/system_requirements.htm jaclaz
  17. Fresh news (no, I am serious): https://www.bleepingcomputer.com/news/microsoft/windows-10-hosts-file-blocking-telemetry-is-now-flagged-as-a-risk/ Windows 10: HOSTS file blocking telemetry is now flagged as a risk jaclaz
  18. Well you can watch it (actually 98 not Me, but close enough) in real time: 2 hours, 16 minutes (and 11 seconds) of pure fun . (and that is 39 disks, not 600) jaclaz
  19. A more general way would be something like (one liner on command line): FOR /F %i in ('DIR /B *.msu') do (@call set name=%~ni&&@ECHO "%i" "%name:~0,-41%%~xi") and FOR /F %i in ('DIR /B *.cab') do (@call set name=%~ni&&@ECHO "%i" "%name:~0,-41%%~xi") Or in batch: @ECHO OFF SETLOCAL ENABLEDELAYEDEXPANSION FOR /F %%i in ('DIR /B') do ( SET name=%%~ni IF "%%~xi"==".msu" ECHO "%%i" "!name:~0,-41!%%~xi" IF "%%~xi"==".cab" ECHO "%%i" "!name:~0,-41!%%~xi" ) jacla
  20. ... but soon there will be a twist to it , you cut, then - semi-randomly, in average once every ten cuts - the clipboard contents may be left alone or be either deleted or replaced with the sentence "Windows 10 has great features, thank you for using it." before you paste. This will be no end of fun, adding a gambling/entertaining side to everyday work ... jaclaz
  21. SCOOP! Your headphones are Un-Dynamic (or possibly Static)! (according to the good guys that needed 8 and 8.1 to better Windows 7 into 10 ) jaclaz
  22. @SIW2 JFYI, you can use %%~ni to have only the filename without the extension: https://www.robvanderwoude.com/ntfor.php (and then be able to remove just 41 characters) and optionally use %%~xi to have just the extension (but in this case .msu is "fixed"). jaclaz
  23. Yep. I often use it to show kids ; https://tinyapps.org/blog/200702250700_why_in_my_day.html how programs should be written. Of course it has some (if you get used to it, very little) limitations, but nothing actually worth mentioning. For the record, anecdotally, in my (good ol') MS Excel XP/2002 I couldn't input a very long formula, that I could write just fine in Spread32: https://msfn.org/board/topic/152097-on-superfloppies-and-their-images/page/6/?tab=comments#comment-980297 jaclaz
  24. Wouldn't be easy to fire up task manager and find out which processes are loaded and how much memory (and read/writes I/O) happen when idle? At first sight what you describe seem the classic symptoms of intense on disk swapping because RAM is full. jaclaz
  25. The problem is that the OP is not clear. There are basically two ways to "look at" a .exe or .sys: 1) easy, in a hex editor, where you only see bytes 2) difficult, in a disassembler/debugger, where you see the actual (disassembled) instructions (and each stupid program has its own different way to show data) Clearly someone like Mov AX, 0xDEAD or diderius6 (Dietmar) look at it in a disassembler (otherwise they would have no way to find what is needed to be changed). Normally, once the patch has been devised and tested, the instructions are translated in hex editor values, ie, something like: 0x111111 7C 48 -> 90 90 This is what has NOT happened in this case. It is possible that the jl short .text:00036214 actually means "jump if less to 00036214", i.e. the 00036214 is the "landing address" of the jump. IF this is the case, since the JL instruction is 7C, and it is a "short" jump, then there must be within the 255 bytes before address 0x0036214 a 7C byte followed by a byte expressing the difference between 0x0036214 and the jump instruction location. BUT there is still something that doesn't work, normally a number prepended with one or more 0's is a hex number, but it makes no sense, and the file is 187.776 bytes in total, and 0x00036214=0x36214= 221716 decimal, so that address must be decimal, but it is "queer". Anyway, since there is no 7C in the 256 bytes before offset 36214, there must be something else we don't understand or translate correctly, maybe the .text:00036214 is a reference of another type, only meaningful when the file is loaded in the disassembler or in memory or *whatever*, but more probably the reference is to actual hex addresses of an already modded acpi.sys On the thread you found on Win-raid there are a few zillions already modified files, some based on 5512, most on Longhorn (5048) *any* number for XP64, finding something is impossible or nearly impossible. Your best option is to ask for help/support on Win-raid. Before that, just try the file from here: https://www.win-raid.com/t4134f45-Modded-ACPI-Drivers-Depot-XP.html it is from the "other" branch (Longhorn). If it works, it works, if it doesn't, ask for assistance there. jaclaz [1] Dietmar (only for the record) is a much esteemed member of many technical boards, but he is specialized in periodically appearing from nowhere, drop on the table one or more fantastic ideas/solutions/whatever, completely fail to document them properly, then disappear for long stretches of time, then - sometimes - he makes a new thread with all his things re-ordered and understandable, sometimes he doesn't.
×
×
  • Create New...