Thursday, February 19, 2009

How to configured Postfix

queue_directory = /var/spool/postfix
command_directory = /usr/sbin
daemon_directory = /usr/libexec/postfix
mail_owner = postfix
myhostname = domain.com
mydomain = domain.com
myorigin = domain.com
inet_interfaces = all
mydestination = hash:/etc/postfix/mydomains
unknown_local_recipient_reject_code = 550
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
mail_spool_directory = /var/spool/mail
smtpd_banner = $myhostname ESMTP $mail_name
debug_peer_level = 2
debugger_command =
         PATH=/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin
         xxgdb $daemon_directory/$process_name $process_id & sleep 5
sendmail_path = /usr/sbin/sendmail.postfix
newaliases_path = /usr/bin/newaliases.postfix
mailq_path = /usr/bin/mailq.postfix
setgid_group = postdrop
html_directory = no
manpage_directory = /usr/share/man
sample_directory = /usr/share/doc/postfix-2.2.10/samples
readme_directory = /usr/share/doc/postfix-2.2.10/README_FILES
virtual_alias_maps = hash:/etc/postfix/virtual
smtpd_sasl_auth_enable = yes
smtpd_sasl_security_options = noanonymous
smtpd_sasl_local_domain = $myhostname
smtp_sasl_security_options = noplaintext
smtpd_recipient_restrictions = permit_sasl_authenticated, permit_mynetworks, reject_unauth_destination
mailbox_size_limit = 0
message_size_limit = 2500000000
 

After configured main.cf create mydomains file write down bleow
vi mydomains
# mydomains - include a a list of aliases for your machine here, formated:
# example.com                   OK
# After change, run "postmap /etc/postfix/mydomains"
domain.com(domainname)           OK
localhost               OK
app1.lax.0336 (servername)            OK
 

/usr/sbin/postmap mydomains
 
After configured mydomains create virtual file
 vi virtual
# virtual - LHS is the incoming email address and the RHS is the local recipient
# or alias, like this:
# .com                  postmaster
#
# After change, run "postmap /etc/postfix/virtual"
# Catchalls go at the bottom.
admin@domain.com admin
postmaster@domain.com
 
/usr/sbin/postmap virtual
 
Stop all mail services & start postfix .
 
start service /etc/init.d/saslauthd start
 
 
For see How much connection
ps -ef|grep -c http
ps -ef|grep -c ftp
ps -ef|grep -c mysql
netstat -n | wc -l
Java Bridge configration
./configure --with-java=/usr/java/jdk1.5.0_13,/usr/java/jdk1.5.0_13/jre --with-php-config=/usr/local/shri/php/bin/php-config
Find large hits from which IP awk '{print $1}' /var/log/httpd/access filename| sort | uniq -c | sort -n | tail -20
select * from table name limit 1;
netstat -n | wc -l




Enable Memcache in Apache

<IfModule mod_mem_cache.c>
#cache everything that contains /images and /ImgNew in the URL
CacheEnable mem /images
CacheEnable mem /css
CacheEnable mem /js
#Utilize 2Gigs of memory
MCacheSize 2097152
#max number of items to hold in cache
MCacheMaxObjectCount 1024
MCacheMinObjectSize 1
#max file size in bytes a single cached file maybe
#set to 1 meg below
MCacheMaxObjectSize 1048576
#use least requsted removal algorithm
MCacheRemovalAlgorithm LRU
</IfModule>

Tuesday, February 10, 2009

How to configured Squid

How to configured Squid

 

Vi  Squid.conf

       http_port 8080

        icp_port 0

       acl QUERY urlpath_regex cgi-bin \?

       no_cache deny QUERY

       cache_mem 16 MB

       #cache_dir ufs /cache 200 16 256

       redirect_rewrites_host_header off

       #replacement_policy GDSF

      #acl localnet src 10.0.0.26/255.255.255.0

      acl localhost src 127.0.0.1/255.255.255.255

      acl Safe_ports port 80 443 210 119 70 21 1025-65535

      acl CONNECT method CONNECT

      acl all src 0.0.0.0/0.0.0.0

      http_access allow all

      http_access allow all

      http_access deny !Safe_ports

      http_access deny CONNECT

      #http_access deny all

      cache_mgr admin@openna.com

      visible_hostname pluto

      cache_effective_user squid

      cache_effective_group squid

      log_icp_queries off

      cachemgr_passwd my-secret-pass all

     buffered_logs on

 
 

