Saturday, May 11, 2013

 Disable Right Click for blog
If you own a blog or a website then you always want to prevent other malicious bloggers from copying the content from your blog. You might have written an article with great efforts and lots of research and other just copy/paste it on their blog. To prevent such users from copying content from your blog i will show you Javascript Trick to disable right click on your blog. So lets get started.

How To Disable Right Click On Your Blog ?

 1. Got to your blogger Dashboard and then Click on Layout.
blogger widget

 2. Now Click on Add Gadget and select Html/Javascript.
blogger widget
 3. Now paste code given below in the pop up window.
<!--MBW Code-->
<script language='JavaScript1.2'>
function disableselect(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script>
<!--Code End http://mybloggersworld.blogspot.in>
 4. Save it and done. Now users will not be able to right click on your website.  5. If you like to disable mouse on your computer then check out tutorial given below.

Friday, May 10, 2013

Block Facebook On Your Computer In Few Simple Steps

Text:Shajeer#adminlovers

In this tutorial i will share with you guys an amazing programme or small little tool that will allow you block facebook on your computer easily in just few simple steps. So lets get started
 

How To Use Facebook Blocker ? 












 1. First download Facebook Blocker by Clicking Here
  2. Extract the file and right click on Facebook Blocker.exe and run it as administator (Important)
  3. Press 1 in order to  backup your host file to be on the safe side.












  4. Now Press 2 to block facebook
  5. Its time to check if facebook is blocked or not to do that Press 5
  6. Hope this help you if you have any question leave a comment below


Password Protect any folder without any Software..See how to do...??

Text:Shajeer#adminlovers
 
In this tutorial i will show you interesting and usefull trick to password protect folder without using any software using batch file programming. This trick will work on all windows platform (Win XP, Win 7). Follow below tutorial to learn this trick.
 
 
 
 
 
 

 

 

 

 

How To Lock Folder ?

   1. Open Notepad and Copy code given below into it.
cls
@ECHO OFF
title coolhacking-tricks.blogspot.com
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST MyFolder goto MDMyFolder
:CONFIRM
echo Are you sure to lock this 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 MyFolder "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock Your Secure Folder
set/p "pass=>"
if NOT %pass%== coolhacks goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" MyFolder
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDMyFolder
md MyFolder
echo MyFolder created successfully
goto End
:End

 2. Save the notepad file as lock.bat (.bat is must)
   3. Now double click on lock.bat and a new folder will be created with name MyFolder
   4. Copy all your data you want to protect in that New folder
   5. Now double click on lock.bat and when command promp appears Type Y and press enter.
   6. Now MyFolder will be hidden from you view, to access that folde double click on lock.bat
   7. It will ask for password enter your password and done. (Default password is coolhacks)
  • To change the password replace coolhacks with  new password in the above code

How To Further Secure ?

You might be thinking that anyone can access the password by opening that lock.bat file in Notepad or any other text editor. To make it more secure hide lock.bat in some secure location after following the above tutorial To access the secured file double click on lock.bat. I would suggest copying lock.bat file into Pendrive and copying it into your computer whenever you required to access to your protected files.

Add Your Gmail Account to Outlook 2010 Using IMAP

If you’re upgrading from Outlook 2003 to 2010, you might want to use IMAP with your Gmail account to synchronize mail across multiple machines. Using our guide, you will be able to start using it in no time.
Enable IMAP in Gmail
First log into your Gmail account and open the Settings panel. Click on the Forwarding and POP/IMAP tab and verify IMAP is enabled and save changes.
1imap
Next open Outlook 2010, click on the File tab to access the Backstage view. Click on Account Settings and Add and remove accounts or change existing connection settings.

In the Account Settings window click on the New button.

Enter in your name, email address, and password twice then click Next.

Outlook will configure the email server settings, the amount of time it takes will vary.

Provided everything goes correctly, the configuration will be successful and you can begin using your account.


Manually Configure IMAP Settings
If the above instructions don’t work, then we’ll need to manually configure the settings. Again, go into Auto Account Setup and select Manually configure server settings or additional server types and click Next.

Select Internet E-mail – Connect to POP or IMAP server to send and receive e-mail messages.

Now we need to manually enter in our settings similar to the following. Under the Server Information section verify the following.
  • Account Type: IMAP
  • Incoming mail server: imap.gmail.com
  • Outgoing mail server (SMTP): smtp.gmail.com

Note: If you have a Google Apps account make sure to put the full email address (user@yourdomain.com) in the Your Name and User Name fields.
Note: If you live outside of the US you might need to use imap.googlemail.com and smtp.googlemail.com
Next, we need to click on the More Settings button…

In the Internet E-mail Settings screen that pops up, click on the Outgoing Server tab, and check the box next to My outgoing server (SMTP) requires authentication. Also select the radio button next to Use same settings as my incoming mail server.

In the same window click on the Advanced tab and verify the following.
  • Incoming server: 993
  • Incoming server encrypted connection: SSL
  • Outgoing server encrypted connection TLS
  • Outgoing server: 587
Note: You will need to change the Outgoing server encrypted connection first, otherwise it will default back to port 25. Also, if TLS doesn’t work, we were able to successfully use Auto. Click OK when finished.

Now we want to test the settings, before continuing on…it’s just easier that way incase something was entered incorrectly. To make sure the settings are tested, check the box Test Account Settings by clicking the Next button.

If you’ve entered everything in correctly, both tasks will be completed successfully and you can close out of the window. and begin using your account via Outlook 2010.

You’ll get a final congratulations message you can close out of…

And begin using your account via Outlook 2010.

Conclusion
Using IMAP allows you to synchronize email across multiple machines and devices. The IMAP feature in Gmail is free to use, and this should get you started using it with Outlook 2010. If you’re still using 2007 or just upgraded to it,

Tricks to customize Windows 8 into a familiar system

Text: Shajeer#adminlovers

If you buy a new notebook or desktop PC today, you're likely to get it with Windows 8 preinstalled.

It's no secret that this new operating system is something different from Windows 7, Windows Vista and Windows XP, what with its tile-based app interface, the absence of a Start button, the new Charms menu, et al.

But there's no reason to fret.

Here are 10 tips that will help you to customize your OS into something you're more familiar with - and five other tricks that will help you get more out of this new system.


One-click shut down


Boot directly into desktop



By default, Windows 8 requires you to go through a password screen during the boot process before you can access its Start screen/desktop. But there is a wayto disable it.

When you are on the Start screen, type netplwiz and hit enter. Select your user account and follow the on-screen instructions to boot directly into thedesktop.

Similarly, by default, Windows 8 has a lockscreen enabled. This is not only annoying but also needless. To disable it, when you are on the desktop, press theWindows Key+R. Now type gpedit.msc in the Run window and hit enter.

This will open the Local Group Policy Editor window. From the folder tree on the left, navigate to Computer Configuration > Administrative Templates > ControlPanel > Personalization.

In the right panel, click on User Accounts > Personalization and then do not display the lock screen and select enabled.

If you do not have the Professional version, you will have to edit the registry.

Download this registry hack (see link below), unzip the file and double-click Disable Lockscreen.

God mode


In video games, God Mode is a cheat code that gives a player each and every possible power there is, as well as unlimited 'lives' making him invincible in thegame.

In Windows 8, this mode puts hundreds of OS settings at your fingertips in one single location.

To turn on God Mode, create a new folder on Desktop and name it GodMode.{ED7BA470-8 E54-465 E-825 C-99712043 E01C}.

Here, GodMode will be the name of the folder.

But you can call it anything else that you might want. Just ensure that the text following it, including the curly brackets, is exactly the same.

After that, the folder you created will include each and every configurable option in Windows 8. Use these powers responsibly.

Troubleshoot problems


One of the best features in Windows 8 is its highly effective Troubleshooting feature.

Now, whenever you face any problems with the OS, you don't necessarily need to search for an expert for help.

To access the Troubleshooting wizard, go to Control Panel > System and security > Find and fix problems.

In the screen that appears, click on View all to display all the automated packs in the OS.From here, users can troubleshoot over 20 commonly occurring problems including hardware issues, network connections, performance matters, setting up a printeror a TV tuner - and even overall system maintenance.

No need to call your techie friend ever again.

Modern start screen



The biggest grouse people have against Windows 8 is its new Start screen that's made up of large tiles.

This interface works wonderfully with touch, but many mouse users would rather get to the desktop straight away.

Of course, you can still access the desktop by clicking on its tile. But if you want to skip this extra step altogether, use Skip Metro Suit.

Run the app (no installation needed), and check the Skip Start Screen option, and you're done.After this, your PC will boot directly to your desktop.


But that's not all. You can also use this tool to disable other Windows 8 touch features that are triggered when you hover your mouse. Namely, the top-leftcorner that activates the App Switcher; the top edge that activates Drag to Close; the bottom-left corner that brings up your Start Screen; and the bottomright action that brings out the Charms bar

Adminlovers is here...

adminlovers logo












Its all about new technologies,softwares and hardware tips and tricks topics