Free software downloads, free trouble shooting of windows and Linux platform.with free listening online radio...
Thursday, December 1, 2011
Wednesday, October 12, 2011
Downloads
1) Adobe pdf reader 10:-
- View, print, and search PDF files, including PDF Portfolios and PDF maps
- Author, store, and share documents, and share your screen, using Acrobat.com services
- Experience richer content and greater interactivity with native support for Adobe Flash technology
- Review documents using familiar commenting tools such as sticky notes, highlighting, lines, shapes, and stamps (When enabled by Acrobat Pro or Acrobat Pro Extended)
- Digitally sign PDF documents (When enabled by Acrobat Pro or Acrobat Pro Extended)

2) Foxit Reader:-
System Requirements
Operating Systems
- Microsoft Windows® XP Home, Professional, or Tablet PC Edition with Service Pack 2 or 3 (32-bit & 64-bit).
- Windows Vista® Home Basic, Home Premium, Business, Ultimate, or Enterprise with or without Service Pack 1 (32-bit & 64-bit).
- Windows 7 (32-bit & 64-bit).
Recommended Minimum Hardware for Better Performance
- 1.3 GHz or faster processor.
- 64 MB RAM (Recommended: 128 MB RAM or greater).
- 52 MB of available hard drive space.
- 800x600 screen resolution.

Tuesday, September 27, 2011
Download free wallpaper win 7
Download themes for windows 7
Windows 7 Editions types..
Add user groups from command prompt..windows platform
On Windows computer we can add users to a group from command line too. We can use net localgroup command for this.
net localgroup group_name UserLoginName /add
For example to add a user to administrators group from command line we can run the below command. In the below example I have taken username as John.
net localgroup administrators John /add
Few more examples:
To add a domain user to local users group from command line:
net localgroup users domainname\username /add
This command should be run when the computer is connected to the network. Otherwise you will get the below error.
H:\>net localgroup users domain\user /add
System error 1789 has occurred.
The trust relationship between this workstation and the primary domain failed.
To add a domain user to local administrator group from command line:
net localgroup administrators domainname\username /add
To add a user to remote desktop users group:
net localgroup “Remote Desktop Users” UserLoginName /add
To add a user to debugger users group:
net localgroup “Debugger users” UserLoginName /add
To add a user to Power users group:
net localgroup “Power users” UserLoginName /add
This command works on all editions of Windows OS i.e Windows 2000, Windows XP, Windows Server 2003, Windows Vista and Windows 7. In Vista and Windows 7, even if you run the above command from administrator login you may still get access denied error like below.
C:\> net localgroup administrators techblogger /add
System error 5 has occurred.
Access is denied.
The solution for this is to run the command from elevated administrator account.
When you run the ‘net localgroup’ command from elevated command prompt:
C:\>net localgroup administrators techblogger /add
The command completed successfully.
To list the users belonging to a particular group we can run the below command.
net localgroup group_name
For example to list all the users belonging to administrators group we need to run the below command.
net localgroup administrators
Enjoyyyyyyyyyyyyyy...