Confiured VSFTP

VSFTPD  Setup

Install vsftpd.i386

cd /etc/vsftpd/

vi vsftpd.conf

anonymous_enable=NO

local_enable=YES

write_enable=YES

local_umask=022

dirmessage_enable=YES

xferlog_enable=YES

connect_from_port_20=YES

chown_uploads=YES

chown_username=vidal

xferlog_file=/var/log/vsftpd.log

xferlog_std_format=YES

idle_session_timeout=600

data_connection_timeout=120

ftpd_banner=welcome to TC ftp services.

chroot_list_enable=YES

chroot_list_file=/etc/vsftpd/chroot_list

pam_service_name=vsftpd

#nopriv_user=ftpgroup

#anon_upload_enable=YES

#anon_mkdir_write_enable=YES

#async_abor_enable=YES

#ascii_upload_enable=YES

#ascii_download_enable=YES

#deny_email_enable=YES

#banned_email_file=/etc/vsftpd.banned_emails

#ls_recurse_enable=YES

#userlist_enable=YES

#enable for standalone mode

listen=YES

#tcp_wrappers=YES

 

vi  chroot_list

# vsftpd userlist

# If userlist_deny=NO, only allow users in this file

# If userlist_deny=YES (default), never allow users in this file, and

# do not even prompt for a password.

# Note that the default vsftpd pam config also checks /etc/vsftpd/ftpusers

# for users that are denied.

root

bin

daemon

adm

lp

sync

shutdown

halt

mail

news

uucp

operator

games

nobody

vidal    --------------------------------------------->  your given username

/usr/sbin/adduser -d /home/ftpusername  ftpusername

Vi /etc/shells

/bin/false

 
 

How change Zone Timeing

 

How change Zone Timeing

 

mv /etc/localtime /etc/localtime_old

ln -s /usr/share/zoneinfo/EST /etc/localtime

 

EST = Zone timeming

Make backup script date to date tar

#! /bin/bash

echo Backup Started `date` >> /root/backuplog

mkdir /mnt/plutobackup/www/`date +%Y%m%d`

tar -cvzf /mnt/plutobackup/www/`date +%Y%m%d`/html.tar.gz /var/www/punehtml >> /root/backuplog

mkdir /mnt/plutobackup/sql/`date +%Y%m%d`

tar -cvzf /mnt/plutobackup/sql/`date +%Y%m%d`/sql.tar.gz /var/lib/mysql >> /root/backuplog

echo Backup Completed `date` >> /root/backuplog

 

Make backup script

#!/bin/bash

rsync -rv /var/www/punehtml /mnt/plutobackup/www   > backup.log

rsync -rv /var/lib/mysql /mnt/plutobackup/sql   > backup.log

 
 

How to make htacess

Vi  /etc/services here u can see for which port which service is active

 

How to make htacess

Go Document Root make one file .htacess & put inside

Vi .htacess

AuthType Basic

AuthName "Password Required"

AuthUserFile /var/www/html/mydev/trunk/web/xyz/.htpasswd

#AuthGroupFile .grp

Require user myycom

 

 

Then Press below commond before this make vi .htpasswd file

htpasswd -c .htpasswd username

newpassword=

retype password=

 


How to configure Mysql & which file we have to change

   Downlaod binary files from http://www.mysql.com

            Copy the folder to /usr/local/ path

            Copy the my-huge.cnf file from support folder to /etc/ with name my.cnf

            Edit my.cnf file and make changes what to want to.

Cd  /usr/local/mysql/share/mysql/ & edit mysql.server edit data bath

            Then copy mysql.server file from support to /etc/rc.d/init.d/ with name of mysqld

            Make link of mysql5 in following folders

            Rc1.d, rc2.d rc3.d rc4.d, rc5.d, rc6.d, rc7.d

            Go to folder which is mention above (rc1.d) and make the link

(ln –s ../init.d/mysqld5 mysqld5 )

c.         Start mysql with command ( /etc/rc.d/init.d/mysql5 start )

 
 

How mount windows drive on linux

How mount windows drive on linux ( its working Redhat & fedora 4 only for fedora 6 u have to use cifs 

 

mount –t smbfs –o username=username,password=password  //mount point of network    /mount point

 

Backup scripts for linux

backup scripts for linux
 

Backup.sh

#!/bin/bash

rsync -rv /var/www/html /mnt/jupiterbackup/www   > backup.log

rsync -rv /var/lib/mysql /mnt/jupiterbackup/sql   > backup.log

 

How to configure Samba Server

How to configure  Samba Server

Just edit below entry in smb.conf

server string = Samba Server

client code page = 852

printcap name = /etc/printcap

load printers = no

printing = cups

log file = /var/log/samba/log.%m

max log size = 100

encrypt passwords = yes

null passwords = yes

dns proxy = no

share modes = yes

map to guest = Bad User

security = users

#============================ Share Definitions ==============================

[HTML]

path = /var/www/html

public = yes

;only guest = False

guest ok = yes

writable = yes

printable = no

directory mask = 0777

create mask = 0777

 
 

 

How to connect VSS remotely

How to connect VSS remotely

 

Steps:-

 

  1. Install VSS 2005 in  Administrator rights
  2. Login from username :-  and password :-
  3. Open VSS 2005 Microsoft Visual SourceSafe from program files
  4. It will ask for create database OR use existing database figure below

 

 

 

  1. Select existing database
  2. It will ask for path of database insert \\203.115.119.69\Heybuddy figure below

 

  1. Do nothing  just click next

 

  1. just click on finish
  2. It will added VSS database in your machine
  3. Next screen will you be look like that

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 
 

How to connect SQL via Internet

How to connect SQL via Internet

Open SQL server 2005 ---configration Maneger – sql server 2005 Surface Area configuration ------ double click  surface Area Configration for services & connection

Click on DATABASE & Remote Connections  select Local & remote Connections  Apply & ok

How to Connect sql server on different port servername,port number exp.(74.76.154.7\MSSQL2K5WG,8486)

How to change MSSQL port

Open SQL server configration maneger go to sql server network configration server click on server right side TCP IP properties

& change dydnamic port & TCP IP port & change Alies New port also

 
 
Sunday, February 8, 2009

NetWork password view

Removing the stored password manually

First see if this helps: Using Manage Network Passwords dialog. If the network location is not listed in the Manage Network Passwords dialog, proceed further, to the manual removal routine:

The password is stored in the Protected Storage area in the XP registry. To remove the stored password for the Network location, follow these instructions:

* Click Start, Run and type REGEDIT and press Enter
* Navigate to the following key:

HKEY_CURRENT_USER \ Software \ Microsoft \ Protected Storage System Provider \

* Assign your user account Full Permission for this key, and sub-keys.
* Once done, press F5 key to refresh the registry view.
* Locate the appropriate sub-key which contains the MS IE FTP Passwords.

Hint: Look for the MS IE FTP Passwords Display String value in the right-pane for each sub-key. The password may be stored here: (The string varies)

HKCU \ Software \ Microsoft \ Protected Storage System Provider \ \ Data \ 5e7e8100-9138-11d1-945a-00c04fc308ff \ 00000000-0000-00 00-0000-000000000000

* Once you locate the correct sub-key, backup the key to a REG file
* Delete the key which contains the user name & password for that Network location
* Now, Undo the Permissions settings done in Step 3 above
* Close Registry Editor

Vista Make faster

Vista Antivirus is a new rogue antivirus which tries to rob your money. Besides that it slows down your pc and with unwanted popups, it makes your working on the computer impossible.
Though it may be very harmful, it is very easy to clean. Just follow these easy steps accompanied by pictures to clean your pc from this false vista antivirus.

1. First of all open task manager(Ctrl+Alt+Del) and go to process tab. Now search the process vav.exe. Kill process vav.exe by right clicking on it and selecting end process.

2. Now go to C:\windows\system32 folder(assuming that you have windows in your C drive.
Locate and delete file vav.cpl

3. Now go to C:\program files
Locate a folder named vav with four files(vav0.dat, vav1.dat, vav.cpl, vav.exe)
Delete the entire folder

4. Vista Antivirus 2008 also makes a shortcut on your desktop. Del that also

5. Empty recycle bin

Now we will be doing some registry editing which is to be done very carefully. If not done with care it can lead to system instability

6. Go to start->run->type 'regedit' and press enter

7. Now navigate to the following key and del the string named antivirus as shown in the picture.
HKEY_CURRENT_USER\Software\Microsoft\W...

8. Now navigate to the following key and del the key as shown in the picture.
HKEY_CURRENT_USER\Software\VAV

9. Now navigate to the following key and del the string named antivirus as shown in the picture.
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\...


http://answers.yahoo.com/question/index?qid=20080712091155AAtD85s
Turn Off , lock computer ,change password , log off buttons get hidden
The registry entries are DWORD values. A value of 1 is enabled, and a value of 0 is disabled.
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Current Version\Policies\Explorer
Policy:Disable and remove the Turn Off Computer button
Description:Removes the "Turn Off Computer" button from the Start Menu and
prevents shutting down Windows using the standard shutdown user interface.
Registry Value:"NoClose"
(remove all unnecessary entries which was newly created)

VB 6.0 Installation Trouble

AppName: vs60wiz.exe AppVer: 6.0.0.8167 ModName: ntdll.dll

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio]
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\6.0]
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\6.0\Setup]
"VsCommonDir"="C:\\Program Files\\Microsoft Visual Studio\\Common"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\6.0\Setup\Visual Studio 98]
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\6.0\Setup\Visual Studio 98\SetupWizard]
"aspo"=dword:38395356
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\6.0\Setup\Visual Studio 98\SetupWizard-1033-ENT]
"heuristics"=hex:00,00,00,00,00,00,00,00

