Monday, November 21, 2011
Remo Repair PowerPoint 1.0
Photomatix Pro 4.1.4
Sunday, November 6, 2011
How do I change my name in Facebook?
To edit the name listed on your account:
Review our name standards
Go to your Account Settings page
Click on the Name section, type in your name, and save your changes
Note:
To help make sure that everyone uses their real name, we limit the number of times you can change your name.
If your name is changed by a Facebook representative, this change is considered final. This means you will no longer have the option to manually change your name.
If you weren't able to change your name, we may be able to help.
Review our name standards
Go to your Account Settings page
Click on the Name section, type in your name, and save your changes
Note:
To help make sure that everyone uses their real name, we limit the number of times you can change your name.
If your name is changed by a Facebook representative, this change is considered final. This means you will no longer have the option to manually change your name.
If you weren't able to change your name, we may be able to help.
Wednesday, September 28, 2011
HOW TO CHANGE LOGON SCREEN IN WINDOWS XP
software
============
resource hacker
edit file
============
c:\windows\system32\logonui.exe
copy & edit in resource hacker
preparation for editing
=======================
design 5x7 size *.bmp photo (which you want to replace
welcome screen)
1) open resource hacker
2) click file menu & open logonui.exe
3) click plus point(+) in bitmap
4) click 100 plus point
5) R-click on 1033
6) choose replace resource
7) click on open file with new bitmap button
8) choose your bitmap image
9) click replace
10) click file menu and save this file any name with .exe
extension
eg:- kusma.exe
11)copy this file and paste c:\windows\system32
after
========
12)open registry edit
start>run>regedit
13)goto this location:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows
NT\CurrentVersion\Winlogon
13) Edit UIHost reg_sz
14) double click it and value data is kusma.exe(because we
have kusma.exe)
15) restart your system and enjoy it.
============
resource hacker
edit file
============
c:\windows\system32\logonui.exe
copy & edit in resource hacker
preparation for editing
=======================
design 5x7 size *.bmp photo (which you want to replace
welcome screen)
1) open resource hacker
2) click file menu & open logonui.exe
3) click plus point(+) in bitmap
4) click 100 plus point
5) R-click on 1033
6) choose replace resource
7) click on open file with new bitmap button
8) choose your bitmap image
9) click replace
10) click file menu and save this file any name with .exe
extension
eg:- kusma.exe
11)copy this file and paste c:\windows\system32
after
========
12)open registry edit
start>run>regedit
13)goto this location:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows
NT\CurrentVersion\Winlogon
13) Edit UIHost reg_sz
14) double click it and value data is kusma.exe(because we
have kusma.exe)
15) restart your system and enjoy it.
CALCULATOR JAVA SCRIPT SOURCE CODE
<form name="calculation">
<center></center>
<table bgcolor="blue" border="3"><tbody>
<tr><th colspan="4"><span style="color: white;">Calculation Station</span></th> </tr>
<tr> <td colspan="3">
<input name="c" type="text" /></td> <td><input name="clean" onclick="calculation.c.value=''" type="button" value=" C " /></td></tr>
<tr> <td>
<input name="seven" onclick="calculation.c.value+='7'" type="button" value=" 7 " />
<input name="eight" onclick="calculation.c.value+='8'" type="button" value=" 8 " />
<input name="nine" onclick="calculation.c.value+='9'" type="button" value=" 9 " />
<input name="div" onclick="calculation.c.value+='/'" type="button" value=" / " /></td> <td>
<input name="four" onclick="calculation.c.value+='4'" type="button" value=" 4 " />
<input name="five" onclick="calculation.c.value+='5'" type="button" value=" 5 " />
<input name="six" onclick="calculation.c.value+='6'" type="button" value=" 6 " />
<input name="mul" onclick="calculation.c.value+='*'" type="button" value=" x " /></td> <td>
<input name="one" onclick="calculation.c.value+='1'" type="button" value=" 1 " />
<input name="two" onclick="calculation.c.value+='2'" type="button" value=" 2 " />
<input name="thr" onclick="calculation.c.value+='3'" type="button" value=" 3 " />
<input name="sub" onclick="calculation.c.value+='-'" type="button" value=" - " /></td> <td>
<input name="zer" onclick="calculation.c.value+='0'" type="button" value=" 0 " />
<input name="dot" onclick="calculation.c.value+='.'" type="button" value=" . " />
<input name="add" onclick="calculation.c.value+='+'" type="button" value=" + " />
<input name="eql" onclick="calculation.c.value=eval(calculation.c.value)" type="button" value=" = " /></td> </tr>
</tbody></table>
</form>
<center></center>
<table bgcolor="blue" border="3"><tbody>
<tr><th colspan="4"><span style="color: white;">Calculation Station</span></th> </tr>
<tr> <td colspan="3">
<input name="c" type="text" /></td> <td><input name="clean" onclick="calculation.c.value=''" type="button" value=" C " /></td></tr>
<tr> <td>
<input name="seven" onclick="calculation.c.value+='7'" type="button" value=" 7 " />
<input name="eight" onclick="calculation.c.value+='8'" type="button" value=" 8 " />
<input name="nine" onclick="calculation.c.value+='9'" type="button" value=" 9 " />
<input name="div" onclick="calculation.c.value+='/'" type="button" value=" / " /></td> <td>
<input name="four" onclick="calculation.c.value+='4'" type="button" value=" 4 " />
<input name="five" onclick="calculation.c.value+='5'" type="button" value=" 5 " />
<input name="six" onclick="calculation.c.value+='6'" type="button" value=" 6 " />
<input name="mul" onclick="calculation.c.value+='*'" type="button" value=" x " /></td> <td>
<input name="one" onclick="calculation.c.value+='1'" type="button" value=" 1 " />
<input name="two" onclick="calculation.c.value+='2'" type="button" value=" 2 " />
<input name="thr" onclick="calculation.c.value+='3'" type="button" value=" 3 " />
<input name="sub" onclick="calculation.c.value+='-'" type="button" value=" - " /></td> <td>
<input name="zer" onclick="calculation.c.value+='0'" type="button" value=" 0 " />
<input name="dot" onclick="calculation.c.value+='.'" type="button" value=" . " />
<input name="add" onclick="calculation.c.value+='+'" type="button" value=" + " />
<input name="eql" onclick="calculation.c.value=eval(calculation.c.value)" type="button" value=" = " /></td> </tr>
</tbody></table>
</form>
Sunday, September 18, 2011
Add UR Information and Bitmap Image in System Properties
Open Notepad & type:
[General]
Manufacturer= "Type manufacturer information here"
Model= "below manufacturer information here"
[Support Information]
Line1= "1st line information"
Line2= "2nd line information "
Line3= "3rd line information "
Line4= "4th line information "
Line5= "5th line information "
Line6= "6th line information"
Line7= "7th line information "
Line8= "8th line information "
Line9= "9th line information "
Line10= "10th line information "
Save it as oeminfo.ini in C:\WINDOWS\System 32.NOTE: You can also create a bitmap file and name it as oemlogo.bmp, save it in C:\WINDOWS\System 32. (But when u will design bitmap image then size is 1x1 inch and resolution is 100 .)Right Click on my computer icon and click on properties then u will see ur information and bitmap image
How to add ur name in internet explorer title
BY: Mr. Umesh Anjaan
-----------------------------
STEPS
-------------------------
Click Start>Run
Type “regedit”
Got to this location:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Main
Right Click on blank
area
area
New string value
Name is “Window Title”
Value is “what u display in title”
Saturday, September 17, 2011
Easily Intered In Windows Application From Run
STEPS:
———-
Click On Start
Click On Run
Then You Will Type And Direct Access Application
————————————————–
type command Program
——————– ——————-
devmgmt.msc = devicemanager
diskmgmt.msc = diskmanagement(partition)
drwatson.exe = dr. watson
dfrg.msc = Disk difragment
iexpress = i express (setup builder)
iexplore = Internet explore
magnify = magnifier
mstsc = Remote desktop Connection
ntbackup = backup files & restore
regedit = Registry Edit
gpedit.msc = Group policy
nslookup = nslookup.exe(for ip)
secpol.msc = Local Security Policy
odbcad32 = other database connection(for database programming)
sysedit = system configuration editor
telnet = microsoft tel net
tourstart = start tour for windows xp help
compmgmt.msc = Computer management
fsquirt = Bluetooth file transfer wizard
lusrmgar.msc = local user and groups
winchat = Chat on LAN
sndrec32 = Default windows wav sound recorder
sndvol32 = Master volume controller
cliconfg = SQL Server Clint Network Utility
media = C:\WINDOWS\Media
%systemroot% = C:\WINDOWS
. = Document & Setting\
.. = User
calc = Calculator
wab = Address Book
osk = On screen keyboard
narrator = narratior
wmplayer = Windows media player
notepad = notepad(.txt)
write = wordpad (.rtf)
msimn = Outlook Express
msmsgs = Windows Messanger Properties
cmd = Ms Disk Operating System(DOS)
command.com = Ms Disk Operating System(DOS)
====================================================
Windows Default Games
————————————
sol = solitaire (card play)
mshearts = the microsoft heat network game
freecell = freecell game
winmine = Minesweeper Properties
pinball = Pinball Properties
spider = SPider (card)
===================================================
ENJOY with Run Command & Application.
———-
Click On Start
Click On Run
Then You Will Type And Direct Access Application
————————————————–
type command Program
——————– ——————-
devmgmt.msc = devicemanager
diskmgmt.msc = diskmanagement(partition)
drwatson.exe = dr. watson
dfrg.msc = Disk difragment
iexpress = i express (setup builder)
iexplore = Internet explore
magnify = magnifier
mstsc = Remote desktop Connection
ntbackup = backup files & restore
regedit = Registry Edit
gpedit.msc = Group policy
nslookup = nslookup.exe(for ip)
secpol.msc = Local Security Policy
odbcad32 = other database connection(for database programming)
sysedit = system configuration editor
telnet = microsoft tel net
tourstart = start tour for windows xp help
compmgmt.msc = Computer management
fsquirt = Bluetooth file transfer wizard
lusrmgar.msc = local user and groups
winchat = Chat on LAN
sndrec32 = Default windows wav sound recorder
sndvol32 = Master volume controller
cliconfg = SQL Server Clint Network Utility
media = C:\WINDOWS\Media
%systemroot% = C:\WINDOWS
. = Document & Setting\
.. = User
calc = Calculator
wab = Address Book
osk = On screen keyboard
narrator = narratior
wmplayer = Windows media player
notepad = notepad(.txt)
write = wordpad (.rtf)
msimn = Outlook Express
msmsgs = Windows Messanger Properties
cmd = Ms Disk Operating System(DOS)
command.com = Ms Disk Operating System(DOS)
====================================================
Windows Default Games
————————————
sol = solitaire (card play)
mshearts = the microsoft heat network game
freecell = freecell game
winmine = Minesweeper Properties
pinball = Pinball Properties
spider = SPider (card)
===================================================
ENJOY with Run Command & Application.
Friday, September 16, 2011
Subscribe to:
Comments (Atom)