Jump to content

yendyjm

Members
  • Posts

    127
  • Joined

  • Last visited

Posts posted by yendyjm

  1. 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

  2. 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

  3. 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

  4. 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

  5. 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

×
×
  • Create New...