Sunday, April 11, 2010

How to browse blocked sites - A Trick

Kproxy Server Names

server5.kproxy.com
server14.kproxy.com
server13.kproxy.com
www.kproxy.com
server2.kproxy.com
kproxy.com
server1.kproxy.com
server8.kproxy.com
server10.kproxy.com
server7.kproxy.com
server16.kproxy.com
server6.kproxy.com
server15.kproxy.com

1. Go to Command Prompt : Type Ping <any of the server name from above>
E.g Ping server10.kproxy.com

as shown below

you will get one IP as Below 66.232.107.140

2. Go to Your Browser type in Address Bar 66.232.107.140 Then Enjoy







--
Mohamed Kaleel
www.portonovo.in

Saturday, February 20, 2010

How to configure Sip Account in Nokia N900

Go to Settings > Voip and IM accounts > New

Address : myusername@sip.yourvoipprovider.com
eg.
Address : kaleel@sip.rynga.com

Password: your password

Friday, April 24, 2009

MISSING FOLDER OPTIONS

1. Click start - run or press (windw + r)
2. Type " regedit"
3. select : HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows
    \CurrentVersion\policies\Explorer
4. You will see an item in the right side pane called  "NoFolderOptions" double click on the item
5. If you dnt find the "NoFolderOptions"  
6. Select : Edit - New - DWORD Value
7. Rename the new dword as "NoFolderOptions"
8. Set the DWORD Value as "0"
9. Restart your system.

Sunday, April 19, 2009

PC Suite not restoring my Contacts ....!

I backup my all N73 contents for software update and i have update the N73 Software,updated successfully, after that i am trying to restore all the contents except contacts everything is getting restored. i tried to restore contacts alone it is not getting restored,i got screwed up . I posted in the nokia forum also, i am not find a solution for that.

googling googling .... after 3 days i found the solution.......

finally i tried with following application(Nokia Contact Transfer), Oh God finally i got it.

http://nds1.nokia.com/files/support/global/phones/software/Nokia_Contact_Transfer.exe

PC Suite Version : 7.1.18.0
OS : Windows Vista
Mobile : Nokia N73

Thanks Mr. miksu Mobile Guru



--
Mohamed Kaleel
www.portonovo.in

Saturday, April 4, 2009

FOLLOW THIS STEPS TO MAKE YOUR SYSTEM FASTER

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control]

"WaitToKillServiceTimeout"="1000"

 

[HKEY_USERS\.DEFAULT\Control Panel\Desktop]

"AutoEndTasks"="1"

 

Application Hung Timeout value

[HKEY_CURRENT_USER\Control Panel\Desktop]

"HungAppTimeout"="1000"


Go to the 'Services' tab, find the 'Background Intelligent Transfer' service,

disable it, apply the changes & reboot.

 

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management\PrefetchParameters\EnablePrefetcher];
Set the value to either 0-Disable.


HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SessionManager\Memory Management\DisablePagingExecutive

Change the key's value to 1

DISABLE PREFETCH ON LOW MEMORY SYSTEMS

Prefetch is designed to speed up program launching by preloading programs into memory - not a good idea is memory is in short supply, as it can make programs hang. To disable prefetch:

1. Click 'Start' then 'Run'
2. Type in 'Regedit' then click 'Ok'
3. Navigate to 'HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Contr ol\Session Manager\Memory         Management\PrefetchParameters\'
4. Right-click on "EnablePrefetcher" and set the value to '0'
5. Reboot.

Thursday, April 2, 2009

CREATE A BATCH FILE TO TAKE DAILY BACKUP

Daily backup for a selected folder or file...
this batch file wil create a new folder with curent date automaticaly....

how to create a batch file...
1. open a notepad file
2. copy the entir contnt which 1 i hd givn below
3. save the file with extensn (.bat) ex..(new backup.bat)

@echo off
:: variables
set drive= E:\DAILY BACKUPS\MY DATA
set folder=%date:~0,2%-%date:~3,2%-%date:~6,4%
set backupcmd=xcopy /s /c /d /e /h /i /r /k /y

echo ######## PLEASE WAIT SYSTEM BACKINGUP SOME DATA########...
%backupcmd% "E:\calseadata" "%drive%\%FOLDER%"

echo !!!!!!!!BACKUP COMPLETED THANKS!!!!!!!!
@pause


1. RED color for (which folder u want to take backup)
2. GREEN color for (where u want to save the backup)