Friday, October 31, 2008
VNC versus Citrix ICA
Desktops in the data center: Thin is in
For companies considering thin-client desktops the range of choices has increased quite a bit in the last few years.
From presentation servers like Citrix to desktop blades, companies can now choose how thin to make their desktops.
One interesting approach I wrote about in a previous article is to use virtual machines in blade servers and the Remote Desktop Protocol (RDP) to deliver thin desktops from the data center. Using this approach you can commingle desktop and server images on the same pool of blade servers, alternating loads based on demand. You get to make the most of the existing servers, increase flexibility and simplify your recovery process since both desktops and servers can be recovered to the same machines in another data center.
One of the caveats of such an approach, at least until recently, was that RDP over the WAN has its own limitations. It is not necessarily the best option for delivery of real-time media such as IPTV and VoIP. Real-time media streams can suffer from jitter and latency-induced quality problems, especially if there are no QoS mechanisms in the network. Thus, when running streaming video in an RDP session you may experience slow frame rates and severe choppiness, for example.
At VMWorld 2008 I saw demos of an interesting workaround for this problem. At least one vendor of thin terminals, Wyse, was demonstrating a thin client with built-in SIP capabilities alongside the RDP. Essentially, the hardware client and the virtual desktop/server on the other end of the WAN use RDP for the keyboard, mouse and screen, and use Session Initiation Protocol (SIP) and Real-Time Protocol (RTP) for the voice or video stream.
By multiplexing the two protocols over IP and controlling the QoS, the thin client was able to stream video and audio without difficulty (at least in a demo setup). Extracting the video and audio and using RTP inside SIP to pass it to the client independently allows the client to prioritize the voice and video packets and control jitter and latency (what SIP/RTP does best).
This also introduces another intriguing possibility: If you look at SIP as a general-purpose SIP, it could conceivably be extended to carry RDP as an additional media stream within. Then, instead of using a proprietary approach to run SIP and RDP in parallel, the desktop session could be delivered with SIP alone carrying voice, video and interactive desktop (RTP and RDP) within a single session.
Clearly, thin desktop technology and operating system virtualization together are generating all kinds of innovation. While most enterprises will use thin desktops for specific applications and use cases (such as contact centers and single-application stations) rather than for all desktops in general, the thin desktop is getting more versatile and flexible.
Remotely Managing Remote Desktop
There's a tool to remotely manage remote desktop connections in Win2k, but I couldn't find any equivalent in XP. A little searching turned up Microsoft's Windows Server 2003 Administration Tools Pack which provides server management tools that allow administrators to remotely manage Windows 2000 Servers & Windows Server 2003 family servers. And indeed it does! The kit installs the following tools, which appear under the Start, Programs, Administrative Tools menu:
Active Directory Domains and Trusts
Active Directory Management
Active Directory Sites and Services
Active Directory Users and Computers
Authorization Manager
Cluster Administrator
Connection Manager Administration Kit
DHCP
Distributed File System
DNS
IP Address Management
Network Load Balancing Manager
Public Key Management
Remote Desktops
Remote Storage
Telephony
Terminal Server Licensing
Terminal Services Manager
UDDI Services
WINS
All this for the low, low price of nothing. The only part I care about is the Terminal Services Manager, which lets me terminate idle remote desktop sessions from target servers. Take that coworkers!
You could disconnect them from a command prompt with tsdiscon:
tsdiscon 1 /server:fabrikam
Or reset their session with rwinsta:
rwinsta 1 /server:fabrikam
If you wanted to be picky/choosy about Who you disconnect/reset, you can view session info with qwinsta:
qwinsta /server:fabrikam
A couple other command line tools are tsshutdn (shutdown/reboot machine) and tskill (kill process).
in cmd do:
quser /server:
logoff
query session /server:servername
find the inactive user and then:
logoff usernumber /server:servername
Windows 2000+ (includes Windows XP and 2003) have two command-line tools called qwinsta and rwinsta that can query and reset a remote session.
For example, let's say that I can't gain access to a server using Terminal Services because both sessions are used up. I can use another server to check the status of the first one. As long as the logged in user has administrative rights on the non-accessible machine I would run this:
qwinsta /server:12.12.12.12
Where 12.12.12.12 is the IP address or name of the non-accessible machine.
This will display something like this:
> qwinsta /server:12.12.12.12
SESSIONNAME USERNAME ID STATE TYPE DEVICE
console 0 Conn wdcon
rdp-tcp 65536 Listen rdpwd
rdp-tcp#470 Bob 1 Active rdpwd
rdp-tcp#471 Jane 3 Active rdpwd
Now I know that Bob and Jane are the two that are logged in. Since Jane left the office 20 minutes ago I know that she forgot to log off. I don't know where Bob is but I only need one session so I'll ignore him for now.
To disconnect Jane's session I would type this:
rwinsta /server:12.12.12.12 3
Notice the 3 which is the session ID I found from using qwinsta above.
Yet another option with W2K3 is a new feature that lets you connect to the desktop directly and gain a 3rd session.
If you're like me, you probably noticed that rwinsta and qwinsta seems like strange names. This came from the Citrix Metaframe days which Terminal Services has descended from. It stands for:
qwinsta = Query WINdows STAtion
rwinsta = Reset WINdows STAtion
One final comment. Microsoft has replaced these two tools with Query but since qwinsta and rwinsta is fully compatible with W2K WinXP and W2K3 I choose to use it instead.
Note: In Windows Server 2003, you can right-click on the root in Terminal Services Manager and Connect to another server. Also, if you are in an Active Directory domain and using Windows 2000 Server, you can Connect to All Servers and access remote servers from the GUI. But, in a Windows 2000 Server not connected to a domain.
RDP File Settings
The new Terminal Services client (version 2600 and newer, 5.1.2600.x) introduces quite a few new capabilities. A major client-side convenience is that connection settings can be saved in an RDP file which can then be easily edited, copied, and distributed.
Unfortunately, the parameters are not nearly as well documented as the ActiveX control parameters yet; this will presumably change before the .NET server release.
In the interim, I've put together a summary of information I have about the parameters contained in the files.
Which Terminal Services/Remote Desktop Client?
The newest ones, versions 5.1.2600.x and up. The client can be downloaded from the Remote Desktop Connection page - and despite the header, it is the client to use for connecting to either Terminal Services or XP Remote Desktop.
You can install it on any true 32-bit Windows OS except Windows XP and .NET - they already come with their own version.
Making an RDP File
You can create an RDP connection file using a text editor; there is nothing special about its structure to prevent this; in fact, the Terminal Services people appear to have been assiduous about making it simple and easy to use; the order in which parameters are placed doesn't even matter.
The simplest way to do it initially, though, is to run the mstsc client, configure basic settings you want, then choose "Save As..." on the General tab. You can then open the resulting file in Notepad and work with it.
RDP File Structure
The file structure is relatively simple. The standard file consists of several lines; each has parameter name, type, and value, separated by a ":". Any colons after the second one appear to be ignored (necessary so that file paths can be embedded). MSTSC also appears to silently ignore anything it cannot parse, so you can insert freeform comments into the file.
For example, here are two lines which tell MSTSC to establish a 1024x768 desktop when it connects:
desktopheight:i:768
desktopwidth:i:1024
The first element in each line is the parameter name. Immediately following it, after the first colon, is the parameter type; as far as I can tell, there are only 3 types of values -
RDP File Parameters
Below is a table listing all of the parameters I have encountered so far. I list the parameter name, type, an example value, and then include notes on usage where possible.
| Parameter | Value | Notes | |
| alternate shell | s | c:\winnt\system32\notepad.exe | Sets the shell to be used within the Terminal Services session. This can be used to set an alternate shell such as progman.exe; you can also use it to set the application which the user runs on logon to the Terminal Server. |
| audiomode | i | 2 | Known values:
0 - Bring to this computer 1 - Leave at remote computer 2 - Do not play |
| auto connect | i | 0 | 0 or 1 |
| autoreconnection enabled | i | 1 | Set to 1 to connect automatically when file is opened. |
| bitmapcachepersistenable | i | 1 | ? 1 maintains bitmap cache between sessions |
| compression | i | 1 | ? 1 means use extra compressions |
| connect to console | i | 1 | 0 - connect to a virtual session
1 - connect to the console session |
| desktopheight | i | 768 | height of session desktop in pixels |
| desktopwidth | i | width of session desktop in pixels | |
| disable cursor setting | i | 0 | ? |
| disable full window drag | i | 1 | set to 1, disables display of window contents while dragging in session |
| disable menu anims | i | 1 | set to 1, disables menu animations in session |
| disable themes | i | 1 | set to 1, disables use of themes in session |
| disable wallpaper | i | 1 | set to 1, disables display of wallpaper in session |
| displayconnectionbar | i | 1 | Set to 1, displays the connection bar in a fullscreen session |
| domain | s | HQ | domain name to use for logon |
| full address | s | 192.168.1.1:33389 | IP address/name of server (and optional alternate port) |
| keyboardhook | i | 2 | For applying standard Windows key combinations
0 - On the local computer 1 - On the remote computer 2 - In fullscreen mode only |
| maximizeshell | i | 0 | set to 1, maximizes any alternate shell used in the session |
| password 51 | b | (big long binary hash) | Ifyou choose to save the connection password, this will be a large binary hash value |
| port | i | 3389 | |
| redirectcomports | i | 1 | set to 1, redirects client COM ports in session (XP/.NET only) |
| redirectdrives | i | 1 | set to 1, redirects client drives in session (XP/.NET only) |
| redirectprinters | i | 1 | set to 1, redirects client printers in session |
| redirectsmartcards | i | 1 | set to 1, redirects client smart cards in session (XP/.NET only) |
| screen mode id | i | 1 | FullScreen vs. normal
0 - ? 1 - windowed 2 - fullscreen |
| server port | i | 3389 | You can specify the port separately from the "full address" parameter. Thanks to James from acmewidgets.com for finding this out! |
| session bpp | i | 16 | bit depth for session - 8, 16, or 24. Only 8 is valid for Windows 2000 Terminal Servers |
| shell working directory | s | c:\program files\microsoft office | Working directory if an alternate shell was specified. |
| smart sizing | i | Scale the client window display of desktop when resizing
0 or not present - Do not scale 1 - Scale (Takes extra resources to scale) | |
| username | s | administrator | name of user logging on |
| winposstr | s | 0,1,0,249,808,876 | ? Not sure about the details on this one. There are always 6 comma-separated values. I would guess that these are presets for position and "window mode" sizes - maximized versus sized. |
An Example RDP File
This is an example RDP connection file. It starts maximized for its desktop size (800x600); color depth is 16-bit; it will attempt to automatically start connecting to 192.168.1.12 on launch; and so on...
screen mode id:i:1 desktopwidth:i:800 desktopheight:i:600 session bpp:i:16 auto connect:i:1 full address:s:192.168.1.12 compression:i:1 keyboardhook:i:2 audiomode:i:2 redirectdrives:i:0 redirectprinters:i:0 redirectcomports:i:0 redirectsmartcards:i:0 displayconnectionbar:i:1 username:s:Administrator domain:s:AKA alternate shell:s: shell working directory:s: disable wallpaper:i:1 disable full window drag:i:1 disable menu anims:i:1 disable themes:i:1 bitmapcachepersistenable:i:1
Sunday, October 26, 2008
DSShutdown
DShutdown supports more than just standard shutdown options, there are options relating to "pure" shutdown (such as the "force after wait" option which causes a forced, but 'clear' shutdown). There are monitoring options that allow you to shutdown a PC after a particular application terminates (useful at the end of compressing several files). There are also options to shutdown a PC when Internet traffic reduces below a particular data-rate (useful to shutdown a PC when it has finished a large download).
It is also possible to intercept a shutdown request, initiated by the user or an application, and to then execute the shutdown request with selected options from DShutdown. (For example: to simultaneously shut down all Lan PCs when the server shuts down).
DShutdown doesn't force a power-off without logging off and saving settings. DShutdown instead provides a means to log-off, shutdown and safely power-off your PC. Administrators who use roaming profiles will appreciate the benefits of this feature.
Download http://dimio.altervista.org/stats/download.php?id=2
Flash Website Storage Settings panel
Website Storage Settings panel
Table of Contents
- Flash Player Help
- Settings Manager
- Display Settings
- Local Storage Settings
- Microphone Settings
- Camera Settings
- Privacy Settings
- Local Storage Pop-Up Question
- Privacy Pop-Up Question
- Security Pop-Up Question
- About Updating Adobe Flash Player