Restrict Usb Storage Drive

How to Restrict Usb Storage Drive Save below contain in notepad and save as .reg file and run this file this will effect registry And its Work .

Disable USB Drive.reg
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\USBSTOR]
"Type"=dword:00000001
"Start"=dword:00000004
"ErrorControl"=dword:00000001
"ImagePath"=hex(2):73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,44,00,\
52,00,49,00,56,00,45,00,52,00,53,00,5c,00,55,00,53,00,42,00,53,00,54,00,4f,\
00,52,00,2e,00,53,00,59,00,53,00,00,00
"DisplayName"="USB Mass Storage Driver"

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\USBSTOR\Security]
"Security"=hex:01,00,14,80,a0,00,00,00,ac,00,00,00,14,00,00,00,30,00,00,00,02,\
00,1c,00,01,00,00,00,02,80,14,00,ff,01,0f,00,01,01,00,00,00,00,00,01,00,00,\
00,00,02,00,70,00,04,00,00,00,00,00,18,00,fd,01,02,00,01,01,00,00,00,00,00,\
05,12,00,00,00,74,00,6c,00,00,00,1c,00,ff,01,0f,00,01,02,00,00,00,00,00,05,\
20,00,00,00,20,02,00,00,00,00,00,00,00,00,18,00,8d,01,02,00,01,01,00,00,00,\
00,00,05,0b,00,00,00,20,02,00,00,00,00,1c,00,fd,01,02,00,01,02,00,00,00,00,\
00,05,20,00,00,00,23,02,00,00,00,00,00,00,01,01,00,00,00,00,00,05,12,00,00,\
00,01,01,00,00,00,00,00,05,12,00,00,00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\USBSTOR\Enum]
"Count"=dword:00000001
"NextInstance"=dword:00000001
"0"="USB\\Vid_067b&Pid_2507\\0"

