Jump to content

ricktendo

Members
  • Joined

  • Last visited

Everything posted by ricktendo

  1. You do have to slipstream sp3 before the updatepack
  2. Updated ITP only Off Topic: GOSH! this makes me miss my Laser Mouse 6000, best mouse I had so sad it died
  3. Congrats
  4. No importa, un addon de office va en contra las reglas del foro...hay muchos otros foros donde tu addon lo recibir
  5. SP3 w/o media center? I think so
  6. Tuve que deshabilitar mi foro, los addons los encontraras todos aquí (busque en Runtimes por jre y shockwave)
  7. No, creo que lo dejare así como esta Rio...yo iba a integrar el msp dentro del msi e instalarlo mediante svcpack pero eso quebraría el addon eliminador de silverlight, no puedo hacer un addon para eliminar otro addon svcpack
  8. Windows Internet Explorer 7 v1.1.0 Acerca: Reemplaza/sobrescribe IE8 en el UPL con IE7. Peso: 8.67 MB CRC-32: ac9f240f MD4: f07b8496e2680d0a0ae7878a5dd3bb2d MD5: c19dfbfd46e0ccc7484096086e26e48e SHA-1: 164ddc31dc97feb6465958a8fe81deb3084b1034
  9. My sidebar already comes with a gadget installer by Thomas Pleasance, if you did not use this sidebar but something somebody repacked I cannot help you
  10. El upl contiene IE8, si quieres al (menos seguro) IE7 necesitas utilizar el addon reemplazadora de IE7 que hasta mañana tendré tiempo de actualizar con KB978207 Actualizado UPL v1.3.0 Actualizado Silverlight v3.0.50106.0 (KB979202) Agregado KB974905_WM11 Agregado KB978207-IE8 Reemplaza KB976325-IE8
  11. ricktendo replied to NIM's post in a topic in Funny Lounge
    LMAO I thought he was dead for sure
  12. Tengo Windows 7 x86 y ese error me ha pasado, solo empezó a suceder hace dos meses...creo que tiene que ver con una actualización de Windows 7 causándolo porque este mes no he tenido ese error después de integrar y reinstalar windows 7 con el updatepack de George King Acaso, el foro lo tuve que remover y hoy salen unas actualizaciones criticas resolviendo vulnerabilidades serios...habrá una actualización el dia de hoy para el upl
  13. te0z es problema de Windows 7, si lo haces adentro de una maquina virtual de xp o en otro pc con xp no te suceder
  14. ricktendo replied to Legolash2o's post in a topic in OLD Threads
    Vista who? Voted
  15. Changing OnError to Never will not work, use a default key
  16. The original winrar installer will accept /s
  17. Actualizado shockwave y agregado mirrors para jre, 4eu y shockwave de rs y mega
  18. Updated post above
  19. Use the default key that windows adds when you hit skip http://www.cluberti.com/blog/2009/08/11/default-keys-for-vista-and-windows-7-deployment/ You can inject each of your images with a key and you wont have to insert/add a key to your .xml dism /image:\mount\ /Set-ProductKey:D4F6K-QK3RD-TMVMJ-BBMRX-3MBMV
  20. Subido a Mega
  21. Subido a Rapid
  22. I know... BTW do you want to help, I need help with this for Turkish version
  23. Kiki all this addon is, is a wmploc.dll that has been reshacked to look like wmp12, so yes slipstream wmp11 and replace wmploc.dl_ with this one
  24. You could manually replace syssetup.inf in the inf dir with the original from your CD or you could use the installer instead, it does not touch syssetup...only reason I had to was because it was the only way I could think of to execute the inf files
  25. Mount image DISM /Mount-Wim /WimFile:<dir>:\<path>\<filename>.wim /Index:<#> /MountDir:<dir>:\<path_to_empty_folder> Integrate MSU/CAB updates DISM /Add-Package /Image:<dir>:\<mounted_image_path> /PackagePath:<dir>:\<folder_with_updates> Integrate multiple drivers DISM /Add-Driver /Image:<dir>:\<mounted_image_path> /Driver:<dir>:\<folder_with_drivers> /recurse Integrate unsigned driver DISM /Add-Driver /Image:<dir>:\<mounted_image_path> /Driver:<dir>:\<folder_with_driver>\<inf_name>.inf /forceunsigned Remove driver DISM /Remove-Driver /Image:<dir>:\<mounted_image_path> /Driver:oem<#>.inf Turn off feature DISM /Disable-Feature /Image:<dir>:\<mounted_image_path> /FeatureName:<feature_name> Turn off features (multi) FOR %i IN (<featurename1> "<feature name 2>" <feature-name-3>) DO DISM /Disable-Feature /Image:<dir>:\<mounted_image_path> /FeatureName:%i Unhide packages (optional) install_wim_tweak /p <dir>:\<mounted_image_path> /m Remove package DISM /Remove-Package /Image:<dir>:\<mounted_image_path> /PackageName:Microsoft-Windows-<example>-Package~31bf3856ad364e35~x86~~6.1.7600.16385 Unmount image DISM /Unmount-Wim /MountDir:<dir>:\<mounted_image_path> /commit [/discard]