Note: The Settings Manager that you see above is not an image; it is the actual Settings Manager. Click the tabs to see different panels, and click the options in the panels to change your Adobe Flash Player settings.
The list of websites above is stored on your computer only so that you can view or change your privacy settings or local storage settings. Adobe has no access to this list, or to any of the information that the websites may have stored on your computer.
Use this panel to specify storage settings for any or all of the websites that have requested permission to use your camera or microphone or to store information on your computer.
The list of Visited Websites displays the following information for each website:
- The name of the website
- The amount of disk space the website has used to store information on your computer
- The maximum amount of disk space the website can use before requesting additional space
- The privacy setting you have specified for the website
In this panel, you can change storage settings for a website or delete the website so that, if you visit it again, it will use your global settings instead of any individual settings you may have set. You can also delete all sites, which erases any information that may have already been stored on your computer.
Note: To specify the amount of disk space that websites you haven't yet visited can use to store information on your computer, or to prevent websites you haven't yet visited from storing information on your computer, use the Global Storage Settings panel.
Change storage settings
To specify storage settings for a website, select the website in the Visited Websites list, and then change its storage settings as desired. The following list explains the storage options:
- If you don't want to let applications from this website save any information on your computer, and you don't want to be asked again, select Never Ask Again.
- If you want to let applications from this website save information on your computer, but you want to decide on a case-by-case basis for each application, move the slider to the far left. Each time an application wants to save information on your computer, you will see a question asking for more disk space.
- If you want to let applications from this website save as much information on your computer as they need to, move the slider to the far right.
- If you want to let applications from this website save information on your computer, but want to limit the amount of disk space they can use, move the slider to select 10 KB, 100 KB, 1 MB, or 10 MB. If an application needs more space than you have allotted, you will see a question asking for more disk space while the application is running.
Note: If an application from the selected website has already saved some information on your computer and you select a value that is lower than the amount of information already stored, Flash Player informs you that any information that has already been saved will be deleted.
Delete website
If you select a website and then click Delete Website, the website is removed from your list of visited websites. Any information the website may have stored on your computer is erased. (You will have the opportunity to confirm or cancel your selection.)
If you visit a website again after you have deleted it, the amount of disk space the website can use to store information on your computer is set to the amount specified in the Global Storage Settings panel. Also, if the website tries to access your camera or microphone and you haven't used the Always Deny option in the Global Privacy Settings panel, you will be asked whether to allow or deny such access.
Delete all sites
If you click Delete All Sites, all websites are removed from your list of visited websites. Any information a website may have stored on your computer is erased. (You will have the opportunity to confirm or cancel your selection.)
If you visit a website again after you have deleted it, the amount of disk space the website can use to store information on your computer is set to the amount specified in the Global Storage Settings panel. Also, if the website tries to access your camera or microphone and you haven't used the Always Deny option in the Global Privacy Settings panel, you will be asked whether to allow or deny such access.
Friday, October 24, 2008
The Next Evolution in Virtual Desktop Computing
For those who are not yet familiar with the growing webOS market, Stoneware's webOS is a virtual web desktop available anytime, from anywhere. It is a simple, less bloated, remotely accessible operating environment that runs in a browser and is independent of the underlying operating system. It delivers a rich desktop-like experience, coupled with access to all of an organization's business applications and services.Not to be confused with a published desktop from a Microsoft Terminal Server, Citrix Presentation Server, or a virtual desktop from VMWare,
webOS is completely built from web technology and based on AJAX. It is designed to give an organization's remote and mobile workforce access to a virtual web desktop whether they are in the office, working from home, out on the road, or in an offsite location. Because webOS is built on web technologies, a single server can scale to over a thousand users, requiring only an Internet browser (IE, Firefox, Opera, or Safari).
Combined with webNetwork technology, Stoneware's webOS is the most powerful webOS in the market today. Stoneware's webOS delivers all webNetwork services to the webOS desktop thus providing organizations with complete integration of their network applications, files, documents, databases, desktops, and directory services.
webOS is ready today for any organization that finds themselves delivering a mix of Windows, web, and hosted (SaaS) applications to a increasing mobile workforce.
Every day more and more enterprises are purchasing and developing web applications to run their business. Web applications are light, easy to manage, and require no client-side software. The question that you should be asking is - "why isn't your desktop operating environment the same?"
http://www.stonewarewebos.com/webos/products/webOS.html

