Bienvenido! - Willkommen! - Welcome!

Bitácora Técnica de Tux&Cía., Santa Cruz de la Sierra, BO
Bitácora Central: Tux&Cía.
Bitácora de Información Avanzada: Tux&Cía.-Información
May the source be with you!

Wednesday, January 18, 2012

LLTD responder on Windows Server 2003

http://www.ehow.co.uk/list_6620360_alternatives-network-magic.html
 Installing Link Layer Topology Discovery (LLTD) on Windows Server 2003
In one of my previous articles – "Hide your Vista Computer on the Network" I wrote about what the network map is in Vista.
The network map on a computer running Windows Vista shows a graphical view of the computers and devices on your network and how they are connected by using the LLTD protocol. Thing is, that in order to display Windows Vista/2008 computers in the network map you need not do anything special. However, in order to make Windows XP computers appear in it, you will need to download and install the LLTD responder before it can be detected and appear on the network map. You can read more about this issue in my "Installing Link Layer Topology Discovery (LLTD) on Windows XP" article.
You can download the update from the following link:
All this is good and well, however there's one little catch. By default, you can’t run the LLTD responder update under Windows 2003. If you try to run the update you'll get this error:
However, you can try to force the update to run by performing these steps:
Note: Installing LLTD on Windows Server 2003 is NOT SUPPORTED by Microsoft, and has mixed results. Do NOT do it if you don't know what you're doing, and if something breaks, don't expect anyone to help you.
  1. After downloading the update, navigate to the folder where you've saved the file and right-click it. Select Properties.
  2. Next, in the Compatibility tab, click to select the Run This Program in Compatibility Mode for, and in the drop-down list select Windows XP. Click Ok.

  3. You can now install the update. You will not be prompted for a reboot, but you might want to reboot anyway.

  4. Next, you need to install the LLTD protocol in the network adapter's properties. Go to the downloaded file from step 1, and double-click on it as if to install it. Do NOT proceed with the installation, just leave the welcome screen open. Now go to your hard disk, and on the partition with the largest available free space you'll find a folder which's name is made of many letters and numbers (name varies, so there's no point in typing it here).

  5. Open the network interface's properties screen, and click install.

  6. In the network component type click Protocol and the click on the Add button.

  7. In the Select Protocol window click Have Disk, and browse to the folder from step 4. In that path, look for the file called rspndr.inf. Click Ok.
  8. In the Select Network Protocol window click the Link-Layer Topology Discovery Responder and click Ok. After a short installation, the new protocol should be available in the network interface's properties screen.

  9. To be safe, reboot the computer. It should now be visible on the network map.
As noted above, this procedure is not supported in any way. Use at your own risk.
=================================
Unattended Windows Vista tech. on Windows XP/2003
UPDATE (09/12/2007): Updated with the list of applications and components listed here:
Windows Vista components available for Windows XP.
With Microsoft releasing a number of applications developed for Windows Vista also available for Windows XP, I’ve put together a quick ‘how to’ guide for performing an unattended install for each application.
The approach I’ve taken here are direct command lines for installing these applications as you would do with a custom Windows CD or installing after Windows is installed on the computer. You could fit these installs to tools such as Microsoft SMS or Altiris Deployment Solution. If you deploy via Group Policy then you’ll have to take a different approach.
Here’s a breakdown for each application including the command line you need to use for an unattended or silent install. I have the Windows XP version executables listed, so for Windows Server 2003 you will have to adjust the file names.

Windows Internet Explorer 7

Internet Explorer can be installed during Windows Setup via CMDLINES.TXT. This will ensure that the latest version of IE is installed as soon as Windows setup is complete from a clean install. This command will stop the setup program from downloading updates during install and will display a dialog box with a progress bar. You can also add the /NO-DEFAULT switch to prevent setup from making Internet Explorer the default web browser. You can get a full list of command line switches by running IE7-WindowsXP-x86-enu.EXE /?.
START /WAIT IE7-WindowsXP-x86-enu.EXE /PASSIVE /NORESTART /UPDATE-NO 

Windows Media Player 11

This application is for Windows XP only, but then who needs WMP 11 on their Terminal Server? Unlike Internet Explorer, I’ve not been able to get Windows Media Player to install via CMDLINES.TXT. This command will install Windows Media Player without you seeing any install user interface during setup.
START /WAIT wmp11-windowsxp-x86-enu.exe /Q:A /C:"SETUP_WM.EXE /Q:A /R:N /P:#e" 

Windows Defender 1.1

