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!!!


  • Page Views

  • More Text