webOS Technical Features
- Desktop operating environment is virtualized in a web browser
- Built on AJAX technology, supports Microsoft's IE, Firefox, Opera, and Apple's Safari browser
- Scales over a thousand users per a single server
- Leveraging webNetwork technology, all your organization's web, Windows, and hosted applications can be accessed through the unique webOS interfaces
- Perfect for thin client, labs, remote offices, hosted (SaaS) services, or mobile workforces
- Requires only a browser and an Internet connection
- Supports desktop icons, system tray, windowing, desktop customization
enable remote desktop on a windows xp machine - remotely
My first idea was to use remote desktop to access the computers from my machine. That worked fine, since I have local administrator access on each machine… but I’d have to interrupt each user’s work, log them off, make my firewall adjustments, then tell them it’s okay to log on now… assuming that I could even get into their machines remotely.
I needed a solution for users with remote desktop disabled. If your remote user has administrator access to their machine, have them click on Start - Run and type:
netsh firewall set service remoteadmin enable
netsh firewall set service remotedesktop enable
[note: remoteadmin = remote administration, while remotedesktop = remote assistance and remote desktop]
You can also enable remote desktop over the network via regedit if you have administrator rights to the remote machine:
- Run Regedit
- Select File –> Connect Network registry
- Enter the name of the remote computer and select Check Name
- At the bottom of the registry tree you will see 2 Hives appear Hkey_Local_Machine and
Hkey_Users (under the remote computer’s name) - Goto hklm\system\currentcontrolset\control\terminal server\FdenyTSConnections=1
- Change the FdenyTSConnections to 0
- Attempt to Re-Login
This worked okay, but I like to implement the most elegant solution possible.
So I fired up the command line on my local machine, and used psexec to configure the firewall service on the remote machine via netsh. The users never even knew I was working on their computer, which is fine by me.
To enable remote access to a machine via the command line, type:
psexec \\remotecomputername netsh firewall set service remoteadmin enable
psexec \\remotecomputername netsh firewall set service remotedesktop enable
Howto: extract files from a .msi file using the Windows command line
Every once in a while I need to extract the content of a .msi file in order to customize a deployment for a particular network environment. Sometimes initializing the .msi installer will temporarily extract the files into C:\Documents and Settings\
To extract files from a .msi file at the command line, type:
msiexec /a PathToMSIFile /qb TARGETDIR=DirectoryToExtractTo
For example, to extract files from f:\zenworks\zfdagent.msi into c:\zfd701 you would type:
msiexec /a f:\zenworks\zfdagent.msi /qb TARGETDIR=c:\zfd701
The destination directory does not need to exist prior to running this command.
Logon Scripts : Are they dead in the water?
For many years Windows logon scripts were a common method of customising the user profile in the enterprise. Their usefulness has been slowly eroded with the introduction of new features and changes to best practices. With the introduction of Group Policy Preferences, they could finally be dead in the water.
Drive and printer mappings are probably the most common function of the logon script. However, the introduction of Microsoft Distributed File System combined with Access Based Enumeration has meant that some organisations have reduced their user drive mappings to just two - a personal “Home” drive root share and a shared department root share. Printer Location Tracking allows users to find and map their own network printers, removing custom logic from the logon script and providing better support for travelling users and hot-desk workers.
The integration of Group Policy Preferences (GPP) into the Microsoft toolset further nails the coffin on logon scripts, providing a managed method of setting drive mappings, shortcuts and environment variables amongst others.
Even if you haven’t managed to consolidate your drive mappings, GPP has an option called item-level targeting that allows a single GPO to cope with multiple variations. This feature extends the usual scope of management filtering beyond the entire GPO, to the individual settings within it - or at least the GPP settings within it. The targeting can be based on a whole range of criteria (see later), but for the purpose of drive mappings, security group membership filtering is probably the most useful.
A single GPO could contain all the drive to share mappings in the organisation and an item-level filter on each mapping would mean that only members of the associated security group would actually get each mapping. This is very similar to the method often used in logon scripts, but without the scripting overhead.
So can we get rid of logon scripts completely? Probably not.
In an enterprise Windows environment, there are lots of ad-hoc scripts and programs that need to be called and a logon script is a useful option. Applications may need folders created in the user’s home drive, mailbox migrations may need a mail profile “switch” utility to run, laptops may need to client-side cache re-pointed to a new UNC path when a home drive is moved.
The monolithic logon scripts of the past do seem to be dead though. A lightweight script, often with no user interface is all that is needed in the modern environment.
GPP Item-level targeting options:
Free Utility to Determine Which of Your Windows Applications Require Administrative Rights to Run
BeyondTrust Application Rights Auditor is a free product that automatically identifies and reports the Windows applications that require users to have administrative rights.
Once those applications are identified, enterprises can develop informed plans to remove users’ administrative rights without any application downtime, creating a more secure and compliant environment, and lowering the cost of administering Windows computers.
Free registration is required in order to obtain a download link. They also have a data collection policy that can be opted out of.
Supported client operating systems are Windows 2000 SP4, Windows XP SP2, Windows Server 2003 SP1 and SP2, Windows Vista Gold and SP1, and Windows 2008. Both x86 and x64 versions are included in the download.
The reporting management console runs on Windows XP SP2, Windows Server 2003 SP1, Windows Vista, and Windows 2008. The reporting console is an MMC snap-in that requires MMC 3.0 and Microsoft .NET Framework 3.0 SP1. Both are available to download from the BeyondTrust Application Rights Auditor download page.
Download http://www.beyondtrust.com/products/FreeProducts.aspx
Taking Your Server's Pulse
Tuesday, October 21, 2008
Gadwin (Free Print Screen)
| ||||||||
| Screen captures can be used for many reasons. Use captured images from Gadwin PrintScreen to show off your product on the web. Enhance technical or sales documents and embed captures into presentations. Gadwin PrintScreen can help you capture and print or save computer screen data. | ||||||||
| On most Windows computers a full screen of data can be put on the clipboard by pressing the PrintScreen key. This sends whatever you see on screen to the clipboard, which you must then edit in a different graphics program to cut to the right size and image format. Here are some other reasons not to use the prefabricated PrintScreen function of Windows:
| ||||||||
CamStudio (ScreenCast)
Here are just a few ways you can use this software:
- You can use it to create demonstration videos for any software program
- Or how about creating a set of videos answering your most frequently asked questions?
- You can create video tutorials for school or college class
- You can use it to record a recurring problem with your computer so you can show technical support people
- You can use it to create video-based information products you can sell
- You can even use it to record new tricks and techniques you discover on your favourite software program, before you forget them
version 2.0
http://www.camstudio.org/CamStudio20.exe

