Jump to content

George King

Members
  • Posts

    470
  • Joined

  • Last visited

  • Days Won

    18

Everything posted by George King

  1. @echo off title Windows 7 Updates Installer by George King v1.1.0 cls if exist Windows6.1-KB968771-x*.msu set IE=- IE 8 Feature Pack echo. echo +++++++++++++++++++++++++++++++ echo + Windows 7 Updates Installer + echo +++++++++++++++++++++++++++++++ echo. echo. echo Searching for MSU Updates... echo. echo. if exist Windows6.1-*.msu (set MSU=1 set COUNT=0 for /f %%a in ('dir /b *.msu') DO set /a COUNT+=1 set M=%COUNT% echo. echo Windows 7 Updates Installer found %M% * MSU * Updates echo. goto :_CAB ) ELSE (echo ******* echo No * MSU * Updates in current folder... echo ******* goto :_CAB ) :_CAB echo. echo Searching for CAB Updates... echo. echo. if exist *.cab (set CAB=1 set COUNT=0 for /f %%b in ('dir /b *.cab') DO set /a COUNT+=1 set C=%COUNT% echo. echo Windows 7 Updates Installer found %COUNT% * CAB * Updates echo. goto :_Install ) ELSE (echo ******* echo No * CAB * Updates in current folder... echo ******* goto :_Test ) :_Test if not "%MSU%" == "1" if not "%CAB%" == "1" goto goto :_NoUpdates :_Install echo. echo *************************************************** echo * Press any key for start updating your system... * echo *************************************************** pause >nul cls echo. echo +++++++++++++++++++++++++++++++ echo + Windows 7 Updates Installer + echo +++++++++++++++++++++++++++++++ echo. if "%MSU%" == "1" (echo Installing MSU Update: FOR %%U IN (*.msu) DO (echo %%U %IE% "%%U" /quiet /norestart ) ) echo. if "%CAB%" == "1" (echo Installing CAB Update: FOR %%C IN (*.cab) DO (echo %%C DISM /Online /Add-Package /PackagePath:%%C >nul ) ) echo. echo Please REBOOT your computer for complete installation... pause >nul exit :_NoUpdates echo. echo Updates not found!!! echo. echo Please place this file (Update.exe) into folder with MSU or/and CAB updates... echo After place Update.exe into folder with updates installation will start... echo. pause >nul exit The script found updates, but no read ho many MSU files are in folder... For CAB files it work...
  2. Thanks Darky... Your script work, but in my script work only for *.cab. Dont know why... @echo off title Windows 7 Updates Installer by George King v1.1.0 cls if exist Windows6.1-KB968771-x*.msu set IE=- IE 8 Feature Pack echo. echo +++++++++++++++++++++++++++++++ echo + Windows 7 Updates Installer + echo +++++++++++++++++++++++++++++++ echo. echo. echo Searching for MSU Updates... echo. echo. if exist Windows6.1-*.msu (set MSU=1 set COUNT=0 for /f %%a in ('dir /b *.msu') DO (set /a COUNT+=1 set M=%COUNT% ) echo. echo Windows 7 Updates Installer found %M% * MSU * Updates echo. goto :_CAB ) ELSE (echo ******* echo No * MSU * Updates in current folder... echo ******* goto :_CAB ) :_CAB echo. echo Searching for CAB Updates... echo. echo. if exist *.cab (set CAB=1 set COUNT=0 for /f %%b in ('dir /b *.cab') DO (set /a COUNT+=1 set C=%COUNT% ) echo. echo Windows 7 Updates Installer found %COUNT% * CAB * Updates echo. goto :_Install ) ELSE (echo ******* echo No * CAB * Updates in current folder... echo ******* goto :_Test ) :_Test if not "%MSU%" == "1" if not "%CAB%" == "1" goto goto :_NoUpdates :_Install echo. echo *************************************************** echo * Press any key for start updating your system... * echo *************************************************** pause >nul cls echo. echo +++++++++++++++++++++++++++++++ echo + Windows 7 Updates Installer + echo +++++++++++++++++++++++++++++++ echo. if "%MSU%" == "1" (echo Installing MSU Update: FOR %%U IN (*.msu) DO (echo %%U %IE% "%%U" /quiet /norestart ) ) echo. if "%CAB%" == "1" (echo Installing CAB Update: FOR %%C IN (*.cab) DO (echo %%C DISM /Online /Add-Package /PackagePath:%%C >nul ) ) echo. echo Please REBOOT your computer for complete installation... pause >nul exit :_NoUpdates echo. echo Updates not found!!! echo. echo Please place this file (Update.exe) into folder with MSU or/and CAB updates... echo After place Update.exe into folder with updates installation will start... echo. pause >nul exit
  3. Tomorow i will work on my W7I CMD and will try it THX EDIT: Sorry, i have 1 question how make this: if not "%MSU%" == "1" and "%CAB%" == "1" goto :_Error I think if MSU and CAB not 1 goto :_Error EDIT2: Does somebody know how read how many files (*.rar, *.zip, etc etc..) are in folder?
  4. THX, i will try it. I want use it with IF... if "%I%" == "2" DO set ULT=%I%+1 Will this work?
  5. Is there way for multilanguage support? :dribble:
  6. Lego, can you update decription under RTM Updates Packs? Windows 7 RTM is now official via MSDN ;-)
  7. Now i have Enterprise with KMS serial :sweatingbullets: And i will install Ultimate ;-)
  8. All what you mean can be done via imageX: imagex.exe /compress maximum /export "%yourfolder%\sources\install.wim" "edition index" "%yourfolder%\source\new_install.wim" "Your Name (Windows 7 Ultimate x86)"
  9. I have my CMD Integrator and I using RunOnceEx :icon_cool: ;-) Mount WIM, load registry, edit registry, unload registry, copy EXE,MSI,REG to %MOUNTEDWIM%\Windows\Setup or $OEM$\$1\Setup, commit %MOUNTEDWIM% and AddOn Support is here :thumbsup_anim: REG LOAD HKLM\W7I "%MOUNTEDWIM%\Windows\System32\Config\Software" SET ROE=HKLM\W7I\Microsoft\Windows\CurrentVersion\RunOnceEx REG ADD %ROE% /v TITLE /d "Windows 7 Integrator Finisher" /f REG ADD %ROE% /v Flags /t REG_DWORD /d "00000014" /f REG ADD %ROE%\001 /ve /d "EXE" /f REG ADD %ROE%\001 /v EXE /d "%WinDir%\Setup\EXE.exe" /f REG ADD %ROE%\002 /ve /d "MSI" /f REG ADD %ROE%\002 /v MSI /d "%WinDir%\Setup\MSI.exe" /f REG ADD %ROE%\003 /ve /d "REG" /f REG ADD %ROE%\003 /v REG /d "%WinDir%\Setup\REG.exe" /f REG ADD HKLM\W7I\Microsoft\Windows\CurrentVersion\RunOnceEx /d "%WinDir%\System32\rundll32.exe %WinDir%\System32\iernonce.dll,RunOnceExProcess" /f REG UNLOAD HKLM\W7I EXE.exe @echo Off FOR %%i IN (C D E F G H I J K L M N O P Q R S T U V W X Y Z) DO IF EXIST %%i:\sources\install.wim SET CDROM=%%i: FOR %%f IN ("%CDROM%\SETUP\*.exe") DO "%%f" EXIT MSI.exe @echo Off FOR %%i IN (C D E F G H I J K L M N O P Q R S T U V W X Y Z) DO IF EXIST %%i:\sources\install.wim SET CDROM=%%i: FOR %%f IN ("%CDROM%\SETUP\*.msi") DO "%%f" /passive /norestart EXIT REG.exe @echo Off FOR %%i IN (C D E F G H I J K L M N O P Q R S T U V W X Y Z) DO IF EXIST %%i:\sources\install.wim SET CDROM=%%i: FOR %%f IN ("%CDROM%\SETUP\*.reg") DO regedit /s "%%f" EXIT EXE,MSI,REG are compiled with QuickBFC ala ghost appz ;-) (No CMD window) And i have easy manage my executable AddOns in root of disk
  10. PlayReady PC Runtime for Windows 7 KB971012 PlayReady-971012-v1.3-x86-enu http://rapidshare.com/files/264269655/PlayReady-971012-v1.3-x86-enu.msi http://www.mediafire.com/file/4wt0mjlng4l/PlayReady-971012-v1.3-x86-enu.msi PlayReady-971012-v1.3-x64-enu http://rapidshare.com/files/264269656/PlayReady-971012-v1.3-x64-enu.msi http://www.mediafire.com/file/lywqttj42yn/PlayReady-971012-v1.3-x64-enu.msi
  11. Internet Explorer 8 Feature Pack for Windows 7 E/N KB968771 Windows6.1-KB968771-x86.msu http://rapidshare.com/files/263369260/Windows6.1-KB968771-x86.msu Windows6.1-KB968771-x64.msu http://rapidshare.com/files/263369264/Windows6.1-KB968771-x64.msu
  12. Yes, here is mirror ;-) Link removed, shown in first post
  13. I want W7T in my language...
  14. Microsoft Photo Story v3.0.1115.10 Operating system: Windows XP Addon type: TRUE Integrator: nLite Requirements: WMP10 or higer If you want Photo Story addon in your language, you must follow this: 1. Download Photo Story 3 in your language from Microsoft http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=92755126-a008-49b3-b3f4-6f33852af9c1 2. Extract PStory.msi and get all files from these paths - program files and SharedMusicPath 3. Extract MSPhotoStory_v3.0.1115.10_ENU.rar and PStory.cab 4. Replace all files with yours from extracted PStory.msi in extracted PStory.cab 5. Make new PStory.cab 6. Edit Strings in PStory.inf: [Strings] CompanyName="George King Company" Name = "Photo Story 3" Tip = "Microsoft Photo Story 3.0.1115.10" Lang = "1033" -->> Write your lang (1029 etc..) PhotoStoryFolder = "Photo Story 3 for Windows" ShortcutTip = "Run Photo Story" -->> This is comment on shortcut 7. Integrate with nLite Download: http://hotfile.com/dl/7780375/ac10b58/MSPhotoStory_v3.0.1115.10_ENU.rar.html http://rapidshare.com/files/250062207/MSPhotoStory_v3.0.1115.10_ENU.rar
  15. I redownloaded WMP11 and now it work ;-) But KB923789 (already redownloaded) not working... Now, i get this error: Now i have all OK, only KB923789 not working... Where i can get this files? Off-Topic Comment(Click to Show) browser.dllFlash.ocx flashutl.exe imadmui.mui mucltui.dll mucltui.mui muctwctl.dll muweb.dll ntprint.inf psenuaaa.txt psenuaah.txt psenuaal.txt psenuaao.txt psenuaar.txt psenuaav.txt psenuabh.txt psenuacc.txt psenuace.txt psenuaco.txt psenuacp.txt psenuacs.txt psenuadx.txt psenuaec.txt psenuaee.txt psenuaev.txt psenuafc.txt psenuafe.txt psenuafh.txt psenuafi.txt psenuafo.txt psenuagh.txt psenuahh.txt psenuach.txt psenuaih.txt psenuale.txt psenualo.txt psenualp.txt psenuamh.txt psenuanh.txt psenuaob.txt psenuaoh.txt psenuapa.txt psenuaph.txt psenuapi.txt psenuapm.txt psenuapn.txt psenuapr.txt psenuaps.txt psenuaqr.txt psenuar.txt psenuare.txt psenuarh.txt psenuarw.txt psenuasb.txt psenuasc.txt psenuase.txt psenuash.txt psenuasl.txt psenuass.txt psenuasv.txt psenuath.txt psenuawa.txt psenuawe.txt psenuawh.txt psenucmh.xml psenucmr.dll psenucuh.xml psenucur.dll psenudhe.txt psenuell.mui psenueul.txt psenugst.rtf psenuchh.xml psenuchr.dll psenulqr.rtf psenurno.rtf psenusde.xml psenusma.xml psenusmr.dll psenusre.dll psenuugu.rtf rdpdr.sys reg.exe rspndr.inf serscan.sys swflash.inf usbvideo.sys wdsimage.mui wdsmgmt.mui wuauclt1.exe wuaueng1.dll xpsp4res.dll [Close] My updates files Off-Topic Comment(Click to Show) directx_mar2009_redist.exeEUupdate.EXE IE8-WindowsXP-KB968220-x86-CSY.exe IE8-WindowsXP-KB969497-x86-CSY.exe IE8-WindowsXP-KB969897-x86-CSY.exe IE8-WindowsXP-KB971180-x86-CSY.exe IE8-WindowsXP-KB971930-x86-CSY.exe IE8-WindowsXP-x86-CSY.exe msxml.msi msxml2sp6-kb887606-x86-csy.exe Q282784_WXP_SP1_x86_CSY.exe rootsupd.exe Silverlight.2.0.exe windows-kb890830-v2.11.exe Windows-KB909520-x86-CSY.exe windowsmedia11-kb928788-x86-intl.exe windowsmedia11-kb929399-v2-x86-intl.exe windowsmedia11-kb929773-x86-intl.exe windowsmedia11-kb932390-x86-intl.exe windowsmedia11-kb933547-x86-intl.exe windowsmedia11-kb935551-x86-intl.exe windowsmedia11-kb935552-x86-intl.exe windowsmedia11-kb936782-x86-csy.exe windowsmedia11-kb939209-x86-intl.exe WindowsMedia11-KB939683-x86-CSY.exe windowsmedia11-kb944882-x86-intl.exe windowsmedia11-kb954067-x86-intl.exe WindowsMedia11-KB954154-x86-CSY.exe WindowsMedia11-KB959772-x86-CSY.exe windowsmedia11-kb970775-x86-intl.exe WindowsRightsManagementServicesSP2-KB917275-Client-CSY-x86.exe WindowsSearch-KB940157-XP-x86-csy.exe windowsupdateagent30-x86.exe WindowsXP-KB281981-x86-CSY.exe WindowsXP-KB817688-x86-CSY.exe windowsxp-kb892130-csy-x86.exe WindowsXP-KB895961-v4-x86-CSY.exe WindowsXP-KB897571-x86-CSY.exe WindowsXP-kb898461-x86-CSY.exe windowsxp-kb905474-csy-x86.exe WindowsXP-KB913296-x86-CSY.exe WindowsXP-KB922120-v6-x86-CSY.exe WindowsXP-KB923561-x86-CSY.exe WindowsXP-KB923789-x86-CSY.exe WindowsXP-KB926139-v2-x86-CSY.exe WindowsXP-KB926141-v2-x86-CSY.exe WindowsXP-KB932578-x86-CSY.exe WindowsXP-KB932716-v2-x86-CSY.exe WindowsXP-KB934401-x86-CSY.exe windowsxp-kb938464-v2-x86-csy.exe windowsxp-kb938464-x86-csy.exe WindowsXP-KB938759-x86-CSY.exe WindowsXP-KB940648-x86-CSY.exe WindowsXP-kb941569-x86-CSY.exe WindowsXP-KB942213-v2-x86-CSY.exe WindowsXP-KB942288-v3-x86.exe WindowsXP-KB943232-v2-x86-CSY.exe WindowsXP-kb943729-x86-CSY.exe WindowsXP-KB944043-v3-x86-CSY.exe WindowsXP-KB945060-v3-x86-CSY.exe WindowsXP-KB945184-x86-csy.exe WindowsXP-KB945436-x86-CSY.exe windowsxp-kb946648-x86-csy.exe WindowsXP-KB947460-v3-x86-CSY.exe WindowsXP-KB948046-v2-x86-CSY.exe WindowsXP-KB948101-v3-x86-CSY.exe WindowsXP-KB948277-x86-CSY.exe WindowsXP-KB948720-x86-CSY.exe WindowsXP-KB948877-v2-x86-csy.exe WindowsXP-KB949127-v2-x86-CSY.exe WindowsXP-KB949269-x86-CSY.exe WindowsXP-KB949764-x86-CSY.exe WindowsXP-KB949900-x86-CSY.exe WindowsXP-KB950234-x86-CSY.exe WindowsXP-KB950305-v2-x86-CSY.exe WindowsXP-KB950312-x86-CSY.exe WindowsXP-KB950582-x86-CSY.exe WindowsXP-KB950616-x86-CSY.exe WindowsXP-kb950760-x86-CSY.exe WindowsXP-KB950762-x86-CSY.exe WindowsXP-KB950820-x86-CSY.exe WindowsXP-KB950974-x86-CSY.exe WindowsXP-KB950982-x86-CSY.exe windowsxp-kb951066-x86-csy.exe WindowsXP-KB951072-v2-x86-CSY.exe WindowsXP-KB951126-x86-CSY.exe WindowsXP-KB951159-x86-CSY.exe WindowsXP-KB951163-x86-CSY.exe WindowsXP-KB951347-x86-CSY.exe windowsxp-kb951376-v2-x86-csy.exe WindowsXP-KB951531-v2-x86-CSY.exe WindowsXP-KB951618-v2-x86-CSY.exe WindowsXP-KB951624-x86-CSY.exe WindowsXP-KB951698-x86-CSY.exe WindowsXP-KB951709-x86-CSY.exe WindowsXP-KB951748-x86-CSY.exe WindowsXP-KB951822-v2-x86-CSY.exe WindowsXP-KB951830-x86-CSY.exe WindowsXP-KB951978-x86-CSY.exe WindowsXP-KB952004-x86-CSY.exe WindowsXP-kb952011-x86-CSY.exe WindowsXP-kb952013-x86-CSY.exe WindowsXP-KB952117-v2-x86-CSY.exe WindowsXP-KB952206-v2-x86-CSY.exe windowsxp-kb952287-x86-csy.exe WindowsXP-KB952595-v3-x86-CSY.exe WindowsXP-KB952909-v2-x86-CSY.exe WindowsXP-KB952954-x86-CSY.exe WindowsXP-KB953024-x86-CSY.exe WindowsXP-KB953028-x86-CSY.exe WindowsXP-KB953155-x86-CSY.exe WindowsXP-KB953356-x86-csy.exe WindowsXP-KB953609-x86-CSY.exe WindowsXP-KB953760-v2-x86-CSY.exe WindowsXP-KB953761-x86-CSY.exe WindowsXP-KB953930-x86-CSY.exe WindowsXP-KB954193-x86-CSY.exe windowsxp-kb954211-x86-csy.exe WindowsXP-KB954232-x86-CSY.exe WindowsXP-KB954434-x86-CSY.exe WindowsXP-KB954459-x86-CSY.exe windowsxp-kb954600-x86-csy.exe WindowsXP-KB954708-x86-CSY.exe WindowsXP-KB954879-x86-CSY.exe WindowsXP-KB954920-v2-x86-CSY.exe WindowsXP-KB955043-v2-x86-CSY.exe windowsxp-kb955069-x86-csy.exe WindowsXP-KB955109-x86-CSY.exe WindowsXP-KB955356-x86-CSY.exe WindowsXP-KB955417-x86-CSY.exe WindowsXP-KB955567-x86-CSY.exe WindowsXP-KB955576-x86-CSY.exe WindowsXP-KB955704-x86-CSY.exe WindowsXP-KB955830-x86-CSY.exe WindowsXP-KB955832-v2-x86-CSY.exe WindowsXP-KB955839-x86-CSY.exe WindowsXP-KB955843-v4-x86-CSY.exe WindowsXP-KB955988-x86-CSY.exe WindowsXP-KB956072-x86-CSY.exe WindowsXP-KB956391-x86-CSY.exe WindowsXP-KB956572-x86-CSY.exe WindowsXP-KB956588-x86-csy.exe WindowsXP-KB956625-x86-CSY.exe WindowsXP-KB956802-x86-CSY.exe windowsxp-kb956803-x86-csy.exe WindowsXP-KB956807-x86-CSY.exe WindowsXP-KB956841-x86-CSY.exe WindowsXP-KB957095-x86-CSY.exe windowsxp-kb957097-x86-csy.exe WindowsXP-KB957218-x86-CSY.exe WindowsXP-KB957495-x86-CSY.exe WindowsXP-KB957579-x86-CSY.exe WindowsXP-KB957931-x86-CSY.exe WindowsXP-KB958058-v2-x86-CSY.exe WindowsXP-KB958071-x86-CSY.exe WindowsXP-KB958106-x86-CSY.exe WindowsXP-KB958149-x86-CSY.exe windowsxp-kb958215-x86-csy.exe WindowsXP-KB958244-x86-CSY.exe WindowsXP-KB958282-v2-x86-CSY.exe WindowsXP-KB958347-x86-CSY.exe WindowsXP-KB958580-x86-CSY.exe windowsxp-kb958644-x86-csy.exe windowsxp-kb958687-x86-csy.exe WindowsXP-KB958690-x86-CSY.exe WindowsXP-KB958752-x86-CSY.exe WindowsXP-KB958817-x86-CSY.exe WindowsXP-KB958910-x86-CSY.exe WindowsXP-KB959085-x86-CSY.exe WindowsXP-KB959160-x86-CSY.exe WindowsXP-KB959206-x86-CSY.exe WindowsXP-KB959237-x86-CSY.exe WindowsXP-KB959267-x86-CSY.exe WindowsXP-KB959334-x86-CSY.exe WindowsXP-KB959426-x86-CSY.exe WindowsXP-KB959439-x86-CSY.exe WindowsXP-KB959465-x86-CSY.exe WindowsXP-KB959540-x86-CSY.exe WindowsXP-KB959554-x86-CSY.exe WindowsXP-KB959682-x86-CSY.exe WindowsXP-KB959765-x86-CSY.exe WindowsXP-KB959873-x86-CSY.exe WindowsXP-KB960064-x86-CSY.exe WindowsXP-KB960071-v2-x86-CSY.exe WindowsXP-KB960225-x86-CSY.exe WindowsXP-KB960253-x86-CSY.exe WindowsXP-KB960380-v2-x86-CSY.exe WindowsXP-KB960417-x86-CSY.exe WindowsXP-KB960519-x86-CSY.exe WindowsXP-KB960655-x86-CSY.exe WindowsXP-KB960680-v2-x86-CSY.exe windowsxp-kb960714-x86-csy.exe WindowsXP-kb960715-x86-CSY.exe WindowsXP-KB960803-x86-CSY.exe WindowsXP-KB960921-x86-CSY.exe WindowsXP-KB960970-x86-CSY.exe WindowsXP-KB961067-x86-CSY.exe WindowsXP-KB961118-x86-CSY.exe WindowsXP-KB961187-v2-x86-CSY.exe WindowsXP-KB961373-x86-CSY.exe WindowsXP-KB961451-v2-x86-CSY.exe WindowsXP-KB961501-x86-CSY.exe WindowsXP-KB961503-x86-CSY.exe WindowsXP-KB961605-x86-CSY.exe WindowsXP-KB961729-x86-CSY.exe WindowsXP-KB961742-x86-CSY.exe WindowsXP-KB961853-v2-x86-CSY.exe WindowsXP-KB963038-x86-CSY.exe WindowsXP-KB963093-x86-csy.exe WindowsXP-KB965220-x86-CSY.exe WindowsXP-KB967048-v2-x86-CSY.exe WindowsXP-KB967705-v2-x86-CSY.exe WindowsXP-KB967705-x86-CSY.exe WindowsXP-KB967715-x86-CSY.exe WindowsXP-KB967756-x86-csy.exe WindowsXP-KB967882-x86-CSY.exe WindowsXP-KB968358-x86-CSY.exe WindowsXP-KB968585-v2-x86-CSY.exe WindowsXP-KB968764-x86-CSY.exe WindowsXP-KB969111-x86-CSY.exe WindowsXP-KB969179-x86-CSY.exe WindowsXP-KB969238-x86-CSY.exe WindowsXP-KB969262-x86-CSY.exe WindowsXP-KB969356-v2-x86-CSY.exe WindowsXP-KB969395-x86-CSY.exe WindowsXP-KB969442-x86-CSY.exe WindowsXP-KB969557-x86-CSY.exe WindowsXP-KB969632-x86-CSY.exe WindowsXP-KB969744-x86-CSY.exe WindowsXP-KB969898-x86-CSY.exe WindowsXP-KB970048-x86-CSY.exe WindowsXP-KB970063-x86-CSY.exe WindowsXP-KB970084-x86-csy.exe WindowsXP-KB970238-x86-CSY.exe WindowsXP-KB970254-x86-CSY.exe WindowsXP-KB970326-x86-CSY.exe WindowsXP-KB970413-x86-CSY.exe WindowsXP-KB970483-x86-CSY.exe WindowsXP-KB970553-x86-CSY.exe WindowsXP-KB970613-x86-CSY.exe WindowsXP-KB970685-x86-CSY.exe WindowsXP-KB970922-x86-CSY.exe WindowsXP-KB971165-x86-CSY.exe WindowsXP-KB971234-x86-CSY.exe WindowsXP-KB971314-x86-CSY.exe WindowsXP-KB971421-x86-CSY.exe WindowsXP-KB971455-x86-CSY.exe WindowsXP-WindowsMedia-KB952069-v2-x86-CSY.exe wmp11-windowsxp-x86-CS-CZ.exe [Close] OnePiece, you can update Windows Movie Maker 2.1 to 2.6. This installer is for Vista, but all files working in XP :thumbsup_anim: Here is link: http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=d6ba5972-328e-4df7-8f9d-068fc0f80cfc
  16. Hi, can you please create CSY version or addon maker? http://download.microsoft.com/download/3/2/2/32206731-afd4-4eb5-a2aa-38d130b312dd/setup.msi
  17. I tried Addon AIO maker and i have 2 errors: After WMP11 error i got finish message, but there are only 2 folders - Archive_Files and OnePiece_WinXP_Post-SP3_UpdatePack_ENU and to 7z archive for nlite... Can you help me? My updates (EXE) list: Off-Topic Comment(Click to Show) WindowsXP-KB958347-x86-CSY directx_mar2009_redist.exe IE8-WindowsXP-KB968220-x86-CSY.exe IE8-WindowsXP-KB969497-x86-CSY.exe IE8-WindowsXP-KB969897-x86-CSY.exe IE8-WindowsXP-KB971180-x86-CSY.exe IE8-WindowsXP-KB971930-x86-CSY.exe IE8-WindowsXP-x86-CSY.exe rootsupd.exe Windows-KB909520-x86-CSY.exe windowsmedia11-kb928788-x86-intl.exe windowsmedia11-kb929399-v2-x86-intl.exe windowsmedia11-kb929773-x86-intl.exe windowsmedia11-kb932390-x86-intl.exe windowsmedia11-kb933547-x86-intl.exe windowsmedia11-kb935551-x86-intl.exe windowsmedia11-kb935552-x86-intl.exe windowsmedia11-kb936782-x86-csy.exe windowsmedia11-kb939209-x86-intl.exe WindowsMedia11-KB939683-x86-CSY.exe windowsmedia11-kb944882-x86-intl.exe windowsmedia11-kb954067-x86-intl.exe WindowsMedia11-KB954154-x86-CSY.exe WindowsMedia11-KB959772-x86-CSY.exe windowsmedia11-kb970775-x86-intl.exe windowsupdateagent30-x86.exe WindowsXP-KB281981-x86-CSY.exe WindowsXP-KB817688-x86-CSY.exe windowsxp-kb892130-enu-x86.exe WindowsXP-KB895961-v4-x86-CSY.exe WindowsXP-KB897571-x86-CSY.exe WindowsXP-kb898461-x86-CSY.exe windowsxp-kb905474-csy-x86.exe WindowsXP-KB922120-v6-x86-CSY.exe WindowsXP-KB923561-x86-CSY.exe WindowsXP-KB923789-x86-CSY.exe WindowsXP-KB932578-x86-CSY.exe WindowsXP-KB932716-v2-x86-CSY.exe WindowsXP-KB934401-x86-CSY.exe windowsxp-kb938464-v2-x86-csy.exe windowsxp-kb938464-x86-csy.exe WindowsXP-KB938759-x86-CSY.exe WindowsXP-KB940648-x86-CSY.exe WindowsXP-kb941569-x86-CSY.exe WindowsXP-KB942213-v2-x86-CSY.exe WindowsXP-KB943232-v2-x86-CSY.exe WindowsXP-kb943729-x86-CSY.exe WindowsXP-KB944043-v3-x86-CSY.exe WindowsXP-KB945060-v3-x86-CSY.exe WindowsXP-KB945184-x86-ENU.exe WindowsXP-KB945436-x86-CSY.exe windowsxp-kb946648-x86-csy.exe WindowsXP-KB947460-v3-x86-CSY.exe WindowsXP-KB948046-v2-x86-CSY.exe WindowsXP-KB948101-v3-x86-CSY.exe WindowsXP-KB948277-x86-CSY.exe WindowsXP-KB948720-x86-CSY.exe WindowsXP-KB948877-v2-x86-ENU.exe WindowsXP-KB949127-v2-x86-CSY.exe WindowsXP-KB949269-x86-CSY.exe WindowsXP-KB949764-x86-CSY.exe WindowsXP-KB949900-x86-CSY.exe WindowsXP-KB950234-x86-CSY.exe WindowsXP-KB950305-v2-x86-CSY.exe WindowsXP-KB950312-x86-CSY.exe WindowsXP-KB950582-x86-CSY.exe WindowsXP-KB950616-x86-CSY.exe WindowsXP-kb950760-x86-CSY.exe WindowsXP-KB950762-x86-CSY.exe WindowsXP-KB950820-x86-CSY.exe WindowsXP-KB950974-x86-CSY.exe WindowsXP-KB950982-x86-CSY.exe windowsxp-kb951066-x86-csy.exe WindowsXP-KB951072-v2-x86-CSY.exe WindowsXP-KB951126-x86-CSY.exe WindowsXP-KB951126-x86-ENU.exe WindowsXP-KB951159-x86-CSY.exe WindowsXP-KB951163-x86-CSY.exe WindowsXP-KB951347-x86-CSY.exe windowsxp-kb951376-v2-x86-csy.exe WindowsXP-KB951531-v2-x86-CSY.exe WindowsXP-KB951618-v2-x86-CSY.exe WindowsXP-KB951624-x86-CSY.exe WindowsXP-KB951698-x86-CSY.exe WindowsXP-KB951709-x86-CSY.exe WindowsXP-KB951748-x86-CSY.exe WindowsXP-KB951822-v2-x86-CSY.exe WindowsXP-KB951830-x86-CSY.exe WindowsXP-KB951978-x86-CSY.exe WindowsXP-KB952004-x86-CSY.exe WindowsXP-kb952011-x86-CSY.exe WindowsXP-kb952013-x86-CSY.exe WindowsXP-KB952117-v2-x86-CSY.exe WindowsXP-KB952206-v2-x86-CSY.exe windowsxp-kb952287-x86-csy.exe WindowsXP-KB952595-v3-x86-CSY.exe WindowsXP-KB952909-v2-x86-CSY.exe WindowsXP-KB952954-x86-CSY.exe WindowsXP-KB953024-x86-CSY.exe WindowsXP-KB953028-x86-CSY.exe WindowsXP-KB953155-x86-CSY.exe WindowsXP-KB953356-x86-ENU.exe WindowsXP-KB953609-x86-CSY.exe WindowsXP-KB953760-v2-x86-CSY.exe WindowsXP-KB953761-x86-CSY.exe WindowsXP-KB953930-x86-CSY.exe WindowsXP-KB954193-x86-CSY.exe windowsxp-kb954211-x86-csy.exe WindowsXP-KB954232-x86-CSY.exe WindowsXP-KB954434-x86-CSY.exe WindowsXP-KB954459-x86-CSY.exe windowsxp-kb954600-x86-csy.exe WindowsXP-KB954708-x86-CSY.exe WindowsXP-KB954879-x86-CSY.exe WindowsXP-KB954920-v2-x86-CSY.exe WindowsXP-KB955043-v2-x86-CSY.exe windowsxp-kb955069-x86-csy.exe WindowsXP-KB955109-x86-CSY.exe WindowsXP-KB955356-x86-CSY.exe WindowsXP-KB955417-x86-CSY.exe WindowsXP-KB955567-x86-CSY.exe WindowsXP-KB955576-x86-CSY.exe WindowsXP-KB955704-x86-CSY.exe WindowsXP-KB955830-x86-CSY.exe WindowsXP-KB955832-v2-x86-CSY.exe WindowsXP-KB955839-x86-CSY.exe WindowsXP-KB955843-v4-x86-CSY.exe WindowsXP-KB955988-x86-CSY.exe WindowsXP-KB956072-x86-CSY.exe WindowsXP-KB956391-x86-CSY.exe WindowsXP-KB956572-x86-CSY.exe WindowsXP-KB956588-x86-ENU.exe WindowsXP-KB956625-x86-CSY.exe WindowsXP-KB956802-x86-CSY.exe windowsxp-kb956803-x86-csy.exe WindowsXP-KB956807-x86-CSY.exe WindowsXP-KB956841-x86-CSY.exe WindowsXP-KB957095-x86-CSY.exe windowsxp-kb957097-x86-csy.exe WindowsXP-KB957218-x86-CSY.exe WindowsXP-KB957495-x86-CSY.exe WindowsXP-KB957579-x86-CSY.exe WindowsXP-KB957931-x86-CSY.exe WindowsXP-KB958058-v2-x86-CSY.exe WindowsXP-KB958071-x86-CSY.exe WindowsXP-KB958106-x86-CSY.exe WindowsXP-KB958149-x86-CSY.exe windowsxp-kb958215-x86-csy.exe WindowsXP-KB958244-x86-CSY.exe WindowsXP-KB958282-v2-x86-CSY.exe WindowsXP-KB958347-x86-CSY.exe WindowsXP-KB958580-x86-CSY.exe windowsxp-kb958644-x86-csy.exe windowsxp-kb958687-x86-csy.exe WindowsXP-KB958690-x86-CSY.exe WindowsXP-KB958752-x86-CSY.exe WindowsXP-KB958817-x86-CSY.exe WindowsXP-KB958910-x86-CSY.exe WindowsXP-KB959085-x86-CSY.exe WindowsXP-KB959160-x86-CSY.exe WindowsXP-KB959206-x86-CSY.exe WindowsXP-KB959237-x86-CSY.exe WindowsXP-KB959267-x86-CSY.exe WindowsXP-KB959334-x86-CSY.exe WindowsXP-KB959426-x86-CSY.exe WindowsXP-KB959439-x86-CSY.exe WindowsXP-KB959465-x86-CSY.exe WindowsXP-KB959540-x86-CSY.exe WindowsXP-KB959554-x86-CSY.exe WindowsXP-KB959682-x86-CSY.exe WindowsXP-KB959765-x86-CSY.exe WindowsXP-KB959873-x86-CSY.exe WindowsXP-KB960064-x86-CSY.exe WindowsXP-KB960071-v2-x86-CSY.exe WindowsXP-KB960225-x86-CSY.exe WindowsXP-KB960253-x86-CSY.exe WindowsXP-KB960380-v2-x86-CSY.exe WindowsXP-KB960417-x86-CSY.exe WindowsXP-KB960519-x86-CSY.exe WindowsXP-KB960655-x86-CSY.exe WindowsXP-KB960680-v2-x86-CSY.exe windowsxp-kb960714-x86-csy.exe WindowsXP-kb960715-x86-CSY.exe WindowsXP-KB960803-x86-CSY.exe WindowsXP-KB960921-x86-CSY.exe WindowsXP-KB960970-x86-CSY.exe WindowsXP-KB961067-x86-CSY.exe WindowsXP-KB961118-x86-CSY.exe WindowsXP-KB961187-v2-x86-CSY.exe WindowsXP-KB961373-x86-CSY.exe WindowsXP-KB961451-v2-x86-CSY.exe WindowsXP-KB961501-x86-CSY.exe WindowsXP-KB961503-x86-CSY.exe WindowsXP-KB961605-x86-CSY.exe WindowsXP-KB961729-x86-CSY.exe WindowsXP-KB961853-v2-x86-CSY.exe WindowsXP-KB963038-x86-CSY.exe WindowsXP-KB963093-x86-ENU.exe WindowsXP-KB965220-x86-CSY.exe WindowsXP-KB967048-v2-x86-CSY.exe WindowsXP-KB967705-v2-x86-CSY.exe WindowsXP-KB967705-x86-CSY.exe WindowsXP-KB967715-x86-CSY.exe WindowsXP-KB967756-x86-ENU.exe WindowsXP-KB967882-x86-CSY.exe WindowsXP-KB968358-x86-CSY.exe WindowsXP-KB968585-v2-x86-CSY.exe WindowsXP-KB968764-x86-CSY.exe WindowsXP-KB969111-x86-CSY.exe WindowsXP-KB969179-x86-CSY.exe WindowsXP-KB969238-x86-CSY.exe WindowsXP-KB969262-x86-CSY.exe WindowsXP-KB969356-v2-x86-CSY.exe WindowsXP-KB969395-x86-CSY.exe WindowsXP-KB969442-x86-CSY.exe WindowsXP-KB969557-x86-CSY.exe WindowsXP-KB969632-x86-CSY.exe WindowsXP-KB969744-x86-CSY.exe WindowsXP-KB969898-x86-CSY.exe WindowsXP-KB970048-x86-CSY.exe WindowsXP-KB970063-x86-CSY.exe WindowsXP-KB970084-x86-ENU.exe WindowsXP-KB970238-x86-CSY.exe WindowsXP-KB970254-x86-CSY.exe WindowsXP-KB970326-x86-CSY.exe WindowsXP-KB970413-x86-CSY.exe WindowsXP-KB970483-x86-CSY.exe WindowsXP-KB970553-x86-CSY.exe WindowsXP-KB970613-x86-CSY.exe WindowsXP-KB970685-x86-CSY.exe WindowsXP-KB970922-x86-CSY.exe WindowsXP-KB971165-x86-CSY.exe WindowsXP-KB971234-x86-CSY.exe WindowsXP-KB971314-x86-CSY.exe WindowsXP-KB971421-x86-CSY.exe WindowsXP-KB971455-x86-CSY.exe WindowsXP-WindowsMedia-KB952069-v2-x86-CSY.exe wmp11-windowsxp-x86-cs-cz.exe [Close]
  18. .NET AddOn Maker: http://www.msfn.org/board/index.php?showtopic=127790
  19. Hi, i want rename part of multiple filename. Expamle hfjdksha_6000_njdjsn, ksudjaks_6000_ksidna to hfjdksha_6100_njdjsn, ksudjaks_6100_ksidna Can somebody create for me CMD script?
×
×
  • Create New...