This command line will install Windows Defender silently prevent Windows Defender from running after setup is complete.
START /WAIT MSIEXEC /I WindowsDefender.MSI ALLUSERS=TRUE REBOOT=SUPRESS CHECK_WGA=0 LAUNCHPROGRAM=0 LAUNCHSCAN=0 /QB- 

Microsoft .NET Framework 3.0

The .NET Framework 3.0 includes the .NET Framework 2.0 so you do not have to install that version separately. You will see a dialog with a progress bar during install.
START /WAIT dotnetfx3.EXE /PASSIVE /NORESTART 

Windows Desktop Search 3.01

The Windows Desktop Search setup application will accept the /PASSIVE switch so that a progress bar is displayed during setup, but the /QUIET switch is required to prevent setup from displaying an ‘Install Complete’ dialog once finished.
START /WAIT WindowsDesktopSearch-KB917013-V301-XP-x86-enu.exe /QUIET /NORESTART 

Remote Desktop Connection 6.0

Like Internet Explorer this application can be deployed via CMDLINES.TXT using a custom Windows setup source.
START /WAIT WindowsXP-KB925876-x86-ENU.EXE /PASSIVE /NORESTART 

Link Layer Topology Discovery (LLTD) Responder



The network map on a computer running Windows Vista shows a graphical view of the computers and devices on your network and how they are connected by using the LLTD protocol. The LLTD responder must be installed on a computer running Windows XP before it can be detected and appear on the network map.

START /WAIT WindowsXP-KB922120-v5-x86-ENU.exe /PASSIVE /NORESTART

Full List

I’ve updated this script with the applications listed here. Windows Installer 3.1 is a requirement for installing .NET Framework 3.5.
@ECHO OFF
REM Windows Installer 3.1
START /WAIT WindowsInstaller-KB893803-v2-x86.EXE /PASSIVE /NORESTART

REM Microsoft Core XML Services 6.0
START /WAIT MSIEXEC /I MSXML6.MSI ALLUSERS=TRUE REBOOT=SUPPRESS /QB

REM Internet Explorer 7
START /WAIT IE7-WindowsXP-x86-enu.EXE /PASSIVE /NORESTART /UPDATE-NO

REM Windows Media Player 11
START /WAIT wmp11-windowsxp-x86-enu.EXE /Q:A /C:"SETUP_WM.EXE /Q:A /R:N /P:#e"

REM Windows Defender 1.1
START /WAIT MSIEXEC /I WindowsDefender.MSI ALLUSERS=TRUE REBOOT=SUPRESS CHECK_WGA=0 LAUNCHPROGRAM=0 LAUNCHSCAN=0 /QB-

REM .NET Framework 3.5
START /WAIT dotnetfx35.EXE /PASSIVE /NORESTART

REM Windows Desktop Search 3.01
START /WAIT WindowsDesktopSearch-KB917013-V301-XP-x86-enu.EXE /QUIET /NORESTART

REM Remote Desktop Connection 6.0
START /WAIT WindowsXP-KB925876-x86-ENU.EXE /PASSIVE /NORESTART

REM LLTD Responder
START /WAIT WindowsXP-KB922120-v5-x86-ENU.EXE /PASSIVE /NORESTART

REM Image Mastering API
START /WAIT WindowsXP-KB932716-x86-ENU.EXE /PASSIVE /NORESTART

REM Microsoft Management Console 3.0
START /WAIT WindowsXP-KB907265-x86-ENU.EXE /PASSIVE /NORESTART

REM Windows Script 5.7
START /WAIT scriptenXP.exe /PASSIVE /NORESTART

REM Windows PowerShell 1.0
START /WAIT WindowsXP-KB926139-x86-ENU.EXE /PASSIVE /NORESTART

REM XPS Essentials Pack
START /WAIT MSIEXEC /I "XPSEP XP and Server 2003 32 bit.MSI" ALLUSERS=TRUE REBOOT=SUPRESS /QB

REM Peer Name Resolution Protocol (PNRP) version 2.0
START /WAIT WindowsXP-KB920342-x86-ENU.EXE /PASSIVE /NORESTART

REM Silverlight 1.0
START /WAIT SILVERLIGHT.EXE /Q

REM Network Diagnostic Tool
START /WAIT WindowsXP-KB914440-v12-x86-ENU.EXE /PASSIVE /NORESTART

REM WS-Management v1.1
START /WAIT WindowsXP-KB936059-x86-ENU.EXE /PASSIVE /NORESTART

REM Windows Rights Management Services Client with Service Pack 1
START /WAIT WindowsRightsManagementServicesSP1-KB839178-Client-ENU.EXE /PASSIVE /NORESTART

No comments: