Tuesday, July 16, 2013

How to Enable a specific domain user to auto login to the server

This article describes how to configure Windows to automate the log on process with this feature, other users can start your computer and use the account that you establish to automatically log on. It’s easy because you don't have to type user account name or domain user name. Follow below meth.

Method 01
  • Start Regedt32.exe, and then locate the following registry subkey: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsNT\CurrentVersion\Winlogon
  • Enable Auto Logon reg add "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon" AutoAdminLogon make it 1 "1 True, 0 False" 

  • Set username for logon: reg add "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon"DefaultUserName "Domain User Name" 

  • Set domain if your pc is in domain: reg add "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon DefaultDomainName"Domain Name"

  • Set users password: reg add "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon" DefaultPassword
  • Quit Regedit
  • Click Start, click Shutdown, and then click OK to turn off your computer.
  • Restart your computer and Windows. You are now able to log on automatically.

Method 01
  • Open Group Policy Object Editor (Start-Run-gpedit.msc-click OK)
  • Expand Computer Configuration-Administrative Templates-System Logon
  • Change the "Assign a default domain at logon" to Enabled and enter your chosen domain



Sunday, March 17, 2013

How to Make Windows 7 Look Like Windows 8


Nowadays people are looking to upgrade their operating system into Windows 8. It's a very elegant Operating system. but some people still using Windows 7 and Windows XP due to different reasons. So if you are a existing Windows 7 or Windows XP user and if you are looking to upgrade Windows 7 to Windows 8 on your system but you're not sure whether you will like it or not, then this post is for you.

Windows 8 transformation pack theme package which help you in making Windows 7 look like Windows 8.  I have using this transformation pack on my system and I can say that transformation pack is very stable , safe and 100% working.   

Follow the step 

Step 01

Before you start the process create a restore point. in case if something goes wrong.

Download Windows 8 Transformation Pack
  • Download Windows 8 Skin Pack for Windows 7 (64-bit) 
  • Download Windows 8 Skin Pack for Windows 7 (64-bit)  
Make sure  what version of Windows that you are using.

Step 02

Once you downloaded the file, Install the pack into your computer

Step 03

Reboot the computer to see the Windows 8

Uninstall the Skin pack to get the old Windows 7 interface.

Enjoy!!


Thursday, March 14, 2013

How to activate root user in Ubuntu

In Ubuntu Linux Operating Systems, by default the root account password of Ubuntu Linux  is locked. so when you do "su root" you will get authentication failure error message below.The graphical user interface cannot be accessed with the sudo commands. so in this case you need to activate the root account.


$ su -
Password:
su: Authentication failure

To enable the root account and access directly via the console in root mode,  

Step 01

Open Terminal console in ubuntu

Step 02

Type following command
"sudo passwor root"

When you type your user password it will ask to Enter the new UNIX password for the root account. Type what ever Password that you want and hit enter.


Retype the password and hit Enter.  

















When its successful try to login to the root account using this command "su root" and type the password. Hit Enter and see the Miracle LOL!!!

Enjoy Guys!! 

Sunday, March 3, 2013

How to enable Windows hidden Administrator Account



In Windows 7 the administrator account is not active by default. You need to activate it manually if you want to use it. When you troubleshooting the system without having User Account control you may need to have administrator privileges otherwise you can't change any system settings or troubleshoot. In this case you may need to activate you hidden Windows administrator password.

Question HOW TO DO IT??  

Here We go then 

Step 01

1. In the Run box type Secpol.msc and press enter
2. Navigate to Local Policies > Security Options Accounts: Administrator Account Status 

 Figure 1.1




3. Double click on the Policy and do what you want Disable or Enable. 

Figure1.2

Step 02 (Using Command Prompt)

1.Run Cmd as administrator

2.To enable the Windows Administrator Password Account  type net user administrator /active:yes
3.To disable the Windows Administrator Password Account type net user administrator /active:no 


Figure 1.3
Enjoy!!

Saturday, February 23, 2013

How to test your computer's power supply