TipCam (ScreenCast)
Record and share your screen in a video. Get started in just 3 easy steps...
Download TipCam:
- record videos of your screen
- share videos immediately (no post-processing)
- it's easy to use and FREE
Record videos to:
- help friends use their computer
- train your employees
- help people use your website
Sign up for an account and get:
- unlimited public video sharing
- 250MB private video sharing
- upload directly from TipCam
Screen 2 Exe (Free Screen Cast)
his screen recorder creates instant screen demos, tutorials and presentations with the highest compression ratio in the world. With SCREEN2EXE or SCREEN2SWF, the 1M bytes FREE (or free to try) screen recorder, you can:
- Record
- Record onscreen changes
- Record mouse movement and clicking.
- Record speech from microphone.
- High speed. Capture up to 30 frames per seconds with 'Max' mode!
[Sample shows how fast it is ]
- Edit
- Add text, image and annotation into your recorded video.
- Add zoom in, focus, fade in/out effects.
- Add delay or cut clips.
- Export
- EXE self-play file
- Flash movie (SWF file) and AVI file. *(SCREEN2SWF)
- Best quality and Scalable settings
The program allows you to set quality from lossless true color mode to lossy grayscale mode, which helps to get best trade-off between quality and file-size. [Quality Sample]
- The world's smallest movie files for fast sharing.
Based on advanced, special designed SSCV2 codec, it may have the highest compression ratio in the world compared to other screen recorders. A smaller file is very important when you want to share your demo via the Internet. If you find another screen recorder that does better than us in compression, on the same contents and quality, please contact us.
[Compare to other screen recorders]

