Hotfix Hunting
- ricktendo64
- Posts: 3214
- Joined: Mon May 22, 2006 12:27 am
- Location: Honduras
- OnePiece Alb
- Posts: 525
- Joined: Sat Sep 01, 2007 7:01 pm
- Location: Albania
- Contact:
- user_hidden
- Posts: 1924
- Joined: Thu Dec 06, 2007 7:52 am
- Location: Canada eh!
hey guys i've experienced brain freeze today on something simple.
i'm trying to make a simple batch to extract the hotfixes/secupdate
exe files to their own directory.
%1 /U /X:%~dp0\Extracted_Update
so the above will extract the hotfix to the current directory in the folder Extracted_Update.
how do i have it extract to the current directory in the name of the hotfix/secupdate
less the ".exe"
working too hard, guess you only notice when you can't remember easy tricks from the past.
i'm trying to make a simple batch to extract the hotfixes/secupdate
exe files to their own directory.
%1 /U /X:%~dp0\Extracted_Update
so the above will extract the hotfix to the current directory in the folder Extracted_Update.
how do i have it extract to the current directory in the name of the hotfix/secupdate
less the ".exe"
working too hard, guess you only notice when you can't remember easy tricks from the past.
- OnePiece Alb
- Posts: 525
- Joined: Sat Sep 01, 2007 7:01 pm
- Location: Albania
- Contact:
or understood, right? you want this?user_hidden wrote:hey guys i've experienced brain freeze today on something simple.
i'm trying to make a simple batch to extract the hotfixes/secupdate
exe files to their own directory.
%1 /U /X:%~dp0\Extracted_Update
so the above will extract the hotfix to the current directory in the folder Extracted_Update.
how do i have it extract to the current directory in the name of the hotfix/secupdate
less the ".exe"
working too hard, guess you only notice when you can't remember easy tricks from the past.
%~n1 - expands %1 to a file name only ???
Code: Select all
%~1 - expands %1 removing any surrounding quotes (")
%~f1 - expands %1 to a fully qualified path name
%~d1 - expands %1 to a drive letter only
%~p1 - expands %1 to a path only
%~n1 - expands %1 to a file name only
%~x1 - expands %1 to a file extension only
%~s1 - expanded path contains short names only
%~a1 - expands %1 to file attributes
%~t1 - expands %1 to date/time of file
%~z1 - expands %1 to size of file
%~dp1 - expands %1 to a drive letter and path only
%~nx1 - expands %1 to a file name and extension only
%~dp$PATH:1 - searches the directories listed in the PATH
environment variable for %1 and expands to the
drive letter and path of the first one found.
%~ftza1 - expands %1 to a DIR-like output line
Ciao.
OnePiece is right.
Code: Select all
%1 /U /X:"%~dp0\%~n1"
Good to know! Thanks..yumeyao wrote:The info OP posted can be found by 'for /?'.
The usage of %1 ~ %9 is totally same as usage of for's variable.
By the way yumeyao, just so we all know, do you have any future plans for updating any of your great addons?
I can understand that there are more important things to do in one's life and I would like to thank you for your efforts and valuable contributions that you have made in these forums.
Al
- ricktendo64
- Posts: 3214
- Joined: Mon May 22, 2006 12:27 am
- Location: Honduras
Update for Root Certificates For Windows XP [March 2012] (KB931125)
http://www.microsoft.com/download/en/de ... x?id=29246
http://www.microsoft.com/download/en/de ... x?id=29246
- ricktendo64
- Posts: 3214
- Joined: Mon May 22, 2006 12:27 am
- Location: Honduras
Now Aprilacus wrote:Update for Root Certificates For Windows XP [March 2012] (KB931125)
http://www.microsoft.com/download/en/de ... x?id=29246
http://www.microsoft.com/download/en/de ... x?id=29434
- user_hidden
- Posts: 1924
- Joined: Thu Dec 06, 2007 7:52 am
- Location: Canada eh!
- OnePiece Alb
- Posts: 525
- Joined: Sat Sep 01, 2007 7:01 pm
- Location: Albania
- Contact:
I see more updates for .NET Framework:user_hidden wrote:so far for today's patch tuesday for WinXP:
KB890830 - MRT
KB2659262
KB2660649 (TabletPC)
KB2676562
KB2686509
KB2695962
KB2604044 - NDP1.1SP1
KB2656407 - NDP3.0SP2
KB2656405 - NDP4.0
have fun
KB2604121 - http://support.microsoft.com/kb/2604121 (.NET 4.0)
KB2604111 - http://support.microsoft.com/kb/2604111 (.NET 3.5 SP1)
KB2604110 - http://support.microsoft.com/kb/2604110 (.NET 3.0 SP2)
KB2604092 - http://support.microsoft.com/kb/2604092 (.NET 2.0 SP2)
Is it safe to just add the usual registry entries for KB2686509, or is kblChecker.dll necessary somehow? The Microsoft Update website accepts that the update is installed with just the entries.
Will removing keyboard layouts with nLite affect this update?Microsoft wrote:[After running the update and receiving a failure message, the Faultykeyboard.log] file contains information about registered keyboard layout files that are not in the %Windir%\System32 folder.
- user_hidden
- Posts: 1924
- Joined: Thu Dec 06, 2007 7:52 am
- Location: Canada eh!
5eraph wrote:Is it safe to just add the usual registry entries for KB2686509, or is kblChecker.dll necessary somehow? The Microsoft Update website accepts that the update is installed with just the entries.
Will removing keyboard layouts with nLite affect this update?Microsoft wrote:[After running the update and receiving a failure message, the Faultykeyboard.log] file contains information about registered keyboard layout files that are not in the %Windir%\System32 folder.
i placed the file in %11% like any other dll and added it to entries.ini
- user_hidden
- Posts: 1924
- Joined: Thu Dec 06, 2007 7:52 am
- Location: Canada eh!
- ricktendo64
- Posts: 3214
- Joined: Mon May 22, 2006 12:27 am
- Location: Honduras
Without the DLL, Rick, MU complains unless the following registry entry exists:
kblChecker.dll was deleted from my system by the update package after it was run with the /B:SP2QFE switch.
Code: Select all
HKLM,"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Hotfix\KB2686509","Installed",0x10001,1
Last edited by 5eraph on Tue May 08, 2012 7:43 pm, edited 1 time in total.
- user_hidden
- Posts: 1924
- Joined: Thu Dec 06, 2007 7:52 am
- Location: Canada eh!
5eraph wrote:Without the DLL, Rick, MU complains unless the following registry entry exists:
kblChecker.dll was deleted from my system by the update package after it was run with the /B:SP2QFE switch. 32-bit installs would use /B:SP3QFE instead.Code: Select all
HKLM,"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Hotfix\KB2686509","Installed",0x10001,1
there is no QFE for the update it is general so the switch won't work.
normally it is placed in the C:\WINDOWS\$hf_mig$\KB2686509.
like i posted above i placed it in C:\Windows\System32
-
- Posts: 491
- Joined: Tue Aug 09, 2011 12:12 pm
- Location: https://twilczynski.com/windows
- Contact:
The file "kblchecker.dll" is used when the update is being installed to check "something":
but it's not installed anywhere. I don't really know what this "update" is supposed to do because there is nothing in the update.inf to be added to the registry, except for entries related to the update itself.
Code: Select all
[Prereq.IsMachineSafe.Section]
PresentOp = CheckCustom,,kblchecker.dll, IsMachineSafe
EqualOp = CheckCustom,,kblchecker.dll, IsMachineSafe,,"==",1
-
- Posts: 491
- Joined: Tue Aug 09, 2011 12:12 pm
- Location: https://twilczynski.com/windows
- Contact:
The article explains it better than I can. In short, the update package only performs a check of the installed layout files, nothing more. If the check passes then the entry I mentioned above is added to the registry. If the check fails then the user has work to do, and the registry entry is not added.
- user_hidden
- Posts: 1924
- Joined: Thu Dec 06, 2007 7:52 am
- Location: Canada eh!
TZ update KB2698707
- ricktendo64
- Posts: 3214
- Joined: Mon May 22, 2006 12:27 am
- Location: Honduras
-
- Posts: 491
- Joined: Tue Aug 09, 2011 12:12 pm
- Location: https://twilczynski.com/windows
- Contact:
Just in time to add to UURollup-v10. Thank you!ricktendo64 wrote:KB2718704
- ricktendo64
- Posts: 3214
- Joined: Mon May 22, 2006 12:27 am
- Location: Honduras
- user_hidden
- Posts: 1924
- Joined: Thu Dec 06, 2007 7:52 am
- Location: Canada eh!
i've seen the "How to obtain the latest version of the Windows Update Agent" however WU is notricktendo64 wrote:New Windows Update Agent 7.6.7600.256
offering it yet and there is no stand alone installer available so far.
- user_hidden
- Posts: 1924
- Joined: Thu Dec 06, 2007 7:52 am
- Location: Canada eh!
- user_hidden
- Posts: 1924
- Joined: Thu Dec 06, 2007 7:52 am
- Location: Canada eh!
Last edited by user_hidden on Tue Jun 12, 2012 11:14 am, edited 2 times in total.
The Microsoft Download site seems to have several files ready a couple hours early.
KB2707511 is ready too.
KB2707511 is ready too.
- user_hidden
- Posts: 1924
- Joined: Thu Dec 06, 2007 7:52 am
- Location: Canada eh!
- Outbreaker
- Posts: 703
- Joined: Tue Aug 21, 2007 8:06 am
Windows Update Agent 3.0 v7.6.7600.256 is included in WSUS update KB2720211. Thanks go to submix8c on MSFN for the link.
How to extract with 7-Zip:
Download locations for x86 Microsoft Update v7.6.7600.256 files:Download locations for x64 Microsoft Update v7.6.7600.256 files:
How to extract with 7-Zip:
- Extract WUSSetup.msp from WSUS-KB2720211-x64.exe.
- Extract PCW_CAB_SUS from WUSSetup.msp and add CAB file extension.
- Extract largest file in PCW_CAB_SUS.cab and add CAB extension (f_7d330e57.BE2E96D2_4460_4371_84DE_4148273456C7.cab).
- All needed cabinets for XPx86 English should be in "AU\x86\NetServer\en" and "AU\x86\NetServer\MUI" from the last extracted file.
Download locations for x86 Microsoft Update v7.6.7600.256 files:Download locations for x64 Microsoft Update v7.6.7600.256 files:
It is possible to update your version of Windows Update Agent before Microsoft rolls it out. First, replace wuweb.dll in system32 or SysWOW64 with the latest x86 version, then open the Windows Update website to force the upgrade. It may be necessary to visit the site more than once to finish the process.
- ricktendo64
- Posts: 3214
- Joined: Mon May 22, 2006 12:27 am
- Location: Honduras
AWESOME!!!
Edit: I created a repacked standalone installer for the Windows Update Agent using the previous version as base (submix8c's idea,) tested and working on XP x86
http://www.wincert.net/forum/index.php?showtopic=9907
Edit: I created a repacked standalone installer for the Windows Update Agent using the previous version as base (submix8c's idea,) tested and working on XP x86
http://www.wincert.net/forum/index.php?showtopic=9907
Last edited by ricktendo64 on Sat Jun 16, 2012 7:39 pm, edited 1 time in total.
- ricktendo64
- Posts: 3214
- Joined: Mon May 22, 2006 12:27 am
- Location: Honduras
- ricktendo64
- Posts: 3214
- Joined: Mon May 22, 2006 12:27 am
- Location: Honduras
- user_hidden
- Posts: 1924
- Joined: Thu Dec 06, 2007 7:52 am
- Location: Canada eh!
- ricktendo64
- Posts: 3214
- Joined: Mon May 22, 2006 12:27 am
- Location: Honduras
KB2705368 (no dl links yet and I doubt there will be)
Hotfix Download Availablericktendo64 wrote:KB2705368 (no dl links yet and I doubt there will be)
View and request hotfix downloads
http://support.microsoft.com/kb/2705368/en-us