Showing posts with label triks. Show all posts
Showing posts with label triks. Show all posts

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

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