Jump to content

user57

Member
  • Posts

    322
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Germany

Everything posted by user57

  1. nice one, but you said the exact oposite according to this they do not need a real name, real email, no smartphone number to gather this information -> witch means these services dont need to ask us these things to do so then dont ask us for our real name, our mail address or phone number -> just putting the logic right and a company should not do a such thing at all
  2. well what you wrote now just goes to what i said in the past i dont join other projects like win2k or vista , nor i make a version war but it keeps ringing these questions - you followed that and you drained out i told sam and others a similiar thing - but yet he wants to go for win2k the todo list is far to big to jump around - in the end nothing is done while dibya for example started a vista version - what made me like angry because i know it leads to something like that
  3. well technical speaking actually it would be possible to make a check what technology in the XMM registers are possible there was recently a problem like that with a microsoft file (in the supermium posts) where actually SSE4.1 instructions are used more professional programms (and useally you would expected something like that from a very big money concern like microsoft) check what instructions are available (the x265 encoder/decoder does so for example) after that then the right routine is called up often it is a compiler setting problem one method to avoid this one would be to create an .obj file (what contains the functions without SSE/MMX ect.) then at first you make the check if SSE can be done if not you call up that .obj file´s function if you have SSE you call up your normal function thus you can avoid creating multiple complies like having a SSE version and a non SSE version
  4. you building it into the explorer ?
  5. is the missposition of the fonts still persistend ? in the past there was a smaller discussion, i reverted that GDI problem once and saw that they changed the distance handler from float to int i didnt have the problem of missposition, however in that gdi-chromium i think the int variant was choosen but if you dont revert it to float then probaly some fonts are missplaced or even not visable who dont know what a font is : a font is like every sign ABC123@|^ ect. - it is key for a webbrowser
  6. USHORT is a short syntax for unsigned short signed short (or just short) goes from −32767 to +32767 unsigned short goes from 0-65535 https://en.wikipedia.org/wiki/C_data_types in newer compilers i saw that is sometimes a problem if you put a unsigned char vs a BYTE - it starts to complain and fail in VC6 it dont do that - because BYTE is a macro name for unsigned char you have to understand it that way: 16 bits (that is what short represent) (Length) 16 bits (MaximumLength) buffer (32 bits/4 bytes) (PWSTR Buffer) then here useally is that string
  7. i find interesting when i talked to sam and dibya and i came up with the idea ffplay would be the option (also on page 13 here), you just came up with that one you more or less can forget about LAV - LAV is a software engine that use up like dx11, cuda and other things the thing what is handling that internal is something they call CUDA (in kernel mode - not the usermode functions) (look what he writes on his github: NEW: D3D11 support for HEVC 4:2:2 and 4:4:4 hardware decoding v0.80.0) LAV is not something that provides such en or decoding for h265 and such - its a engine what use a next engine (like dx11, cuda ect.) (its like a script or prescript - what meet its demise later on) support matrix (NVENC, NVDEC) https://developer.nvidia.com/video-encode-decode-support-matrix you actually dont have h266 there - and thats forever (all cards up to 21.12.2025) for that grafic cards because its a print <-- what you could do for us is making a last like nvidia did - what LAV and what modes can be done with it, like the one from nvidia grafic card "encoding" wise there is a big problem , hardware units doing so are a print - so there are many modes grafic from grafic card that is not supported and printed is printed - while software can be upgraded the other option like having a programmable core is close to the same thing as if having just 1 cpu core more with software instructions cpu decoding dont need that much power even with normal instructions (the XMM registers are a lot faster) you dont need a grafic card to encode a video or image here i wrote exactly this (no video card, no weird dll´s, no weird os functions, no directx, no cuda, no lav): https://msfn.org/board/topic/185879-winxp-hevcheifheic-image-encoderdecoder/ it use normal instructions if (hardware acceleration is turned off) - if on it checks what XMM registers are available (these are like 2-150 times faster) also from consideration would be the vLC player - it suppose to work with video´s from H265 - how many modes are not known to me to CUDA and XP to say is that the CUDA versions that are available on XP are like old, the functions are probaly very limited the only real option would be to either have the source code of the nvidia driver (how it controls its cuda) or how to give that cuda kernel code its controlment (like control/input/output) so after all of that - yep you right ffplay was my idea too but ffmpeg in the past was very self-contained - today they already use also engines, dx11 and such things - so it might also have its limitations if you really want a h265 support on mpc-hc you have to write a connection from mpc-hc to libde265 (that one can decode h265) https://github.com/strukturag/libde265
  8. programming-wise normal strings get translated to the unicode string (windows do so internal with its deeper function) https://learn.microsoft.com/en-us/windows/win32/api/ntdef/ns-ntdef-_unicode_string theoretical these can have a bigger value of 260 - max_path has not 256 for a reason of terminating 0´s an example would be CreateFileA/W this one gets translated to ZwCreateFile(NtCreateFile) to create this unicode string there is : RtlInitUnicodeString( &fileNameUnicodeString, L"\\Device\\Harddisk0"); and then: InitializeObjectAttributes( &objectAttributes, &fileNameUnicodeString, OBJ_CASE_INSENSITIVE, NULL, NULL ); then it looks something like: ZwCreateFile( &hFileHandle, SYNCHRONIZE|FILE_ANY_ACCESS, &objectAttributes, &IoStatus, NULL, 0, FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN, FILE_NON_DIRECTORY_FILE, NULL, 0); explaining that unicode-string: typedef struct _UNICODE_STRING { USHORT Length; USHORT MaximumLength; PWSTR Buffer; } UNICODE_STRING, *PUNICODE_STRING; this one got a buffer and a Length and MaximumLength - ushort is 65535 in size but that are theorecial numbers it raise questions to make so many folders so they extend the length of 256 signs
  9. if you want to give a installer to us you can make it by using this project file installer.zip you know about the kb-upgrades ? they are compressed like a zip file (Intrapackage Delta compression or IPD) - the most common unzip files like winzip, winrar, 7z can unpack this format inside is useally a .inf file and that .inf file contains both the registry and the file entrys typically they are easy to find because they useally come over this 2 entrys: CopyFiles = filesnumber1 AddReg = regnumber1 then somewhere is a string called filesnumber1 and there are the entrys the same goes for regnumber1 so the common idea is to read out that information (what is stored in that .inf file) and combine more kb-upgrades in 1 upgrade - a problem with that is that this .inf engine is like a script its not very fast - so its not very good for many entry´s so i came up with a own installer that can do the same thing (but many times faster, having full control of the code, dont need other things to be installed first) so if you want to make us a file that install that fltmgr.sys you can make it with this project file - might be something for you
  10. hmm trying to get a view do you use a kernel extender ? some are partial functional and use the same folder what software you are using ? if you turn off many of them and limit the software, would be something the OS in this case xp has background activity for the system - but first would be the software to be turned off you know how to handle a file logger ? maybe microsoft´s filemon a lot of these files are not cookies - your search is for changes - activity also caused changes like stats, or that deskop.ini is not a cookie file https://www.techbloat.com/what-is-desktop-ini-on-windows.html
  11. the same discussions where around in the past from what the xbox solution was just to increase the sector size from 512 to 4096 - also there is some information about that this has problems either a problem with system based buffers or with user buffers also the one core api is saying to have that problem solved having current informations would be fine
  12. well then just move enough files on that harddrive until it extends the 2 TB limit, better would be to use the entire disc if the files are then corrupted or the checksum test has different value´s it dont work
  13. hmm i do not know the details but these are 2 different error messages: "api-ms-win-crt-convert-l1-1-0.dll was not found" -> this means that dll/file was not found "ucrtbase.mbstowcs could not be found in the dynamic library api-ms-win-crt-convert-l1-1-0.dll" -> this means that the dll/file was found but not the function "ucrtbase.mbstowcs" in that dll ucrtbase refer to the c-runtime (ucrt - Universal C Runtime Library) so you might can give it a try by installing the vc-runtime https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-170 but i do not know if that one needs sp3 - its worth a try but there might also be a different version or modded version of that api-ms-win-crt-convert-l1-1-0.dll - what can give you function maybe if you have one (these files had different compiles for different os´s of windows) (what could explain why that error message says it found the file but not its function) if the c-runtime works - a good method to avoid this problem is to ship the vc-runtime with the executable (in this case ytdl)
  14. the registry ones coming from the .inf file dont translate/expand the environment strings %SystemRoot% to like c:\windows REG_EXPAND_SZ neither do even tho they have the "expand" syntax with them when i did this look what it really do they just store the %SystemRoot% string into the registry so it must be the software that reads the environment strings out and then translate them the most KB upgrades use that "inf installer" that installer can control registry entrys and control files replacements reading out the inf information you can combine many of KB upgrades to one for this i written this code: you have to be careful because it can write to registry strings that are system based, also it can replace files (some need a reboot) - it function the same as a trusted installer (you have to know what you doing here - best would be a virtual machine you can try) a other reason for this code is that inf installers are not very fast - they are probaly made for smaller amounts of entrys this one however works very fast you also dont need to installer .net or something else first - you can directly go for the entrys you want you need to open the .dsw files what is written in visual studio 6.0 sometimes called vs6 or vc6 in the past i write something similiar the install time gone down from 12 minutes to 8 seconds - thats a lot Registry_Entrys -> contain registry entrys File_Entrys -> file replacements Registry_Key_Deletes -> deleting registry key entrys it certainly can fix your related problem too - the code is functional the syntax is a bit different HKLM,SOFTWARE\Microsoft\Windows\CurrentVersion\Setup,"Installation Sources",0x10000,"%24%\Support\i386" this one would go "HKLM\0,SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Setup\0, Installation Sources\0,0x10000\0,\"whatever_string_is_here\\Support\\i386\"" so you have to add a " at the beginning and at the end - for , it gets \0, - \ gets \\ if you want a " you write \" that %24% is not requied it translate a string it put to that value - you can write this string out whatever it represented custom %% are translated, %SystemRoot% and other environment strings are not you useally dont need " with the first 4 parameters, only the last parameter (5/"whatever_string_is_here\\Support\\i386") can need " - depends installer.zip
  15. fileextd.dll its a old rare file that provide some functions that xp useally dont have - it can be seen as kernel extender i dont know its origin either some say its from the xbox and a official file while other say its a handmade file by someone maybe we get some more information about it what i know is that it is shown as used library on microsofts website: https://learn.microsoft.com/en-us/windows/win32/api/winbase/nf-winbase-getfileinformationbyhandleex then "Kernel32.lib; FileExtd.lib on Windows Server 2003 and Windows XP"
  16. that all are working on xp ? it would make sence to use a dll file for each of these pieces
  17. j7n seems already figured it out, as thought it´s nothing special to draw/show a "new version" would provide that´s why specific data is like stolen from your computer like the OS, x32-x64 mode, browser version then their server refuse connection - while the code would work - while the display also would show everything (the trick to then display a false error message or making a crash is a old trick to try to hide the real concerns) so it was exactly what we thought the thing with bot´s are that they are not limited to a version - special these are getting upgraded and with "Ki-like" improvements they are sometimes not to detect either way so you have forum moderators to keep the things clean of something like this and there are bot detectors already - if these fail, very likely a version check also fails so i dont think its a security concern rather the common establishment of new versions (where they then have rights to login into your computer) its not different from the pedophile or terrorist question it is not made for that - its a gate opener for them (such as company interests - that dont care about privacy concern for example, or want to sell your specific information (what is worth up to million of dollars) as i already wrote in a different topic - they not doing that for these things they are trying to find a spot like "now win10 can happen, now win11 can happen" -> read terms of use -> if it not standing there no problem next terms of use its like a cut they trying to create this progress was seen over many many years for now - so they overtaken many many spots (and placed company interests - not pedophiles, not terrorists, no security concerns) and as i wrote at some point if everybody would have a webcam at home 24/7 you might find 1 pedophile, a terrorist or maybe even a bot but thats not what they really want the relation is far to off that it could be that the logic is far more simple -> open me the gate and yaaaa there could be pedophile, terrorist or a bot somewhere, wait did you say domestic violence ? sure this certainly was the reason now we can do this its a fault to think always from 1 to many or from a few to many thats part of their "trick chest" who is interested what that website really is doing, j7n seems to have tested it out: https://www.whatismybrowser.com/detect/what-is-my-user-agent/ oh i forgot - thats things a company never should have the right to do so - if something is going on its a police or higher concern you guys litterally give company everything about you - just if the right "keywords" are used and the companys have lawers, influencers also people at the police and politics - so they are trying exactly this somewhat somehow and something about banking - its not the win7 winxp users that have these problem - known problems who have this are happening in win10 or maybe now win11 (you can google how many data or things in this relation are happening like every day) and the majority are not the elders OS´s to say my clear meaning again these are not questions for company´s, these things are police stuff like placing a hidden camera (but then you would you say company come in ?) company´s are not allowed to do so ... but they are coming - hidden - slowly - and step by step more having these things - and this problem we just talked about is something like this - over what a such thing they place these things "open me the gate"
  18. i think we will soon have answers, maybe its a version check - there would be the chrome version or the winhttp request that contains the os name (both can be changed) then a version changer will open the website up, if not we will see "what´s so very special" that this website wants to display but i think its nothing special a programm like that really would raise questions a great lack of compatibility - i also dont know whats worse a programm like that or a browser like that both would be a mental illness and great lack of programming skill
  19. that website https://forum.zdoom.org/ might be some bull.... it dont open for me at all this machine is on a win7 + all upgrades version - having chrome and firefox and IE11 a website what dont open on many varieties useally is just bull.... there used to be such problems in the past only a certain browser, only a certain version, maybe only a certain os it raise questions what the website even wants to display - i guess its nothing special and chrome v138 should be by FAR enough to display well whatever its also getting off-topic - but something went wrong here - and its not just a browser problem
  20. you could try a shortcut and giving it that parameter you want: https://superuser.com/questions/29569/how-to-add-command-line-options-to-shortcut#29571 it works very much like the createprocess method, so it might also work for a shortcut with a parameter
  21. for me chrome was a big problem because it tooks 2 weeks to compile up, this is bad when you want to write something or testing the code then the next problem was that the vm snapshots (only a few) already took up the 2 TB limit. so work was limited for example i could not compile a extra debug version (the compiler optimization can make problems) also when clicking around they are more time consuming if they take time because these sum up windows 10 also is not the fastest horse, it has a lot a background activity - also it force upgrades neither if you dont want them nor you know they dig into your computer in total these things then sum up all together - when you have limited time it gets a even bigger problem to install some new VS2022 compiler and win11 would take to much up - while a better computer still just could "eat it up anyway"
  22. what you wrote rather describe a small console where you can enter a executables name + that parameter the createprocess function can do exactly this, so this might be a question for a plugin someone writes that is doing that that %s is useally something for translate a string with something called printf with %s it knows that is a string it either gets translated before given as parameter (then you not fine) or the programm that reads that parameter untranslated with %s (then you are fine) for a dll there would be the rundll.exe question
  23. these executables (processes) useally just use the parameters given to them having a compling code that means you could write the createprocess() function with a parameter that then can be readed out by the next process (in this case ytdl) the parameter might just be a string to that file like C:\info.ini the program(ytdl) then reads out this from the parameter
  24. it sounds to me someone is trying to make a windows 2000 support for this, or at least it would go that direction i once told sam and dibya what i think about that the GetLogicalProcessorInformation is available in windows xp with SP3 that one contains also NUMA information (SYSTEM_LOGICAL_PROCESSOR_INFORMATION structure) NtQuerySystemInformation( "SystemLogicalProcessorInformation", buffer, *len, len ); maybe "SystemNumaProcessorMap": https://www.geoffchappell.com/studies/windows/km/ntoskrnl/api/ex/sysinfo/numa.htm many mothersboards dont have more of NUMA´s, it used to be an second socket for a second (or more then 2 cpu sockets) - with own wires to extra ram (like the RAMBUS-RAM (rd-ram) used to do this) https://en.wikipedia.org/wiki/Non-uniform_memory_access that in win2000 ? raise questions if you want the file what was about to being made for firefox i sended you a private message it may not contain that specific function, however it shows a different way to get this value and give a idea how the ntoskrnl is holding it https://learn.microsoft.com/en-us/windows/win32/api/sysinfoapi/nf-sysinfoapi-getlogicalprocessorinformation if you really want to have this reaction you have to make a ntoskrnl kernel extender here is a implementation from doxygen { ULONG MaxEntries, Node; PSYSTEM_NUMA_INFORMATION NumaInformation = (PSYSTEM_NUMA_INFORMATION)Buffer; /* Validate input size */ if (Size < sizeof(ULONG)) { return STATUS_INFO_LENGTH_MISMATCH; } NumaInformation->HighestNodeNumber = KeNumberNodes - 1; /* Compute how much entries we will be able to put in output structure */ MaxEntries = (Size - FIELD_OFFSET(SYSTEM_NUMA_INFORMATION, ActiveProcessorsAffinityMask)) / sizeof(ULONGLONG); /* Make sure we don't overflow KeNodeBlock */ if (MaxEntries > KeNumberNodes) { MaxEntries = KeNumberNodes; } /* If we have entries to write, and room for it */ if (Size >= FIELD_OFFSET(SYSTEM_NUMA_INFORMATION, ActiveProcessorsAffinityMask) && MaxEntries != 0) { /* Already set size we return */ *ReqSize = FIELD_OFFSET(SYSTEM_NUMA_INFORMATION, ActiveProcessorsAffinityMask) + MaxEntries * sizeof(ULONGLONG); /* For each node, return processor mask */ for (Node = 0; Node < MaxEntries; ++Node) { NumaInformation->ActiveProcessorsAffinityMask[Node] = KeNodeBlock[Node]->ProcessorMask; } } else { /* We only returned highest node number */ *ReqSize = sizeof(ULONG); } return STATUS_SUCCESS; }
  25. its probaly a known path - it can differ - you also can set some of these best would be to search your disc for a known and relativ unique file filename xp useally has it like at Documents and Settings\ (user like administrator or all users) there then should be something called userdata
×
×
  • Create New...