Content Type
Profiles
Forums
Events
Everything posted by Kelsenellenelvian
-
public release proposal
Kelsenellenelvian replied to Kelsenellenelvian's topic in Windows Post-Install Wizard (WPI)
As I get donations towards this I will post the donated amount and amount left. Donated so far = $0 Needed for inet services = $213 -
I have Neptune do you want a set of screens?
-
If I can get enough donations to get my net back on (just over 200) I will make the last couple of fixes and publicly release the next version.
-
WPI Install order
Kelsenellenelvian replied to husein93's topic in Windows Post-Install Wizard (WPI)
Yes -
Are MS Updates for XP really necessary?
Kelsenellenelvian replied to Philipitous's topic in Windows XP
Duh, ummm, er "Fluff"? I am sorry Jaclaz but my tiny mind cannot comprehend the meaning of fluff... -
You can't do it for free (Like Jaclaz stated) However that laptop is not locked to Windows 8 IF you have a windows 7 license and disk there are drivers for Win7 on that laptop. http://h10025.www1.hp.com/ewfrf/wc/softwareCategory?product=5395173&lc=en&cc=us&dlc=en〈=en&cc=us
-
Depends on which laptop. Some manufactures signed agreements with ms and locked their laptops to windows 8. What is the make and model #?
-
My wife was diabetic BUT NOT due to eating or health habits. Lots of people that are diabetic are not that way due to eating habits. Your words are completley uncalled for hand have nothing to do with this thread. They are just being said to hurt people...
-
Dude now your getting ignorant and insulting. You need to stop. I am american and no one in my family has had boob jobs. All three of my children are over 18 and very fit with good jobs even though we have always been very poor. Your near racist and prejudiced rants are really piss!ing me off. Climb off your pedestal and get a clue. You seem to be the most hateful and least worldly educated person I've seen here in a long time.
-
Most data got damaged after converting FAT32 to NTFS
Kelsenellenelvian replied to RYU81's topic in Software Hangout
Yes if asking for specific details to help you is trolling...... -
Easy way to extract all i386 files?
Kelsenellenelvian replied to Springdale's topic in Windows 2000/2003/NT4
Expand-Delete.exe Someone made me this looooong ago all it does is extract all compressed files in the folder it is in and then deletes the compressed files. No dialog you just run it and wait. (A xp folder takes a while) -
This is a "Supporter" only release! The only way to get the password is to request it and show proof of donation or bugfix\mod. This is a private release it is NOT to be shared... (Corp license owners get full use permission for supporter releases in their organization) Donations need to be made to kelsenellenelvian @ Gmail.com via paypal Full public release schedule: Every time I hit a second digit change (i.e. 8.7, 8.8, 8.9 an so on) Or if a year has gone by with no public release. Requests need to be sent via PM for the 7z password. ATTENTION! (Read this first) If this upsets you and you don't agree to it then your simply off the list. I am sorry I have to do it this way. Change-log for 8.6.7 v8.6.7 Updates - Released July 20th, 2013 (Supporter)====================================================**** Fixed the timer issues that was occuring with ie10 & ie8.**** [Feature] SetAppAsDefault.**** [Feature] TimedWaitForWindow and CloseWindow.**** Compiled DHTMLx to v3.6.**** Removed 64bit options as they are auto-enabled.**** Added {CMD} to the list of functions.**** Add Win2k to conditions.**** Fixed a executebefore64bit error.**** User file written version updated slightly.**** Fixed a autologoncount error.**** Fixed a alert sound location error.**** More info added to the installer log.**** Removed more old leftover code.**** Added setfilesystem to the conditions.**** More fontinstaller improvements.**** Tons of textual errors fixed.**** Added {MSI} to the commands for standard msi files.**** Added alerts to themewizard when exiting.**** Fixed a couple of resolution errors.**** Restored "Float" for the tooltips.**** Tons of minor features improved.**** Fixed AutoAdminLogin feature.**** Added HiPerformance Power Scheme for Win7.**** Redundant code removal.**** Theme fixes.**** Expanded wmi functions.All of the fixes supporters are enjoying: Please remember donations are all that keep WPI going....
-
[Feature] SetAppAsDefault
Kelsenellenelvian replied to Francesco's topic in Windows Post-Install Wizard (WPI)
Got it -
This does indeed work fine in ie10. Running a vm install now to test in ie8 again just to make sure. function ins_iTimer(){position="timers.js";whatfunc="ins_iTimer()";var now=new Date();var elapsedSecs=((now.getHours()*60*60) + (now.getMinutes()*60) + now.getSeconds()) - ins_startSecs;var hours=Math.floor(elapsedSecs/3600);elapsedSecs=elapsedSecs - (hours*3600);var minutes=Math.floor(elapsedSecs/60);var seconds=elapsedSecs - (minutes*60);var txt=((hours < 10) ? "0" : "") + hours + ((minutes < 10) ? ":0" : ":") + minutes + ((seconds < 10) ? ":0" : ":") + seconds;document.getElementById("TimerDisplay").innerHTML=txt;}After test the next release will be ready your first on the list for the release!
-
Yes [4] Doesn't play well with ie8 either. Here's what I have: if (IE10) document.getElementById("TimerDisplay").innerHTML=((hours < 10) ? "0" : "") + hours + ((minutes < 10) ? ":0" : ":") + minutes + ((seconds < 10) ? ":0" : ":") + seconds; var timerID=setTimeout("ins_iTimer()",1000); // Update display else document.getElementById("TimerDisplay").innerHTML=txt; var txt=((hours < 10) ? "0" : "") + hours + ((minutes < 10) ? ":0" : ":") + minutes + ((seconds < 10) ? ":0" : ":") + seconds;So my whole code looks like: function ins_iTimer(){position="timers.js";whatfunc="ins_iTimer()";var now=new Date();var elapsedSecs=((now.getHours()*60*60) + (now.getMinutes()*60) + now.getSeconds()) - ins_startSecs;var hours=Math.floor(elapsedSecs/3600);elapsedSecs=elapsedSecs - (hours*3600);var minutes=Math.floor(elapsedSecs/60);var seconds=elapsedSecs - (minutes*60); if (IE10) document.getElementById("TimerDisplay").innerHTML=((hours < 10) ? "0" : "") + hours + ((minutes < 10) ? ":0" : ":") + minutes + ((seconds < 10) ? ":0" : ":") + seconds; var timerID=setTimeout("ins_iTimer()",1000); // Update display else document.getElementById("TimerDisplay").innerHTML=txt; var txt=((hours < 10) ? "0" : "") + hours + ((minutes < 10) ? ":0" : ":") + minutes + ((seconds < 10) ? ":0" : ":") + seconds;}Now my only issue is writing a function to tell wpi IE10
-
After a minor timer bug is fixed this is the next release change-log (Hopefully out tomorrow) **** [Feature] TimedWaitForWindow and CloseWindow.**** Compiled DHTMLx to v3.6.**** Remvoed 64bit options as they are auto-enabled.**** Added {CMD} to the list of functions.**** Add Win2k to conditions.**** Fixed a executebefore64bit error.**** User file written version updated slightly.**** Fixed a autologoncount error.**** Fixed a alert sound location error.**** More info added to the installer log.**** Removed more old leftover code.**** Added setfilesystem to the conditions.**** More fontinstaller improvements.**** Tons of textual errors fixed.**** Added {MSI} to the commands for standard msi files.**** Added alerts to themewizard when exiting.**** Fixed a couple of resolution errors.**** Restored "Float" for the tooltips.**** Tons of minor features improved.**** Fixed AutoAdminLogin feature.**** Added HiPerformance Power Scheme for Win7.**** Redundant code removal.**** Theme fixes.**** Expanded wmi functions.
-
I found the issue out I was having. On ie8 this timer code works fine but hangs on ie10: function ins_iTimer(){position="timers.js";whatfunc="ins_iTimer()";var txt="";var now=new Date();var nowSecs=(now.getHours()*60*60) + (now.getMinutes()*60) + now.getSeconds();var elapsedSecs=nowSecs - ins_startSecs;var hours=Math.floor(elapsedSecs/3600);elapsedSecs=elapsedSecs - (hours*3600);var minutes=Math.floor(elapsedSecs/60);elapsedSecs=elapsedSecs - (minutes*60);var seconds=elapsedSecs;txt=((hours < 10) ? "0" : "") + hours;txt += ((minutes < 10) ? ":0" : ":") + minutes;txt += ((seconds < 10) ? ":0" : ":") + seconds;document.getElementById("TimerDisplay").innerHTML=txt;}On ie10 this code works fine yet hangs in ie8: function ins_iTimer(){position="timers.js";whatfunc="ins_iTimer()";var now=new Date();var elapsedSecs=((now.getHours()*60*60) + (now.getMinutes()*60) + now.getSeconds()) - ins_startSecs;var hours=Math.floor(elapsedSecs/3600);elapsedSecs=elapsedSecs - (hours*3600);var minutes=Math.floor(elapsedSecs/60);var seconds=elapsedSecs - (minutes*60);document.getElementById("TimerDisplay").innerHTML=((hours < 10) ? "0" : "") + hours + ((minutes < 10) ? ":0" : ":") + minutes + ((seconds < 10) ? ":0" : ":") + seconds;var timerID=setTimeout("ins_iTimer()",1000); // Update display}The easiest way I can see to fix this would be using an if statement but I am having a time getting it to work any ideas? As soon as this error is fixed I am ready to make the next release. Changelog: **** Compiled DHTMLx to v3.6. **** Remvoed 64bit options as they are auto-enabled. **** Added Win 2K to conditions. **** Added {CMD} to the list of functions. **** Add Win2k to the conditions. **** Fixed a executebefore64bit error. **** User file written version updated slightly. **** Fixed a autologoncount error. **** Fixed a alert sound location error. **** More info added to the installer log. **** Removed more old leftover code. **** Added setfilesystem to the conditions. **** More fontinstaller improvements. **** Tons of textual errors fixed. **** Added {MSI} to the commands for standard msi files. **** Added alerts to themewizard when exiting. **** Fixed a couple of resolution errors. **** Restored "Float" for the tooltips. **** Tons of minor features improved. **** Fixed AutoAdminLogin feature. **** Added HiPerformance Power Scheme for Win7. **** Redundant code removal. **** Theme fixes. **** Expanded wmi functions.
-
Someone leaked the last supporter release. I am making the following change in the next one. Since I only have @ a dozen supporters I need each person to request the pass via pm. I will make a change in each one individually (Change a number, add a number encode a character) and then re zip each one. This is ONLY to track who had the wpi release that was added to the warez. So if the releases I keep track of show up with one I can make a c.a.d. and report the leaker to their isp and officials.. If this upsets you and you don't agree to it then your simply off the list. I am sorry I have to do it this way.
-
@ myselfidem and francesco: 8.6.6 introduced a bug I am trying to track down. One of the changes has made the installer lock up on (Seemingly) installers that have sub routines. The installer is having a issue continuing when so installers run. It just locks up completely... Please assist me in checking the changes introduced in the last release.
-
IPB Update July 2013 (to version 3.4.5) - SUGGESTIONS Only
Kelsenellenelvian replied to xper's topic in Site & Forum Issues
On the mobile section can you place the recent posts button in the middle?