yendyjm Posted April 17, 2009 Posted April 17, 2009 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=417This 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" /VERYSILENTNotes: 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 underHKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\RealVNC_is1 and if run as Service:HKCU\Software\RealVNC3. on target machines: apply registry settings4. run vnc-4.0-x86_win32.exe /silent or /verysilentBe happy!Group Policy template to allow RealVNC 4 with Windows DefenderCLASS MACHINECATEGORY !!WindowsComponentsCATEGORY !!AntiSpywareExceptionPOLICY !!EnableRealVNC4#IF VERSION >= 5SUPPORTED !!WindowsXP#ENDIFKEYNAME "Software\Microsoft\Windows Defender\Threats\ThreatIDDefaultAction"EXPLAIN !!EnableRealVNC4_ExplainVALUENAME "7480"VALUEON NUMERIC 6VALUEOFF DELETEEND POLICYEND CATEGORYEND 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 Editor1. 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 Rating118To 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-XXXXXHere is our full installation script which also removes older versions:@echo offset INSTALLDIR=RealVNC428set APPMSI=RealVNC428set APPNAME=RealVNC428set APPTXT=RealVNC428set log=%TEMP%\Install_%appname%.logdel /f /q %log%>nul 2>&1echo. >%log%echo [%APPTXT%.CMD]>>%log%date /t >>%log%time /t >>%log%echo. >>%log%clsecho RealVNC Enterprise 4.2.8echo (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.exeif 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 /Qif exist "C:\Program Files\RealVNC\VNC4\winvnc4.exe" "C:\Program Files\RealVNC\VNC4\unins000.exe" /VERYSILENTclsecho RealVNC Enterprise 4.2.8echo (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 >NULclsecho RealVNC Enterprise 4.2.8echo (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 /Qclsecho RealVNC Enterprise 4.2.8echo (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-xxxxxAbove Entry Provided on 1/23/2007 by nzdude Rate It Rating118The 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.logregedit /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 -generatekeysThe 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 Quote
Rafadecai Posted April 18, 2009 Posted April 18, 2009 como dice ricktendo es mucho trabajo ademas te aconsejo ke pongas si puedes lo menos posibles programas en addon por nlite y los pongas por WPI mejor ya ke la mayoria de los addon de programas se instalan por SVCPACK en el T-13 de instalacion del Window aumentando asi el tiempo de instalacion de tu windows Xp Quote
ricktendo Posted April 18, 2009 Posted April 18, 2009 No, los mas programas que uno puede poner durante svcpack en mi opinion mejor, yo solo uso wpi para programas que requieren estar logeado para instalarlos Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.