Jump to content

George King

Members
  • Posts

    470
  • Joined

  • Last visited

  • Days Won

    18

Everything posted by George King

  1. Your app sound cool, i will try it today... But im confused about this: 12. Integrate DreamScenes. (Done) 15. Integrate DirectX 10 (Done) NEW 16. Integrate Path Copy (Done) NEW 17. Integrate AeroSnap (Done) NEW
  2. Hi OnePiece, i´ve found some unoficial updates on WHS installation DVD which is based on Windows Server 2003 Small business. Here are links: KB936598-v4 KB937108-v3 KB937153-V2 + KB937253-V2 these file are old... P.S. And what about WMP11 integration? Can you add support for it into your tool? EDIT: Found KB943493
  3. Hmm, not working, but i dont know why... And here is addon on which i
  4. Ok, i will try it. But what does mean Cntx_VPCNetS2.
  5. Hi, how i can install following INF? ; ---------------------------------------------------------------------- ; File: VMNetSrv.INF ; ; Contains: Virtual PC Network Services INF file ; ; Copyright: (c) 2001-2003, Microsoft Corporation. All rights reserved. ; ---------------------------------------------------------------------- [Version] Signature = "$Windows NT$" Class = NetService ClassGUID = {4D36E974-E325-11CE-BFC1-08002BE10318} Provider = %Microsoft% CatalogFile= VMNetSrv.cat DriverVer = 01/16/2008,2.6.623.0 [SourceDisksNames] 1=%DiskDescription%,"",, [SourceDisksFiles] VMNetSrv.dll=1 VMNetSrv.sys=1 [Manufacturer] %Microsoft% = MSFT, NTamd64 [ControlFlags] [MSFT] %VMNetSrv_Desc% = VMNetSrv.ndi, Cntx_VPCNetS2 [MSFT.NTamd64] %VMNetSrv_Desc% = VMNetSrv.ndi, Cntx_VPCNetS2 [DestinationDirs] DefaultDestDir = 12 VMNetSrv.CopyFiles.Init = 11 ; %windir%\System32 VMNetSrv.CopyFiles.Sys = 12 ; %windir%\System32\drivers ; ---------------------------------------------------------------------- ; Windows 2000/XP Installation ; ---------------------------------------------------------------------- [VMNetSrv.ndi] AddReg = VMNetSrv.ndi.AddReg, VMNetSrv.AddReg Characteristics = 0x4490 ; NCF_NDIS_PROTOCOL | NCF_HAS_UI | NCF_FILTER | NCF_NO_SERVICE CopyFiles = VMNetSrv.CopyFiles.Init, VMNetSrv.CopyFiles.Sys [VMNetSrv.CopyFiles.Init] VMNetSrv.dll,,,2 [VMNetSrv.CopyFiles.Sys] VMNetSrv.sys,,,2 [InfSourcePathInfo] OriginalInfSourcePath = %1% [VMNetSrv.ndi.AddReg] HKR, Ndi, HelpText, , %VMNetSrv_HELP% HKR, Ndi, ClsID, , {b7481e0b-75b7-4b60-a068-cc11092be345} HKR, Ndi, ComponentDll, , VMNetSrv.dll HKR, Ndi, FilterClass, , failover HKR, Ndi, FilterDeviceInfId, , Cntx_VPCNetS2_MP HKR, Ndi, Service, , VPCNetS2 HKR, Ndi\Interfaces, UpperRange, , noupper HKR, Ndi\Interfaces, LowerRange, , nolower HKR, Ndi\Interfaces, FilterMediaTypes, , "ethernet, nolower" [VMNetSrv.AddReg] ;None [VMNetSrv.ndi.Services] AddService = VPCNetS2, 0, VMNetSrv.AddService, VMNetSrv.AddEventLog [VMNetSrv.AddService] DisplayName = %VMNetSrv_Desc% ServiceType = 1 ;SERVICE_KERNEL_DRIVER StartType = 3 ;SERVICE_DEMAND_START ErrorControl = 1 ;SERVICE_ERROR_NORMAL ServiceBinary = %12%\VMNetSrv.sys LoadOrderGroup = PNP_TDI AddReg = VMNetSrv.AddService.AddReg [VMNetSrv.AddService.AddReg] ;None [VMNetSrv.AddEventLog] AddReg = VMNetSrv.AddEventLog.AddReg [VMNetSrv.AddEventLog.AddReg] HKR, ,EventMessageFile, 0x00020000, "%%SystemRoot%%\System32\netevent.dll;%%SystemRoot%%\System32\drivers\VMNetSrv.sys" HKR, ,TypesSupported, 0x00010001, 7 ; ---------------------------------------------------------------------- ; Windows 2000/XP Removal ; ---------------------------------------------------------------------- [VMNetSrv.ndi.Remove] DelFiles = VMNetSrv.CopyFiles.Init, VMNetSrv.CopyFiles.Sys [VMNetSrv.ndi.Remove.Services] DelService = VPCNetS2, 0x00000204 ; ---------------------------------------------------------------------- ; Strings ; ---------------------------------------------------------------------- [Strings] Microsoft = "Microsoft" DiskDescription = "Virtual Machine Network Services Disk" VMNetSrv_Desc = "Virtual Machine Network Services" VMNetSrv_HELP = "Provides networking support for Microsoft virtual machines."
  6. Can you help me? I think this can work, but it no. How i can use CMD /C like this? CMD /C DEL /F /S /Q "WinDir%\Setup\Updates" in this (replacing ++++): REG ADD %ROE%\999 /ve /d "Cleaning up..." /f >nul REG ADD %ROE%\999 /v CMD /d "++++" /f >nul I don
  7. Wow, it working :thumbsup_anim: . Many thanks. Can you specify for me this code? I´m not sure if understand it... set /a ROENUM=!NUM!*5 If !ROENUM! LSS 10 (set "ROESTR=00!ROENUM!") ELSE ( If !ROENUM! LSS 100 (set "ROESTR=0!ROENUM!") ELSE ( set "ROESTR=!ROENUM!"))
  8. Not working, look: The script will exit without REG UNLOAD etc and FOR was run only for one time, it must run 3 times (in folder are 3 updates) Any ideas?
  9. Hi, i´m working on new Windows 7 Update Pack Tool and i wrote this: echo Adding registry weaks to enable RunOnceEx for install Special Updates... REG LOAD HKLM\Slipstream "%WIM%\Windows\System32\Config\Software" >nul SET ROE=HKLM\Slipstream\Microsoft\Windows\CurrentVersion\RunOnceEx REG ADD %ROE% /v TITLE /d "Installing updates" /f >nul REG ADD %ROE% /v Flags /t REG_DWORD /d "00000014" /f >nul REG ADD %ROE% /d "%WinDir%\System32\rundll32.exe %WinDir%\System32\iernonce.dll,RunOnceExProcess" /f >nul cd SpecialUpdates set /a NUM=0 if not exist "%WIM%\Windows\Setup\Updates" mkdir "%WIM%\Windows\Setup\Updates" >nul FOR %%f IN ("*.*") DO ( copy /Y "%%f" "%WIM%\Windows\Setup\Updates" REG ADD %ROE%\00%NUM% /ve /d "%%f" /f REG ADD %ROE%\00%NUM% /v %%f /d "%WinDir%\Setup\Updates\%%f /q" /f set /a NUM+=1 ) echo %NUM% pause REG UNLOAD HKLM\Slipstream cd.. Writing into registry works, but under HKLM\Slipstream\Microsoft\Windows\CurrentVersion\RunOnceEx is only one key 000 i´m used set /a NUM=0 and set /a NUM+=1 in FOR, but i don´t know why REG ADD %ROE%\00%NUM% /ve /d "%%f" /f not working if i make echo %NUM% it give me 3 (in folder are 3 Updates). Don´t know why script write only 000 key. I think it must write key 000, 001, 002
  10. Can someone write here list of KBs which are for Internet Explorer 6 from Windows XP SP3?
  11. Hi OnePiece, where i can get original installer for KB975791? Thanks
  12. Seems good, but ccl0 have true. And i like AVIs with moving "..."
×
×
  • Create New...