July 21, 200620 yr All right, all right, you don't have to explain to us your procedure . Yes, there is a tool called MSBA. Also, HFNetChk was not created by Microsoft. If you look, you'll find that out pretty quickly.
July 21, 200620 yr And you can download the same xml file from the hfnetchk's website; same format as MS's official one afaik.
July 24, 200620 yr All right, all right, you don't have to explain to us your procedure . Yes, there is a tool called MSBA. Also, HFNetChk was not created by Microsoft. If you look, you'll find that out pretty quickly.Hehe, you're right, I was too fast in my assumption Anyway, I have an idea, I have the file (thanks for the second source Camrade_Tux ), I'm starting coding as soon as I get some spare time.
August 8, 200620 yr To everyone interested:The program/script is finished. Wow it took some time but considering my recent schedule I'm happy that I could find time to finish it.The package is self contained and you can just unzip it anywhere you want.Now. Most probably you will want to configure some of it's behaviour. Depending on factors like: which version of windows do you want updates for, do you use a proxy to connect to internet, etc. I've included a short readme file so be sure to read it. As for now configuring the script means opening it and changing some variables in the beginning. It is well commented and everything should be easy enough. If you'll think it'll be better, I can modify it to use an external config file.Anyway, grab it, try it, tell me what you think Uh, just one question though. How do I upload the file to MSFN? I can see some storage folders in my control panel but can't seem to find a control to upload it. Or will I just attach it to the post here?
August 8, 200620 yr You can attach it here or I'll host it for you if you email it to me at tainspamatyahoodotcom. Do NOT remove the spam
August 8, 200620 yr Hmm, ok, I wanted to attach it here for starters but it seems I can't. I get a msg "... total filespace ... greater than your per post or global limit ...". Weird the file is just 1mb Right ok, I'll just email it to you then, TAiN.
August 8, 200620 yr TAiN, I've emailed the file to you. Let me know if you got it. If not it was probably blocked by some paranoid email server
August 9, 200620 yr I can't run it : "ERROR: Some of the external utilities are not accessible. Check the bin subdir. "Path has no space in it, workdir is the correct one.I added some dbeug infos and on line 344, wget is not found, though it is present.You should also add a "Pause" at line 350 or 351.
August 9, 200620 yr I think its to do with the lines "goto :eof"It doesnt look like their is a EOF section for it to goto.
August 9, 200620 yr "goto :eof" is normal : it is to exit the script. And the script doesn't really exit, it first writes to a log.Briefly, I edited the script and added some "echo" commands:echo 3sed --version >nul 2>&1 || goto __checkExtUtilsErrorecho 4goto :eof3 is displayed but 4 is not.And I'm not experienced at all with batch.
August 9, 200620 yr "goto :eof" is normal : it is to exit the script. And the script doesn't really exit, it first writes to a log.Briefly, I edited the script and added some "echo" commands:echo 3sed --version >nul 2>&1 || goto __checkExtUtilsErrorecho 4goto :eof3 is displayed but 4 is not.And I'm not experienced at all with batch.I was never aware goto :eof just exists the script section ... are you sure (I thought it was exit or something like that)? I assumed (maybe wrong of me):__checkExtUtils::# make sure external utils are accessible and throw an error if notsggrep -h >nul 2>&1 || goto __checkExtUtilsErrorsgmltrans -h >nul 2>&1 || goto __checkExtUtilsErrorsed --version >nul 2>&1 || goto __checkExtUtilsErrorwget --version >nul 2>&1 || goto __checkExtUtilsErrorgoto :eof####################Because it cant find EOF ... it then goes to the next section, which then displays the error?####################:__checkExtUtilsErrorecho Some of the external utilities are not accessible.echo Make sure you extracted the archive correctly and confirmecho that the utilities are in bin subdirectory under the programecho main directory.call :__log ERROR: Some of the external utilities are not accessible. Check the bin subdir.set WINUPDL_ABORT=1goto :eof
August 9, 200620 yr GOTO EOF is a command to transfer control to the end of the current batch script file (hence, EOF - end of script). However, unless command extensions are enabled, you must still define the actual :EOF label.
August 9, 200620 yr Hello!!Yes that's my mistake, sorry about that. I've tested it on my laptop at home today and got the same result It was actually wget returning status 1 because it couldn't find the wgetrc file You see in the environment it was build I use proxy to connect to the outside world so I have to use wgetrc Anyway, I've identified two more bugs which somehow escaped my attention, and they are gone now as well TAiN, can I email you the fixed version again? I'll have a look around to organize some hosting maybe in the near future Thanks
Create an account or sign in to comment