Jump to content

athomsen

Member
  • Posts

    52
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

About athomsen

  • Birthday 03/17/1984

Contact Methods

  • MSN
    CT10665L at hotmail dot com
  • Website URL
    http://www.wpiw.net
  • Yahoo
    CT10665L

athomsen's Achievements

0

Reputation

  1. drscouse, you are correct. They are not removed. I have posted here before that leaving these settings on your computer is CRAZY. This is especially true for network admins that use WPI (read stupid end users). Personally, I do not use the reg file, but I do not use WPI with fresh SP2 installs either. Nor have I tested it.
  2. Dennis, everything you mentioned are known issues/requests and are being worked on. Thanks for the input!
  3. A friend read this and thought that this comment that I made did not come off as I intended: It is probably because I wanted to kill someone at Verizon when I wrote that, but that is a whole other story. I would like to clarify that what I meant to say was that the code is screwed up but that had to be expected when there is a community of "non-programmers" working on a project with little to no documentation for a long period of time. (By documentation I mean for the programmer) Sorry if I p***ed anyone off. I'll cool down before I post next time
  4. AlBundy33, everything you posted is a great idea and in fact I have already thought of them too. I am rewriting WPI because quite frankly as you have noticed with many different people making changes the code has been butchered. (no there is no eta on me being finished) Besides that I am brining it into the 20th century and using classes. Oh yea... I have mentioned this before but some of those reg tweaks are DANGEROUS esp in a network environment. I have not tested if they are required but kel the are on fresh installs. One of the things I have already done is to move them all to WPI and have them removed when it is done running. I am going to make the cmd file disappear come hell or high water.
  5. You can just use reg before or after to run a reg file. Behind the scenes WPI will add REGEDIT /S for you.
  6. Here is the cmd file I use. All it really does is map a drive. @ECHO OFF REM Map network drive since we can't use UNC paths net use X: \\server\share /persistent:no REM Determine the WPI startup path. REM if wpi should run off the cd the replace %~dp0 with %cdrom%. set wpipath=X:\WPI_4.3.5 REM Hide this command window. %wpipath%\Tools\cmdow.exe @ /hid REM Special registry tweak needed. regedit /s "%wpipath%\common\wpi.reg REM Make WPI directory the current directory. for /f "delims=: tokens=1" %%i in ("%wpipath%") do %%i: cd "%wpipath%" REM Start WPI and wait for its end start /wait %windir%\system32\mshta.exe "%CD%\wpi.hta" exit :end Then when you enter the path to in the command textbox in the config wizard you can use \\server\share\somthingelse\anotherthing\me.exe. So, now you can spread your files out over a billion servers WPI won't care. This meets all of your requirements and does not require any mods to WPI.
  7. Best I can figure here is that when you are adding a program you are not giving it a program name. WPI depends heavily on that name. if this is not the case post repeatable instructions for adding a program. You can remove this error by changing this line in check.js var oldcat = cat[1][0]; to var oldcat; But then your programs will not display anyway because there is no program name.
  8. OK, to fix the number in category issues replace this function in check.js. I have only tested this briefly. If some of you would like to try and break it that would be great! // Returns if check box is for a category function isCategory(i) { //alert(i + "," + typeof(i)) if(typeof(i) == "number") { return false; } var numbers = " 0123456789."; var isString = false; var char; for (var j = 0; j < i.length && !isString; j++) { char = i.charAt(j); if (numbers.indexOf(char) == -1) { isString = true; } } //alert(isString) return isString; } Also, oneless could you send me / post your config with the hide program thingamabob. I am not totally sure how you are hiding the program.
  9. Don't suppose you could post this as a file. Would make life easier for me to try and fix it. TIA
  10. I really do not understand this entire topic. Why not just enter the network path as the command. No complicated addtions needed. EDIT: BTW network paths were fixed in 4.1
  11. I have school tonight but I will work on it on Thursday.
  12. Kel put a rush on making the combo optional so I did so today. It just has to go through testing and his final approval.
  13. Sorry there are no files up yet. My PC bit the dust this morning. I will try to get them up on Monday from work.
  14. Actually I do not (my 4.2 was morphed into the next version). I will make the changes to a virgin copy of 4.2 and post the files tonight.
  15. I guess that it is the background you want to fix. Look here: category fixes topic. You inspired me to post some overdue changes to the forum. One of them includes a fix for this. Note: You must make ALL changes for it to work. The category selection function in that topic is fundamentally different than in the official release. EDIT: horrible grammar
×
×
  • Create New...