Jump to content

Honnes

Member
  • Posts

    23
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Netherlands

About Honnes

Honnes's Achievements

0

Reputation

  1. Hello all, I configured and started a WSUS (Windows Services Update Server) for our network here, but ive got this tiny problem... I configured everything correct, auto update via the server works, but well, i dont want to change all settings 300 times before all the computers are updated. (ps: its a school network with hd protect cards in it) I created myself a batch file which should enable and disable the windows update service. A little bit of the content REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /F REG ADD "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v "AUOptions" /t "REG_DWORD" /d "00000002" REG ADD "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v "ConfigVer" /t "REG_DWORD" /d "00000001" REG ADD "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v "ResetAU" /t "REG_DWORD" /d "00000001" REG ADD "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v "ScheduledInstallDay" /t "REG_DWORD" /d "00000000" REG ADD "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v "ScheduledInstallTime" /t "REG_DWORD" /d "00000003" REG ADD "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v "NextDetectionTime" /t "REG_SZ" /d "2006-02-24 08:34:13" WUAUCLT.EXE /DETECTNOW PAUSE REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /F REG ADD "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v "AUOptions" /t "REG_DWORD" /d "00000001" REG ADD "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v "ConfigVer" /t "REG_DWORD" /d "00000001" REG ADD "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v "ResetAU" /t "REG_DWORD" /d "00000001" REG ADD "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v "ScheduledInstallDay" /t "REG_DWORD" /d "00000000" REG ADD "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v "ScheduledInstallTime" /t "REG_DWORD" /d "00000003" When i use this, the registry is being modified and with the /detectnow switch, you force the comp to connect with the server, but the NextDetectionTime doesnt change at all then...which is kinda odd. (after the pause (and when you installed the updates, you press a key and the auto updates are inactive again)) When i do these steps manuel (via Automatic Updates configer and select the option 'message before download/install' and I press OK and do that detectnow), it does work. Does someone has an idea of whats going wrong ? Have i forgot a reg. key, or wont this work at all ? Thanks in advance ! (ps: Im updating per classroom, and please dont tell me things like, never activate that hd protect card again and set auto updates on on or so. thanks.) [edit] My batch does work when i first reboot and later deactivate the auto updates again (did that with the %1 parameter). I can live with that, but if someone knows how to fix this without reboot, that would be great ! [/edit] Title edited -- Please, use [TAGS] in your topic's title. Follow new rules --Sonic
  2. The drivers for your nic, did you install them manually or did you just did the auto detect function of win 2k3 ?
  3. holding down the CONTROL button also works, aint it ?
  4. maybe you installed a NIC after the image ha been created. or.. maybe an extra NIC (installed by you) in the machine hasnt been installed properly and then windows tries to detect the drivers itselfs...which ain't succesfull always.
  5. thats the first part of the text Below there's said what to do next... copy .cat to svcpack copy kbnnnn.exe to svcpack modify the dosnet.inf create svcpack.inf and so on... I've also checked the OEM site http://oem.microsoft.com/script/contentpag...=551737#top#top and here's also explained how to slipstream the files into the source, but there's nearly a difference...i only noticed one typing difference. OEM Site: Catalogsubdir "i386\svcpack" (other) Site(s): Catalagsubdir "\i386\svcpack" which one is the 'correct' version ? [edit] ps: does someone also has some info about those cat files ? are they worth anything, results of them and so on [/edit]
  6. Im running win2k here too and well, i don't have a autoexec.nt or what so ever, but i do have autoexec.bat, config.sys and so on. It are hidden files, thats also why i forwarded you to autoexec.bat via CMD. By the way, your xcopy command switches are a bit strange... /H == copy hidden /E == copys folder, even when they're empty /S == Copy folders when they're not empty (/E and /S are working against eachother) /I == Target is a folder when target does not exist, remove this one too... /Q == Dont show copied files..okay. /Y == Overwrite files without prompting..okay. I would prefer this: xcopy %SYSTEMROOT%\TempDocs\*.* %SYSTEMDRIVE%\Docume~1\ /E /I /Q /H /Y I also removed the *.* at the end of docume~1 cause if you do that, you DO have to 'tell' the comp what the destination is (file or folder) I think that %SYSTEMROOT% and %SYSTEMDRIVE% doesnt work, cause that is loaded via config.sys and .PATH commands of autoexec.bat good luck ;-)
  7. I have seen this one before, but why does microsoft integrates by extracting all the files, then copy to source, in the meanwhile..your also copying the hotfix.exe to the svcpack + the .cat file. Is this really integration or just wasting more space then ever ?
  8. So far i have accomplished to slipstream a lot of hotfixes (all of them, since yesterday) It didnt work allways that well and so on, but after 4 weeks of spending some time on it i learned the work arounds. But, i still am wondering and questioning myself a couple of things, i listed it below and maybe some of you can help me out. I'll do it on the order as the topic title says... CAT Files -- As we are slipstreaming stuff, you need to use the CAT files in order to install the hotfixes into windows itself (even though the files are slipstreamed). We created on a nice manner the svcpack.inf which includes the catsubdir folder and the cat..to install text with all the .CATs within the SVCPACK folder. Even though i do this on the proper way, i still am getting messages that i have to install all those updates. What exactly are those .CAT files doing then ? Whats their purpose in this whole installation ? I don't see any of the results from which i can say "wooow, that CAT file really helped me out". No not at all, can someone explain this to me what they actually are doing then ? INF Files -- Some of us delete all of them, just like me. Some of us extract information from them in order to create proper reg keys so WU will recognise things like WU stuff. Whats the best way to handle, delete them or collect the info ? Collecting them will force us/you to install it into the reg, ain't i right ? So even a custom installation with some parts less will also have the regs in the system, even though those parts are not used. Let alone the hotfixes. UPDATE.exe -- I read the Hotstream project and it appears that update.exe is mentioned a couple of times. Is update.exe used to install .CAT / .INF files or something else ? Thank you for the time reading all this. Any help is welcomed.
  9. Hmm...i think the following would do the trick: Log on to the computer. Go to START/RUN and type "cmd" (without "") Go to your root dir (on which windows resides) (C: for example) Type CD\ (so you'll be on the very root of the HD) Type 'edit autoexec.bat' (loading edit can take a couple of seconds...). If autoexec.bat has lines in it, be carefull that you not edit stuff (which does belong in autoexec.bat) Put the following line somewhere in your file: xcopy c:\DOCUME~1\*.* /D /E /H x:\destination x:\destination is your complete path to the dir where the backup has to be placed. You have to work in 8.3 Dos format. This means that when a foldername is longer dan 8 chars, then you'll have to write down the first 6 chars + ~1 (if there are more folders with the same 6 chars, then you'll have to number ~x on alphabet). If the folder name is exactly 8 chars, then you don't have to change destination folder (spaces are not allowed @ dos). I hope you'll understand what i've said and well, if u need help, i'll try to help
  10. < removed > I have applied all hotfixes for now to my Win 2k. This is excluding: MDAC IE6SP1 + fixes ---- I'll first try to get to work what i've just made, so i do know how to handle. I now have some sort of critical problem with the following fixes (old to new) KB891711 - fix win 2k (website?) KB840987 - same as above KB841533 - same as above KB835732 - ^^ Q329115 - security update for Q329115 I had some problems with NTDLL.DLL en KERNEL.DLL All of those hotfixes got the KERNELL.DLL within and KB835732 also got NTDLL.DLL. When i slipstream those hotfixes (in the old to new order), then i CAN get windows to install all the stuff. But after the installation, when i login i get the message "Cant locate 175 coördinate in USERENV.DLL" (or something like that, but then in Dutch). This has to do something with the hotfixes above, cause without those hotfixes everyone works just fine. But i still have the problem that Windows Update claims about all those hotfixes. another ps (also located in a new topic of mine), those CAT files, are they being used or is it just something worthless ? I don't see any results of them. Hotfix still appears in WU. Maybe i should create such a reg file after all and stick to that..
  11. Thanks for the info. Was not busy with the integration those last couple of days. I know am getting this error everytime i am integrating stuff... NTOSKERNEL32.DLL error and an NTDLL.DLL error which says that this file has been put into the memory by the cause of ntoskernel.dll. Im dutch, so i cant put the 'english ' version here. I'll translate it when i see that error message again does anyone has an idea what this could be ? I integrate using the hotfixes in the way i installed them on a clean pc. Maybe i should first integrate IESP1 and then continue with these fixes, cause i have first installed a clean win2k, then i updated to sp4, then to ie6 sp1 and then i gained all these hotfixes.
  12. hmmm...in short terms...i can conclude the following (?) : IE6 (SP1) Installed ==> QFE IE6 (SP1) Not installed ==> GDR I'll try my slipstream out right now using the GDR (as i am going to try all hot fix type 1's ) @TommyP: I don't know if you've already done this...but i think you should adjust your batchfile for the win2k stuff.. when your going to use those GDR / QFE, you should use your !DOIE! check to determine which folder to use Hmm... reading the batch file, or let me say, re-memorising it, and reading Bilou's part about the Februar KB file...i think your 'bandaid' ain't correct anymore. It appears to be that the files from xpsp2 binary are copied AFTER all hotfixes have been extracted, which means that there will always be that file (+version especially) in your system, even though that KB bilou mentioned has later versions. I think you should put an if exist xpsp2 check after each hotfix so you'll always have the latest files in your system/cd. If i'm wrong please correct me and tell me why, im always fond of suggestions and feedback @Bilou Those new SHLWAPI.DLL files and so on, are they located in the "root" directory of the hotfix, or are they being extracted in another folder (like xpsp2binarydrop) ? [edit] Here's a bit of a strange part.. when i've extracted all of the HF1 fixes, i only see a QFE folder I think thats because i do have some HF1 for IE6SP1. No GDR maps for me...so, no files will be copied after all i do have an XPSP2binarydrop folder, from which i do am copying the files, cause i think its not part of IE6(sp1) hotfixes.
  13. Reading the part that Bilou posted about those RDM and QFE i would assume that the QFE folder has more fixes into it for things that are new, apart from IE6 without SP1 or something. Anyways, i'll go on with my tiny 'test' to check wether my problem is in the type 1 hotfixes or type 2. And for Bilou, i am generating a new old-to-new hotfix list soon and its easy to integrate in a batchfile check. maybe i should post it afterwards, when i have finished it and its done Good night to you all...im a bit sleepy after all this integrating and testing stuff (well,today i hadnt had the time to slipstream and so on...but tomorrow i will) I've got my new image ready for launch and will install it on a Workstation tomorrow
  14. I always use Win2k/XP. Far more stable and not expensive. OEM versions especially
  15. Well tommyP, I've extended a part of my own batchin' work the last couple of days and am going to rebuild that list (now that i read your reply). I didn't had any time today to create a new slipstreamed (hotfix 1 only standard install) disc, so i'll create that one tomorrow...well, i could put on the batch file for now. The part that I 'extended' is a little precheck for the hotfixes. I have put all the hotfixes in a text file from old to newest hotfix. Both hotfix type 1 and 2 are included in that list and i use a if check to see in which hotfix folder i put it (for you that would be HF1 / HF2). If it does exist it extracts the file and each time i see "overwrite" (deleting the unneeded file after every extraction), your ensured you got the latest versions of the files...at least, i would say so. My going-wrong-part, accorrding to Bilou, is something with IE or a part of it (like that wapi.dll thingy). Haven't checked it yet, but i think he's right. Im off again, i'll check again later and report some of the results. [edit] I do am wondering now....which WHLApi.dll should i use ? The most logical one seems the latest version, aint it ? [/edit]
×
×
  • Create New...