Jump to content

yendyjm

Members
  • Posts

    127
  • Joined

  • Last visited

Everything posted by yendyjm

  1. Info: Hay cinco versiones del K-Lite Codec Pack: Basic, Standard, Full, Mega y Corporate.
  2. gracias ricks es mas completo que la vez anterior ya sera aproximado a 3gb mi proximo dvd una pregunta como modifico o cual archivo es Cuando aparezca el mensaje, pulse cualquier tecla para iniciar la instalaci
  3. latino tema repetido aqui ya hay una consulta pasate por ahi y tu problema sera resuelto http://www.wincert.net/forum/index.php?showtopic=5558
  4. una pregunta ricks como se solucionaria el bugs de xp te explico que se me instale el teclado espa
  5. hola a todos mi peticion es la siguiente sobre un programa que utilizo mucho como es el RealVNC Enterprise y quisiera saber si se puede hacer un Addon que instale solo el server y no el visor y que me de la opcion de colocar la clave de registro y sea totalmente desatendido gogleando por ahi consegui una info muy importante soble el mismo aqui se lo coloco lo que consegui la web http://www.appdeploy.com/packages/detail.asp?id=417 This uses InnoSetup so you can do silent installs: Server only: vnc-4_1_1-x86_win32.exe /SILENT /COMPONENTS="!vncviewer, winvnc" /TASKS="installservice, launchservice" Server + Viewer: vnc-4_1_1-x86_win32.exe /SILENT /COMPONENTS="vncviewer, winvnc" /TASKS="!quicklaunchicon, desktopicon, installservice, launchservice" By using the ! symbol you can choose to not install a component as demonstrated above. This all works for V4.1.1, I haven't tried with V4.0. Also you can use /VERYSILENT if you don't want a progress dialogue. Uninstallation command line: "C:\Program Files\RealVNC\VNC4\unins000.exe" /VERYSILENT Notes: Shared "notes from the field" covering how to handle the automated installation of this software. Notes Notes (4 Entries) to install realVNC silent with presettings: 1. on clean machine: Normal install, select as desired. 2. Save registry key under HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\RealVNC_is1 and if run as Service: HKCU\Software\RealVNC 3. on target machines: apply registry settings 4. run vnc-4.0-x86_win32.exe /silent or /verysilent Be happy! Group Policy template to allow RealVNC 4 with Windows Defender CLASS MACHINE CATEGORY !!WindowsComponents CATEGORY !!AntiSpywareException POLICY !!EnableRealVNC4 #IF VERSION >= 5 SUPPORTED !!WindowsXP #ENDIF KEYNAME "Software\Microsoft\Windows Defender\Threats\ThreatIDDefaultAction" EXPLAIN !!EnableRealVNC4_Explain VALUENAME "7480" VALUEON NUMERIC 6 VALUEOFF DELETE END POLICY END CATEGORY END CATEGORY [strings] EnableRealVNC4="Always allow RealVNC4" EnableRealVNC4_Explain="Enable RealVNC4.\n\nIf you enable this policy setting, RealVNC4 is always allowed.\n\nIf you disable this policy settings, RealVNC4 is like spyware program.\n\nIf you do not configure this policy setting, user can make selection using Windows Defender GUI." WindowsXP="Microsoft Windows XP or later" WindowsComponents="Windows Components" AntiSpywareException="Windows Defender Exception" FYI: Some settings are missing in the Group Policy Object Editor. Administrative Templates can contain both true policies and preferences, but by default the Group Policy Object Editor exposes only true policies. To show all possible settings, you need to expose preferences in the Group Policy Object Editor. To expose preferences in the Group Policy Object Editor 1. Highlight the Administrative Templates node for which you want to see preferences. 2. On the View menu, click Filtering, and then clear the Only show policy settings that can be fully managed check box. Above Entry Provided on 10/29/2006 by jlapvetelainen Rate It Rating 118 To enter the serial number information (for Enterprise), first run the VNC installation, then run vncconfig.exe to enter your license key. "C:\Program Files\RealVNC\VNC4\vncconfig.exe" -noconsole -license XXXXX-XXXXX-XXXXX-XXXXX-XXXXX Here is our full installation script which also removes older versions: @echo off set INSTALLDIR=RealVNC428 set APPMSI=RealVNC428 set APPNAME=RealVNC428 set APPTXT=RealVNC428 set log=%TEMP%\Install_%appname%.log del /f /q %log%>nul 2>&1 echo. >%log% echo [%APPTXT%.CMD]>>%log% date /t >>%log% time /t >>%log% echo. >>%log% cls echo RealVNC Enterprise 4.2.8 echo (Uninstalling previous version) echo. echo Please do not close this window ... if exist "C:\Program Files\ORL\VNC\WinVNC.exe" net stop "VNC Server" if exist "C:\Program Files\ORL\VNC\WinVNC.exe" C:\build\utils\kill winvnc.exe if exist "C:\Program Files\ORL\VNC\WinVNC.exe" C:\WINNT\IsUninst.exe -y -a -f"C:\Program Files\ORL\VNC\Uninst.isu" if exist "C:\Program Files\ORL" rd "C:\Program Files\ORL" /S /Q if exist "C:\Program Files\RealVNC\VNC4\winvnc4.exe" "C:\Program Files\RealVNC\VNC4\unins000.exe" /VERYSILENT cls echo RealVNC Enterprise 4.2.8 echo (Copying installation files) echo. echo Please do not close this window ... if not exist %SYSTEMROOT%\Installer\%INSTALLDIR% md %SYSTEMROOT%\Installer\%INSTALLDIR% xcopy "\\installserver\patches$\00050 - RealVNC Enterprise 4.2.8 - Active\Revision 1.0\Single Files\*.*" C:\winnt\Installer\%INSTALLDIR%\ /Q /Y >NUL cls echo RealVNC Enterprise 4.2.8 echo (Installing RealVNC Enterprise 4.2.8) echo. echo Please do not close this window ... start /w %SYSTEMROOT%\Installer\%INSTALLDIR%\%APPMSI%.exe /VERYSILENT /COMPONENTS="vncviewer,winvnc" /TASKS="installservice,launchservice" rd "C:\Documents and Settings\All Users\Start Menu\Programs\RealVNC" /S /Q cls echo RealVNC Enterprise 4.2.8 echo (Configuring license and permissions) echo. echo Please do not close this window ... regedit /s %SYSTEMROOT%\Installer\%INSTALLDIR%\%APPMSI%.reg "c:\Program Files\RealVNC\VNC4\vncconfig.exe" -noconsole -license xxxxx-xxxxx-xxxxx-xxxxx-xxxxx Above Entry Provided on 1/23/2007 by nzdude Rate It Rating 118 The installer for RealVNC 4.4.3 (at least the Enterprise Edition for Windows) offers to install the Mirror Driver too, as a subcomponent of the VNC Server. To install this, you can either put an asterisk in front of winvnc in the components section so that winvnc and all subcomponents are installed, or you can install it explicitly. The component name is "WinVNC/VNCMirror", so: either: /COMPONENTS="WinVNC" or /COMPONENTS="WinVNC,WinVNC/VNCMirror" To create a log file, I used the /LOG=logfilepath switch. To stop creation of Start Menu icons, I used the /NOICONS switch. My new install script goes like this: start /w C:\winnt\installer\RealVNC\4.4.3\RealVNC443.exe /SP- /VERYSILENT /NORESTART /NOICONS /COMPONENTS="!vncviewer,*winvnc" /TASKS="installservice,launchservice" /LOG=C:\temp\RealVNC443.log regedit /s C:\winnt\installer\RealVNC\4.4.3\RealVNC443.reg "c:\Program Files\RealVNC\VNC4\vncconfig.exe" -license licensenumbergoeshere "c:\Program Files\RealVNC\VNC4\vncconfig.exe" -service -generatekeys The reg key is as follows: Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\RealVNC\WinVNC4] "SecurityTypes"="SSO,SSPI,RA2" "ReverseSecurityTypes"="RA2,None" "UserPasswdVerifier"="NtLogon" "QueryConnect"=dword:00000001 "QueryOnlyIfLoggedOn"=dword:00000001 "PortNumber"=dword:0000170c "IdleTimeout"=dword:00000e10 "HTTPPortNumber"=dword:000016a8 "LocalHost"=dword:00000000 "Hosts"="+," "AdvancedOptions"=dword:00000001 "AcceptKeyEvents"=dword:00000001 "AcceptPointerEvents"=dword:00000001 "AcceptCutText"=dword:00000001 "SendCutText"=dword:00000001 "DisableLocalInputs"=dword:00000000 "DisconnectClients"=dword:00000001 "AlwaysShared"=dword:00000000 "NeverShared"=dword:00000000 "DisconnectAction"="None" "RemoveWallpaper"=dword:00000001 "RemovePattern"=dword:00000001 "DisableAero"="1" "DisableEffects"=dword:00000001 "UpdateMethod"=dword:00000002 "PollConsoleWindows"=dword:00000001 "UseCaptureBlt"=dword:00000001 "UseHooks"=dword:00000001 "Protocol3.3"=dword:00000000 "Password"=hex: "NtLogon_Config"=hex: [deleted] "GuestAccess"="0" "ShareFiles"=dword:00000001
  6. gracias ricktendo64 por tu aporte ahora lo voy a integrar con lo demas addons tuyos
  7. no me lo tomo a mal matute_mat yo si pruebo los addons que me bajo antes de conocer este foro yo integraba addons de msfn o winaddons y a veces no funcionaba y yo utilizaba win xp en ingles para ser mas compatible la critica es bien recibida gracias
  8. un saludo a todos me gustaria a ver si no molesta que en los post de Addons & Silent Installers agregar una peque
  9. gracias luchorocha lo bajare y probare espero que todo funcione bien
  10. hola rick me podrias dar mas info de cada uno de los programas y para que sirven si no es mucho pedir el resource hacker lo conosco pero los demas no gracias
  11. sigues estos pasos 1 integra el ultimo updatepack de ricktendo64 2 bajate el isso pack 4.6 que es le mas estable lo uso yo esta es la pagina del creador ht**://isso-sys.blogspot.com/ a el isso pack modifica cerca de 300 archivos en el cd 3 utilizar winrar o 7zip para extraer los archivos .cab o .dl_ 4 bajate el resource hacker como te dijo Rafadecai para que modifique tu archivos despues de que uses el isso pack 5 bajate el CabPack 1.4 para comprimir los archivos a .cab o dl_ o bajate tambien el V'ISO b8.2.2 de ricktendo64 ht**://www.wincert.net/forum/index.php?showtopic=1547 que tambien es bueno pero en ingles espero haberte ayudado
  12. si ese es gracias luchorocha estare al pendiente cuando este listo
  13. Hola ricks podras crear o hacer un Addon de Skype cuando tengas un tiempo y que se instale en espa
  14. Saludos a todos mi duda es que no quiero el paquete de drivers que vienen con windows xp desde el a
  15. hola nito092 yo lo e integrado ayer y probado en tres laptops y ninguna me dio problemas con wifi a no ser quue no tengas el ultimo controlador trata de hacer un respaldo de los drivers con algun soft de backup ahora mismo lo estoy provando en pc de escritorio a ver como va tanto en wifi como red cableada espero que soluciones tu problema
  16. Muy bien Ricks lo bajare y lo probare eres lo maximo haciendo el updatepack lo mas pronto posible
  17. buenas rick una pregunta en un post anterior me respondiste y me salio todo bien ahora que ya salio el ie8 se puede integrar tambien ante la espera del nuevo UpdatePack latino que seguro estaras trabajando
  18. gracias ricks por tu pronta repuesta dejare el Microsoft Silverlight no habia leido para que era y instalare en el orden que me dices y lo probare te cuento no tendras addons theme para mce con la esfera de vista sin ningun tipo de software de tercero o algun link de donde podria descargar dicho theme
  19. Buenas a todos mi pregunta es la siguiente en el anterior post ponen los addons o update en el orden como dice Crossfighter pero cuando intento integrar el Ricks_wlmail9b14.0.8064.206_es.7z , Ricks_VistaMediaCenter2.3_es.7z no se instala que estare haciendo mal aqui el orden de instalacion Ricks_xpSp3esUpdatePack1.1.3.7z Ricks_SupresorWindowsSearch4.0_es.7z Ricks_SupresorSilverlight_es.7z Ricks_AdobeReader9.1_es.7z Ricks_jre1.6.0_12.7z Ricks_Shockwave11.0.3.472.7z MicrosoftRuntimeLibraries-1.4.5-Addon.7z Ricks_wlmail9b14.0.8064.206_es.7z Ricks_.NETFramework1.0sp3_es.7z Ricks_.NETFramework-4eu2.2_es.7z Ricks_wlm9b14.0.8064.206_es.7z Ricks_XP_a_MCE05_es.7z Ricks_VistaMediaCenter2.3_es.7z Ricks_MCExtras_es.7z Ricks_VistaBootScreenKB960496_es.7z Ricks_PunterosAero_es.7z Ricks_HoldEm_es.7z Ricks_SonidosUltimate_es.7z Ricks_SteadyState2.5_es.7z Ricks_cpl1.0_es.7z a se me olvidaba el windows que uso es el xp con sp3 MSDN integracion limpia como dice Ricks pero no se instala ninguno de los dos a ver si me dicen en que lo estoy haciendo mal y gracias
  20. gracias ricktendo64 buscare mas info y lo que logre lo cuelgo aqui
  21. Bueno mi pregunta es la siguiente el CDIMAGE es una herramienta muy especial y puede lograr esas tasas de compresi
  22. hola ricktendo64 si quieres te ayudo solo pasame el lang file de nLite y lo traduzco
×
×
  • Create New...