Enable USB Drive.reg

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\USBSTOR]
"Type"=dword:00000001
"Start"=dword:00000003
"ErrorControl"=dword:00000001
"ImagePath"=hex(2):73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,44,00,\
52,00,49,00,56,00,45,00,52,00,53,00,5c,00,55,00,53,00,42,00,53,00,54,00,4f,\
00,52,00,2e,00,53,00,59,00,53,00,00,00
"DisplayName"="USB Mass Storage Driver"

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\USBSTOR\Security]
"Security"=hex:01,00,14,80,a0,00,00,00,ac,00,00,00,14,00,00,00,30,00,00,00,02,\
00,1c,00,01,00,00,00,02,80,14,00,ff,01,0f,00,01,01,00,00,00,00,00,01,00,00,\
00,00,02,00,70,00,04,00,00,00,00,00,18,00,fd,01,02,00,01,01,00,00,00,00,00,\
05,12,00,00,00,74,00,6c,00,00,00,1c,00,ff,01,0f,00,01,02,00,00,00,00,00,05,\
20,00,00,00,20,02,00,00,00,00,00,00,00,00,18,00,8d,01,02,00,01,01,00,00,00,\
00,00,05,0b,00,00,00,20,02,00,00,00,00,1c,00,fd,01,02,00,01,02,00,00,00,00,\
00,05,20,00,00,00,23,02,00,00,00,00,00,00,01,01,00,00,00,00,00,05,12,00,00,\
00,01,01,00,00,00,00,00,05,12,00,00,00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\USBSTOR\Enum]
"Count"=dword:00000001
"NextInstance"=dword:00000001
"0"="USB\\Vid_067b&Pid_2507\\0"

Restrict Security Tab

How to Restrict Security Tab. Save below contain in notepad and save as .reg file and run this file this will effect registry And its Work .

Disable Sec Tab.reg

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoDriveTypeAutoRun"=dword:00000095
"NoSecurityTab"=dword:00000001


Enable Sec Tab.reg

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoDriveTypeAutoRun"=dword:00000095
"NoSecurityTab"=-

Restrict MMC Console

How to Restrict MMC Console. Save below contain in notepad and save as .reg file and run this file this will effect registry And its Work .

Allow mmc console access.reg
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Policies\Microsoft\MMC]

[-HKEY_CURRENT_USER\Software\Policies\Microsoft\MMC\{58221C66-EA27-11CF-ADCF-00AA00A80033}]
"Restrict_Run"="1"

[-HKEY_CURRENT_USER\Software\Policies\Microsoft\MMC\{58221C67-EA27-11CF-ADCF-00AA00A80033}]
"Restrict_Run"="1"


Deny mmc console access.reg

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Policies\Microsoft\MMC]

[HKEY_CURRENT_USER\Software\Policies\Microsoft\MMC\{58221C66-EA27-11CF-ADCF-00AA00A80033}]
"Restrict_Run"="1"

[HKEY_CURRENT_USER\Software\Policies\Microsoft\MMC\{58221C67-EA27-11CF-ADCF-00AA00A80033}]
"Restrict_Run"="1"
How to Enable Registry Restrict And Allow IE Proxy Setting . Save below contain in notepad and save as .reg file and run this file this will effect registry And its Work .

Allow IE Proxy .reg

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Internet Explorer\Control Panel]
"Connwiz Admin Lock"=dword:00000000
"Connection Settings"=dword:00000000

Restrict IE Proxy.reg

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Internet Explorer\Control Panel]
"Connwiz Admin Lock"=dword:00000001
"Connection Settings"=dword:00000001

Hidden File Not Showing

How to Enable Hidden File Not Showing Virus Adware Effect. Save below contain in notepad and save as .reg file and run this file this will effect registry And its Work .

NO HIDDEN KEY.reg
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\NOHIDDEN]
"RegPath"="Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced"
"Text"="@shell32.dll,-30501"
"Type"="radio"
"CheckedValue"=dword:00000002
"ValueName"="Hidden"
"DefaultValue"=dword:00000002
"HKeyRoot"=dword:80000001
"HelpID"="shell.hlp#51104"

SHOWALL KEY.reg

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\SHOWALL]
"RegPath"="Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced"
"Text"="@shell32.dll,-30500"
"Type"="radio"
"CheckedValue"=dword:00000001
"ValueName"="Hidden"
"DefaultValue"=dword:00000002
"HKeyRoot"=dword:80000001
"HelpID"="shell.hlp#51105"

