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