Beside the above, it is fast and efficient, occupy less system resources. And the most importantly, SCREEN2EXE is Free!
Elluminate (Free vRoom for Training and Meeting)
http://www.elluminate.com/vroom/index.jsp
| WHAT YOU GET... Enjoy real-time collaboration with up to three participants using interactive features such as:
... And much more! | WHAT YOU CAN DO...
| WHAT YOU NEED...
|
Dimdim
Flexible.
The Dimdim Web Meeting service is available in open source and commercial enterprise editions capable of supporting thousands of attendees. And unlike all other web meeting solutions, Dimdim is available in both onsite (you install it on your servers) and hosted (we install it on ours) configurations.
http://dimdim.com/products/what_is_dimdim.html
Webhuddle (Free Web Meeting)

With the high cost of travel and shrinking budgets, most organizations today are already meeting virtually, or are considering it. But not all web conferencing solutions are created equal. We’d like to introduce you to an alternative way to communicate -- one that makes it easy to meet with the people you need to, when you need to -- all it takes is a web-enabled PC and something to say. You can try WebHuddle right now or see a demo.
Designed for ease of use, WebHuddle overcomes many of the common challenges faced by other virtual meeting applications on the market -- such as high-price to entry, compromised network security, large client downloads, and unreliability -- resulting in a frustrated IT department and less than satisfactory business results.
Improve your meetings today
Let WebHuddle host your meeting for you -- create an account and try it right now. WebHuddle is:
Cross-Platform: Use any Java-enabled computer (Linux, Windows, Unix, Mac) Learn more
Simple: No installation needed -- client runs in web browser Learn more
Small: Thin client (about 125 KB) -- loads quickly Learn more
Secure: All data encrypted by HTTPS protocol Learn more
Open Source: Leverage the many benefits of open source software, including value, transparency, and flexibility. If you find WebHuddle useful you may download it and freely install it on your own network.
Using WebHuddle, you have options -- and flexibility. Meetings can be conducted either in conjunction with an enterprise’s existing teleconferencing service, or utilizing WebHuddle’s optional voice over IP. WebHuddle also offers recording capabilities -- presentations can easily be recorded for playback over any web browser for those who missed the live meeting.
SoftPerfect Network Scanner
SoftPerfect Network Scanner is a free multi-threaded IP, NetBIOS and SNMP scanner with a modern interface and several advanced features. It is intended for both system administrators and general users who are interested in computer security. The program pings computers, scans for listening TCP ports and displays which types of resources are shared on the network (including system and hidden).
In addition, it allows you to mount shared folders as network drives, browse them using Windows Explorer, filter the results list and more. SoftPerfect Network Scanner can also check for a user-defined port and report back if one is open. It can also resolve host names and auto-detect your local and external IP range. It supports remote shutdown and Wake-On-LAN.
Key features
- Pings computers.
- Does not require administrative privileges.
- Detects hardware (MAC) addresses even across routers.
- Detects hidden shared folders (normally invisible on the network) and write accessible shares.
- Detects your internal and external IP addresses.
- Scans for listening TCP ports and SNMP services.
- Retrieves currently logged-on users.
- You can mount and explore network resources.
- Can launch external third party applications.
- Exports results to HTML, XML, CSV and TXT
- Supports Wake-On-LAN and remote shutdown.
- It is absolutely free, requires no installation, and does not contain any adware/spyware/malware.
Download http://www.softperfect.com/download/freeware/netscan.exe
Screenshots
The network scanner main window with some scan results.
NetWorx – Free Bandwidth Monitoring and Usage Reporting
The program allows you to monitor all your network connections or a specific network connection (such as Ethernet or PPP) only. The software also features a system of highly customizable visual and sound alerts. You can set it up to alert you when the network connection is down or when some suspicious activity, such as unusually heavy data flow, occurs. It can also automatically disconnect all dialup connections and shut down the system.The incoming and outgoing traffic is represented on a line chart and logged to a file, so that you can always view statistics about your daily, weekly and monthly bandwidth usage and dialup duration. The reports can be exported to a variety of formats, such as HTML, MS Word and Excel, for further analysis.
Key Features
- Clear graphic and/or numeric display.
- Usage reports with export to a variety of file formats, including Excel, MS Word and HTML.
- Permits close supervision of uploads and downloads.
- Works with dial-up, ISDN, cable modems, ADSL, Ethernet cards, and more.
- Includes network information & testing tools with advanced netstat that displays applications using your Internet connection.
- Scalable to your own modem download capabilities.
- Option to notify user or disconnect from the Internet automatically when network activity exceeds a certain level.
- Speed meter to accurately time downloads and report the average transfer rates.
- Absolutely free and does not contain any adware/spyware/malware.
With NetWorx You Can ...
- Find out and monitor how fast your Internet connection is.
- Find out and monitor how much Internet traffic you consume.
- Verify whether your ISP charges your Internet usage fairly.
- Detect a suspicious network activity on your computer.
- Perform simple network tests such as ping and trace route.
- Be notified about excessive Internet usage.
Screenshots
Right-click the NetWorx system tray icon (as shown on the picture) to bring up the program's menu. This menu lets you control the utility. Left-clicking the system tray icon displays the current NetWorx state (Windows 2000 and above only). NetWorx can also display the real time traffic data.
As well as accumulated daily, weekly and monthly totals, and lets you export that information to a number of formats.



