Connect to Remote Desktop as Console

April 23rd, 2010

Remote desktop connections remain active until the logged in user selects “Log Off” from the Start Menu. If a user simply closes the remote desktop window without logging off, the user will still remain logged on.

Unfortunately only up to two simultaneous Remote Desktop connections are allowed by default and active and disconnected sessions are calculated in this connection limit.

If a third simultaneous attempt is made to login to the server “The terminal server has exceeded the maximum number of allowed connections” error will be shown to the user, and they will be unable to complete the login process.

rdpmaximum

Fortunately, there is a way around this:
If you’re using Windows Server 2003/XP type command below:
mstsc /v:xx.xx.xx.xx /f –console into Start – Run replacing xx.xx.xx.xx with the remote IP

If you’re using Windows Vista/7 type command below:
mstsc /v:xx.xx.xx.xx /f /admin into Start – Run replacing xx.xx.xx.xx with the remote IP

Or you can also using the GUI, type in servername eg: SERVER01 /admin

This will connect you to the remote computer as console/admin.

Windows Vista Auto Logon

June 17th, 2009

Sometimes security aspect can make your life difficult. Why need type a password everytime you turn on your computer?

vista-logo

If you’re not sharing your computer with other users and no one else can access it, you can configure your Vista to login automatically, so you can turn on computer, leave for coffee and it will be ready to use when you back.

To do so, click on Start button and type “control userpasswords2″ or “netplwiz” in the search field, then uncheck the “Users must enter a user name and password…”, provide the username and password you want auto login to and restart computer. Your Vista will automatically log on with your account.

Online Radio Streaming on Your Playstation 2

February 19th, 2009

Just connect your Playstation 2 to your audio system, enjoy the music from Internet Radio. A homebrew programmer made software based of Simple Media Player (SMS) called Argon, which allows you to play multimedia files and also listen to online radio stations!

fmcb-main

argon-radio-stations

Read the rest of this entry »

Autonumber using Stored Procedure in SQL Server

January 16th, 2009

Today I want to share an SQL Server 2005 stored procedure to make autonumber. This stored procedure provide two numbering templates.

autonumber template #1: ..
autonumber template #2: <1DIGIT-YEAR><1DIGIT-MONTH>.

sqlserver-autonumber

Read the rest of this entry »

Facebook Chat Now Available for eBuddy Users

January 15th, 2009

Today I saw eBuddy website – a web and mobile messenger client, surprised by their new network support. It is now support facebook and ICQ network. The mobile version of eBuddy now also provide Facebook chat.

ebuddy-facebook

eBuddy CEO Jan-Joost Rueb confirmed that Facebook Chat is in a soft-launch period and that they will publicly announce the launch in the coming weeks. Rueb also noted that J2ME and Ajax versions will be updated soon.

Source: eBuddy

Gmail and Yahoo Mail Settings on Nokia Phones

January 14th, 2009

You can retrieve your Gmail messages with Nokia phone. You can choose either IMAP or POP3 protocol.

gmail-logo

IMAP offers several advantages over POP, you can store the email data on Gmail server so you can synchronize with multiple clients, it has better functionality in manipulating inbox, and the ability to manage email folders within single account.

POP is designed to offer simple offline operations, it downloads email to the phone, and generally removing it from the Gmail server, it doesn’t support email folders.

IMAP

Before you can use email on your phone you must enable IMAP in Gmail:

  1. Sign in to Gmail.
  2. Click Settings at the top of any Gmail page.
  3. Click Forwarding and POP/IMAP.
  4. Select Enable IMAP.
  5. Configure your IMAP client and click Save Changes.

Now configure your phone:

  1. Select ‘Messaging’ > ‘Options’ > ‘Settings’ > ‘E-mail’ > ‘Mailboxes’.
    If you have never set up email on your phone before, select ‘Yes’ to define a new mailbox. If you already have other mailboxes, select ‘Options’ and then ‘New mailbox’.
  2. Select ‘Start’ to begin the setup wizard.
  3. Select ‘IMAP4′ and then ‘Next’.
  4. Enter your full email address (including ‘@gmail.com’) as the email address and select ‘Next’. Google Apps users, enter your full address in the format ‘username@your_domain.com’.
  5. Enter ‘imap.gmail.com’ as the incoming mail server and select ‘Next’.
  6. Enter ’smtp.gmail.com’ as the outgoing mail server and select ‘Next’.
  7. Select the appropriate access point and then ‘Next’.
  8. Enter a descriptive name for the email account mailbox name.
  9. Once your mailbox is set up, select it from the email mailbox settings screen.
  10. Select ‘Connection settings’ > ‘Incoming e-mail’.
  11. Enter your address (including ‘@gmail.com’ or ‘@your_domain.com’) and password.
  12. Select ‘SSL/TLS’ for your security (ports) and define your port as ‘993′.
  13. Select ‘Back’.
  14. Select ‘Outgoing e-mail’.
  15. Enter your email address (including ‘@gmail.com’ or ‘@your_domain.com’) and password.
  16. Select ‘StartTLS’ for your security (ports) and define your port as ‘587′.
  17. Select ‘Back’ and change any other settings according to your preferences.

Read the rest of this entry »

Access Windows Shared Folder with Your Phone

January 11th, 2009

Got Wi-Fi equipped phone? Now you can access your windows folder from your phone, using this handy mobile application. SysSMB is an application that capable to access, copy and even share your files between Series 60 3rd edition mobile phone and computer. SysSMB turns the mobile phone into a highly efficient network accessible mobile computer.

symsmb

Screenshots
smb-main

smb-config

smb-network
Read the rest of this entry »

Compare Folder Script

December 31st, 2008

Today I created a script to compare the contents of two folder including its subfolders. It’s a simple solution if you don’t want to buy folder comparator software, but the script will not compare the content of the file, it only compares the file size and last modified date.

compare-script

Click read more to see the script
Read the rest of this entry »

Merry Christmas and Happy Holidays

December 25th, 2008

Fullyreloaded Blog wishes you and your family Merry Christmas.

merry-christmas

Thank you for being a loyal visitor. I’ve just changed my blog theme, I made it myself modified from the default theme, now the theme appearance will changed based on time. Hope you like it.

Happy Holidays! :)

Rename Multiple File with Regex Script

December 24th, 2008

Since Windows rename command doesn’t support regular expression, so today I made a VB Script to batch rename multiple files using regex method.

rename-script

What is Regular Expression?
Basically, a regular expression is a pattern describing a certain amount of text. Their name comes from the mathematical theory on which they are based. But we will not dig into that. Since most people including myself are lazy to type, you will usually find the name abbreviated to regex or regexp. I prefer regex, because it is easy to pronounce the plural “regexes”.

Click read more to see the script
Read the rest of this entry »