Sometimes your computer is not working properly and it can be hard to determine what is the problem. In this case if your computer won't turn at all or has one or more drive bays that won't work, you may have a problem with the power supply. so today I'm going to teach you how to test your power supply with purchasing a new PW. Here we go then

Problem Statement 


My computer powered off the other day on its own, and now when I push the power button, nothing happens. My assumption would naturally be that the power supply is done but is there any good way to test this before I buy a new one?

Solution

Step 01
Turn off your power switch and remove the plug from the power supply.

Step 02
Plug the power supply into the wall.

Step 03
Find the big 24-ish pin connector that connects to the motherboard.

Step 04
Connect the GREEN wire with the adjacent BLACK wire.




Step 05
The power supply's fan should start up. If it doesn't then it's dead.

Step 06
If the fan starts up, then it could be the motherboard that's dead. You can use a multimeter to check if there is power output from the power supply.

Enjoy!!

Tuesday, February 12, 2013

Unable to connect to your WiFi Router


Problem Statement

If you have Internet Broadband connection, whenever you are try to connect 192.168.1.1 it to configure you router settings it show your web browser can't connect to the 192.168.1.1. Here is the solution.



Step 01

Rest your Router

How to reset your router

Press the "rest" button on the router for a couple of second.
All the LED  Indicators will blink, release the reset button.


Step 02

Open Cmd Run as Administrator and type following commands
IPCONFIG  /FLUSHDNS-To Clear the DNS Cache
IPCONFIG  /RENEW- To renew the IP address

Step 03

Reset your web browser
Open internet Explorer > Advanced Tab>Click reset

   
Enjoy!!

Saturday, February 9, 2013

How to Lock a folder using a simple .Bat File


Most of the People are using third party application tools like "Folder Lock" to hide folders and files from unauthorized access. So today I'm going to show how to hide a folder or file using a .bat file . 
Solution:

Step 01

Create a Folder name call "Test".Open Notepad and Copy below code then save it with.bat extension .

