Jump to content

Outbreaker

Member
  • Posts

    376
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Luxembourg

Everything posted by Outbreaker

  1. I re-tried it but I can't get this to work. I also notice that the Proxy's PopMenu doesn't show any Icons and clicking on one of the menu is also not working. I tested this with a fresh installation of a original Windows XP SP3 and a Windows XP with all the Updates (+POSReady2009) included.
  2. Not much luck to get this to wok. That's what i did: 1. Installed the "CA.crt" as a Trusted ROOT. 2. Started the "ProxHTTPSProxy_PSwitch.exe" tool. But the Windows XP Update page only reload loops. The POSReady 2009 updates are already installed. And i also tried it with TLS 1.2 On and Off in Internet Explorer 8.
  3. Noticed that the command below gives an error on the first launch. --user-data-dir="%UserProfile%\Local Settings\Application Data\360Chrome"
  4. @Sergiaws I think you mean the "WINNT.SIF" file. Remove ;FUI# for my code below for a full automatically installation, but you will loss the Repair option then. Also if you search for this file name then you get more commands. https://www.windowsafg.com/winxp.html ; SetupMgrTag [Data] MsDosInitiated=0 ;FUI#[Unattended] ;FUI# Repartition=No ;FUI# WaitForReboot=No ;FUI# OemSkipEula=Yes [GuiUnattended] AdminPassword="*" TimeZone=020 [UserData] ProductKey=PD9WR-BDGBK-RPXKR-W3CK4-QHYF3 ComputerName=* FullName="Unknown User" OrgName="Unknown Organization" [RegionalSettings] LanguageGroup=1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 SystemLocale=0409 UserLocale=0409 UserLocale_DefaultUser=0409 InputLocale=0409:00000409,0409:00020409 InputLocale_DefaultUser=0409:00020409 [Identification] JoinWorkgroup="WORKGROUP"
  5. Dose someone know if the Windows 8 UASP driver or the Windows 7 UASP driver is better for Windows XP? There was something in the Win-Raid forum about this, before it got Nuked.
  6. I got it now, I had to add spaces "4E E6 40 BB" if i simply Copy&Paste it then the Editor won't let me add any spaces and i had to type it in manually.
  7. I forgot on how to do this. I cannot find any of those entries with my Hex Editor (XVI32).
  8. I got the "Mapudungun" in my collection folder. I'm searching now for almost a week to find working download links to these missing separate LIP installers, But no luck every link is dead, even the once in archive.org. I hope we can find those missing separate LIP's installers. So that I can include them also in the Multilingual Pack, for our supreme Windows NT.
  9. I've dug already through all those links. Doch einige der separaten LIP Installer kann ich nicht finden. The plan was to use the LIP-Transformer tool to convert them to MUI Packs. Those are the LIP separate installers that i can't find: Affrikaans Azeri (Latin) Bosnia (Cyrillic) Bulgarian Estonian Gujaratai Inuktitut (Latin) Irish Kannada Kiswahili Konkani Luxembourgish Macedonain Malayalam Maltese Maori Nepali Pashto Persian Punjabi Quechua Swahili Setswana Telugu Tswana Welsh Zulu Those are the LIP separate installers that I already found: Albania Armenian Azerbaijani Basque Bengali (India) Bosnia (Latin) Catalan Galician Georgian Hindi Icelandic Indonesian Kazakh Malay Mapudungun Marathi Persian Serbian (Cyrillic) Serbian (Latin) Tamil Tatar Thai Ukranian Urdu Vietnamase
  10. I already got those MUI packages. But I need the LIP too, because they have more languages and I try to convert them into MUI packages.
  11. HI, Has anyone collected the 55 Language Interface Packs from the Microsoft website? Microsoft took them offline and archive.org also doesn't have them. 😥 https://web.archive.org/web/20090217125419/http://www.microsoft.com/downloads/details.aspx?FamilyID=0db2e8f9-79c4-4625-a07a-0cc1b341be7c&DisplayLang=en
  12. After smashing the web search button for hours, I found a script that works and dose the job better than my previous script. 😃 FLTMC >NUL 2>&1 || Set _=^"Set "_Elevated=1" ^& CD /d """%~dp0""" ^& "%~f0" %*^" && ((If "%Elevated%"=="" ((PowerShell -nop -c START "" CMD -args '/d /x /s /v:off /r',$env:_ -Verb RunAs >NUL 2>NUL) || (MSHTA VBScript:Execute^("CreateObject(""Shell.Application"").ShellExecute(""CMD"",""/d /x /s /v:off /r""&CreateObject(""WScript.Shell"").Environment(""PROCESS"")(""_""),,""RunAs"",1)(Window.Close)"^) >NUL 2>&1))) & EXIT /b)
  13. Hi, I have a short code line that would ask elevated privileges for a Batch file. But now I noticed that if a file name or a folder name has an "&" character in it then the code will not work. 😫 Dose anyone have a solution for this problem? 🤔 @ECHO OFF FLTMC >NUL 2>&1 || PowerShell Start-Process -FilePath '%0' -Verb RunAs >NUL 2>&1 && EXIT /b FLTMC >NUL 2>&1 && GoTo EVD ECHO I'm not wokring. PAUSE :EVD ECHO Hallo World. PAUSE
  14. Hi, I'm looking for a one line command that would Refresh the Desktop or send the F5 key to the Desktop. Would that be possible with PowerShell or in Batch?
  15. Why is the DTS "Central Brazilian Standard Time" and "E. South America Standard Time" removed? I still have them in my Windows 10.
  16. What about the KB4507704 entry below, was it removed from the the KB4557900? [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Time Zones\Morocco Standard Time] "MapID"="1,66"
  17. Now I'm realizing the missing } too. Thanks for all you help.
  18. I tried it out, but their is still a bug hiding somewhere that prevents it from running with the Timeout code. I also tried a few other methods from the internet but without luck.
  19. Interesting to watch how the script is editing the cookie. One little question i tried to add a short delay to the script to close the div. This should be an easy Task. Well, that's what I thought it would be. for ( let i = 0; i < msgs.length; i++ ) { msgs[i].onclick = function() { setTimeout(function(){ this.style.display = 'none'; clks++; createCookie('clicks', clks, 1); }, 3000); } }
  20. HI, Do you know how to tweak the script so it will only hide the div if it gets clicked 3 times in 24 hours? I also changed the code so that it would work with CSS Style "class" instead of "ID". Is below the proper JavaScript code to do that? FROM: document.getElementById('popupDiv'). TO: document.getElementsByClassName('popupDiv')[0].
  21. H, After google for hours for a JavaScript that would hide a div for X(12) Hours if clicked X(2) Times. I was only able to find a jQuery script that would do this. Could someone help me to convert this jQuery script below in to a vanilla JavaScript? http://jsfiddle.net/mbdu6vtg/ $(document).ready(function() { // If the 'hide cookie is not set we show the message if (!readCookie('hide')) { $('#popupDiv').show(); } // Add the event that closes the popup and sets the cookie that tells us to // not show it again until one day has passed. $('#close').click(function() { $('#popupDiv').hide(); createCookie('hide', true, 1) return false; }); }); // --- // And some generic cookie logic // --- function createCookie(name,value,days) { if (days) { var date = new Date(); date.setTime(date.getTime()+(days*24*60*60*1000)); var expires = "; expires="+date.toGMTString(); } else var expires = ""; document.cookie = name+"="+value+expires+"; path=/"; } function readCookie(name) { var nameEQ = name + "="; var ca = document.cookie.split(';'); for(var i=0;i < ca.length;i++) { var c = ca[i]; while (c.charAt(0)==' ') c = c.substring(1,c.length); if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length); } return null; } function eraseCookie(name) { createCookie(name,"",-1); }
  22. Is it recommended to also include the Primetime CDM plugin into the Basilisk/UXP browser.
  23. Ahh nice. Do i also need to add the LVA file into the basilisk/UXP folders too? Because it's playing videos also without this files.
  24. HI, Would it be possible to add a link to the newest versions into the Help option of this browsers?
×
×
  • Create New...