Super Hiddenkey.reg

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\SuperHidden]
"Type"="checkbox"
"Text"="@shell32.dll,-30508"
"WarningIfNotDefault"="@shell32.dll,-28964"
"HKeyRoot"=dword:80000001
"RegPath"="Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced"
"ValueName"="ShowSuperHidden"
"CheckedValue"=dword:00000000
"UncheckedValue"=dword:00000001
"DefaultValue"=dword:00000000
"HelpID"="shell.hlp#51103"
How to JPG option in mspaint Enable Registry when its disable from Virus Adware Effect. Save below contain in notepad and save as .reg file and run this file this will effect registry And its Work .

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\Graphics Filters\Export\JPEG]
"Extensions"="jpg"
"Name"="JPEG File Interchange Format"
"Path"="C:\\PROGRA~1\\COMMON~1\\MICROS~1\\Grphflt\\JPEGIM32.FLT"

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\Graphics Filters\Export\JPEG\Filter API]

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\Graphics Filters\Export\JPEG\Image API]
"Time Stamp"=dword:01c34a24
"Compression Type"=dword:00000080
"Black Is 0"="Yes"
"Description"=dword:00000000
"BiLevel"="0,0,0"
"GrayScale"="128, 192, 0"
"Palette"="0, 0, 0"
"RGB"="128, 192, 0"
"RGB Planar"="0,0,0"

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\Graphics Filters\Export\JPEG\Options]
"Quality"=dword:0000004b
"ShowProgressDialog"="Yes"

Enable Task Manager

How to Enable Task Manger its disable from Virus Adware Effect. Save below contain in notepad and save as .reg file and run this file this will effect registry And its Work .

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System]
"DisableTaskMgr"=-

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\system]
"DisableTaskMgr"=-

Enable Registry

How to Enable Registry when its disable from Virus Adware Effect. Save below contain in notepad and save as .reg file and run this file this will effect registry And its Work .

Enable Registry.reg

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System]
"DisableRegistryTools"=-

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System]
"DisableRegistryTools"=-

Disable Registry.reg

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System]
"DisableRegistryTools"=dword:00000001


[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System]
"DisableRegistryTools"=dword:00000001
How To Enable And Disable Microsoft Outlook Attachment Security .save below contain in notepad and save as .reg file and run this file this will effect registry And its Work .

For MS 2003 Disable Security.reg
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Office\11.0\Outlook\Security]
"Level"=dword:00000003
"UseCRLChasing"=dword:00000001
"OutlookSecureTempFolder"="C:\\Documents and Settings\\Administrator\\Local Settings\\Temporary Internet Files\\OLK3\\"
"Level1Remove"=".mdb;.exe.url;.xls;.ppt"

For MS 2003 Enable Security.reg

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Office\11.0\Outlook\Security]
"Level"=dword:00000003
"UseCRLChasing"=dword:00000001
"OutlookSecureTempFolder"="C:\\Documents and Settings\\Administrator\\Local Settings\\Temporary Internet Files\\OLK3\\"
"Level1Remove"=-

For MS 2007 Disable Security.reg

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Outlook\Security]
"Level1Remove"=".mdb;.exe.url;.xls;.ppt"

For MS 2007 Enable Security.reg

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Outlook\Security]
"Level1Remove"=-

Block windows default c$ sharing

How To Block windows default c$ sharing and save your workstation from virus effect, save below contain in notepad and save as .reg file and run this file this will effect registry and your system show C$ share Block .

For WorkStation (Client PC).
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\lanmanserver\parameters]
"AutoShareWks"=dword:00000000

For Server OS

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\lanmanserver\parameters]
"AutoShareServer"=dword:00000000

Find India District Pincode list

http://www.indiapost.gov.in/pin/pinsearch.aspx This url Help for find India All distic & subdistic pincode

Enable folder Option

How To Enable folder option When its dective from virus effect save below contain in notepad and save as .reg file and run this file this will effect registry and your system show Folder Option.

Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoFolderOptions"=-
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\Explorer]
"NoFolderOptions"=-