cls
@ECHO OFF
title Folder Test 
if EXIST "HTG Locker" goto UNLOCK
if NOT EXIST test goto MDLOCKER
:CONFIRM
echo Are you sure you want to lock the folder(Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Test "HTG Locker"
attrib +h +s "HTG Locker"
echo Folder locked
goto End
:UNLOCK
echo Enter password to unlock folder
set/p "pass=>"
if NOT %pass%== Test123 goto FAIL 
attrib -h -s "HTG Locker"
ren "HTG Locker" Your Folder Name
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Test  
echo Test created successfully
goto End
:End

Step 02

Open the .bat file that you create. once you open file you will see a window like below


To lock the folder press "Y" and Enter. Now you can't see the Test folder that created.

Step 03

To unlock the folder open the .bat > type the password. Now you can see the folder that you created on the desktop.



Enjoy!!!


How to delete Autorun.inf using a command prompt



There are number of Software available in the world that deal with Viruses such as Auto.inf. If Auto run.inf running on your computer it will control your computer process, it will Block any USB Scanning Software Such as "USB Disk Security" you cannot even delete this file. It also restricts you from opening pen drives and hard drives on a double. So today I will show you how to delete this AUTORUN.INF file using Cmd its easy.  


Step 01
Run Command prompt as Administrator

Step  02
Go to the root Directory using "cd\" and type "attrib -h -r -s autorun.inf" press ENTER. That's mean it will search for autorun.inf in the hard disk. 




Step 03
If you find the Autorun.inf type del autorun.inf and press ENTER. This will delete autorun.inf file from the disk drive

Step 04
Restart your computer.

How To Select All Facebook Friends In Google Chrome



In the world every person who uses the internet has Facebook accounts and pages. Most of the web publishers are using Facebook pages to get the traffic and to make people to subscribe updates. So what they are doing is inviting your friends by the feature that Facebook has provided. But the problem is you need to select each and every friend to invite to the page manually. So in this case if there is thousand friend its very annoying to select each and every friend. But I have an easy way to solve this issue.

Follow the instructions  

Step 01

"Add the Facebook Invite them all for chrome" extension which lets you to select all your friend at once  in Google chrome.

Step 02

You just need to open the dialog box which lets you invite your Facebook friends and just click the button of the extension you added before it will select all of your friends.




So This will makes it easy to invite everyone for an event or to like a page.

How to control your PC using a android phone


Today i will show you how to control you PC using a Android Phone. It's pretty easy use. The Remote Control Collection is a collection of remotes, which you can control your PC using a Android phone.

Step 01



Remote control collection app is pretty simple to set and use.You'l have to do is just install the app on your phone and connect to Local WLAN or Wi-Fi after that install the server app on your PC and run it. The server will display an IP address.

Step 02

Now come to your phone and tap "Server" and then tap "Add Server after that enter the IP address of the server displayed on your PC.

Step 03

Then tap "Connect" 

Enjoy the app!
Download Link

Android Outlook App for Android Released



Microsoft today has released the official Outlook application for Android which provides direct access to the Outlook email account on Android devices. Setup is a breeze and should not take long all you need to enter is your Outlook email address and password, and accept a few pages of legalese before you can start browsing your account’s inbox or start sending out emails to contacts.


Beyond that new android app, the outlook team has developed a few important new features to the application. Gmail staples like one-click archiving, a plethora of keyboard shortcuts, and inbox customization are now available from the website. Lastly, it looks like the pace that the service picked up from its original launch wasn't limited to a couple of weeks, as the team has announced that there are now 25 million "active" users.
Download Link

How to do a Extended Disk Cleanup


Most of the people are using Windows built-in Disk Cleanup tool to clean unnecessary files from their hard disk. But some of the people are using third party tools to clean up their hard disk like CCleaner. So by this post today i will show you how to do a Disk Cleanup using Windows 7 

Step 01
Run Cmd as Administrator type %SystemRoot%\System32\Cmd.exe /c Cleanmgr /sageset:65535 & Cleanmgr /sagerun:65535 and run the query. 
Step 02
After you run the query it will prompt a Window saying Disk Cleanup Setting. Select the items that you want to remove and click OK.

 In Additional
 You can do this process by creating a .bat file. Open NOTEPAD type the code below query cd C:\windows\system32%SystemRoot%\System32\Cmd.exe /c Cleanmgr /sageset:65535 & Cleanmgr /sagerun:65535 and save it as with any name that you want but you must have to use the .bat extension. after you done this run the bat file.

How to remove write protection


Today i'm going to show how to customize drop shadow on the Windows 7 Task-Bar. its a very interesting utility and its easy to use.




To use this tool download the Task Bar Shadow and exact it. You'll get EXE Files Name called Top TB Shadow.exe and Bottom TB Shadow.exe. if you want use the shadow on the top of the task bar run "Top TB Shadow.exe" or if you want to it at bottom of the task bar run " TB Shadow.exe"
Using opation Menu you can adjust colour, opacity etc.. by right click on the shadow and selecting preferences

08 steps to speed up a slow Windows PC


Verily a computer getting slow down because of too many processes are running on the PC, low Memory and Disk Space available etc.. So Today I will show you how to over come this issue.







Step 01
Run Check Disk - Right Click on the Hard Disk > Properties > Tools> Check now
Step 02 - Remove Temporary Files- Run > %Temp% > Enter

Step 03- Optimize Your data Using Disk Defragmenter. Start > all Programs > Accessories > System Tools> Disk Defragmenter.
Step 04- Increase virtual memory 
1. Right click "My Computer" > Properties 
2. Click on the Advanced tab. Click Settings button under Performance. 
3. Click Change to reset virtual memory you want. 

Step 05Remove any spyware from your computer using Spybot Search & Destroy or from other 3rd party software 
Step 06-Repair Your registry error using 3rd party software such as CCleaner or Speedy Pro PC 

Step 07-Stop unwanted Start-Up programs using msconfig. Run > MSCONFIG 

Step 08 Restart your PC and check your hard drive for errors or there is a quickest way Check the errors. Type following chkdsk /r in the Run box and press ENTER.

  • Page Views

  • More Text