Monday, August 26, 2013

Windows Remote Desktop


I can't log on to the remote computer

If you can see the logon screen of the remote computer but you can't log on, add yourself to the Remote Desktop Users Group or to any group with administrative rights on the remote computer (or ask the administrator of the remote computer to do this).

To add a user account to a group

  1. Open Microsoft Management Console by clicking the Start button Picture of the Start button, typing mmc into the search box, and then pressing Enter. Administrator permission required If you're prompted for an administrator password or confirmation, type the password or provide confirmation.
  2. In the left pane, click Local Users and Groups.

    If you don't see Local Users and Groups

    If you don't see Local Users and Groups, it's probably because that snap-in hasn't been added to Microsoft Management Console. Follow these steps to install it:
    1. In Microsoft Management Console, click the File menu, and then click Add/Remove Snap-in.
    2. In the Add or Remove Snap-ins dialog box, click Local Users and Groups, and then click Add.
    3. In the Choose Target Machine dialog box, click Local computer, and then click Finish.
    4. Click OK.
  3. Double-click the Groups folder.
  4. Right-click the group you want to add the user account to, and then click Add to Group.
  5. Click Add, and then type the name of the user account.
  6. Click Check Names, and then click OK.


For More Detail

http://windows.microsoft.com/en-sg/windows7/why-can-t-i-connect-using-remote-desktop-connection

Sunday, August 4, 2013

Auto reconnecting Cisco VPN client

As good as Cisco Systems is at developing cutting edge products, sometimes the products will leave you quite frustrated when certain basic feature are left out. Case in point is their VPN client software.
There is no GUI feature for automatically reconnecting to your V{PN server if your client happens to disconnect (which could be frequently). If you cleint PC is wireless or at a remote or branch office with flaky internet, diconnections could be frequent and annoying.
Here’s how you can confiogure your VPN client to automaticall reconnect to the VPN if it looses it’s connection:
Edit C:Program FilesCisco SystemsVPN Clientvpnclient.ini in Notepad.
The additions to this configuration file that enable autoreconnect are highlighted in bold.
Start of INI file
=====================================
[main] ClientLanguage=
AutoInitiationEnable=1 (Turns on the feature)
AutoInitiationRetryIntervalType=1 (1=Seconds, 2=minutes)
AutoInitiationRetryInterval=10 (Sets it to 10 second intervals)
AutoInitiationList=NetworkAll (Specifies what network to watch for auto-reconnect. This list can all the different VPN networks you connect to)
[NetworkAll] (This corresponds to your previous entry. Each network has to be in it’s own bracket with it’s specifics)
Network=0.0.0.0 (indicates any network)
Mask=0.0.0.0
ConnectionEntry=Lavallette Office (points to a connection profile named Lavallette Office.pcf in C:Program FilesCisco SystemsVPN ClientProfiles)
Connect=1
[GUI] DefaultConnectionEntry=Lavallette Office
=====================================
End of INI file