Syarat-syarat

 Syarat - Syarat :
 1.Berikan ide atau saran agar blog ini dapat berkembang.
 2.Apa yang ada diblog ini hasil pencarian sang pemilik blog.
 3.Blog ini tidak mengambil secara utuh dari blog atau web orang lain. Apa yang dibahas dalam blog ini asli buatan/Editan sang pemilik blog.
Loading

Rabu, 23 Maret 2011

Microsoft DOS reg command

Syntax 

Console Registry Tool for Windows - version 3.0
Copyright (C) Microsoft Corp. 1981-2001. All rights reserved

REG Operation [Parameter List]

Operation [QUERY|ADD|DELETE|COPY|SAVE|LOAD|UNLOAD|RESTORE|COMPARE|EXPORT|IMPORT]

Return Code: (Except of REG COMPARE)
0 - Succussful
1 - Failed
____________________________________________________________________________________
Syntax Operation And Sample :

1. QUERY

    Syntax : REG QUERY KeyName [/v ValueName | /ve] [/s]
    Keterangan

    KeyName   [\Machine\]FullKey.
    Machine      Name of remote machine, omitting defaults to the current machine Only HKLM and HKU
                       are available on remote machines.
    FullKey       in the form of ROOTKEY\SubKey name
                       ROOTKEY [ HKLM | HKCU | HKCR | HKU | HKCC ]
                       SubKey - The full name of a registry key under the selected ROOTKEY
    /v                query for a specific registry key
   ValueName  The name, under the selected Key, to query if omitted, all values under the Key are queried
   /ve               query for the default value or empty value name
   /s                 queries all subkeys and values

Example : - Displays the value of the registry value Version
                  REG QUERY HKLM\Software\Microsoft\ResKit /v Version
               - Displays all subkeys and values under the registry key Setup
                  REG QUERY HKLM\Software\Microsoft\ResKit\Nt\Setup /s

____________________________________________________________________________________
2. ADD

    Syntax : REG ADD KeyName [/v ValueName | /ve] [/t Type] [/s Separator] [/d Data] [/f]
    Keterangan

    KeyName   [\Machine\]FullKey.
    Machine      Name of remote machine, omitting defaults to the current machine Only HKLM and HKU
                       are available on remote machines.
    FullKey       in the form of ROOTKEY\SubKey name
                       ROOTKEY [ HKLM | HKCU | HKCR | HKU | HKCC ]
                       SubKey - The full name of a registry key under the selected ROOTKEY
    /v                query for a specific registry key
   ValueName  The name, under the selected Key, to query if omitted, all values under the Key are queried
   /ve               query for the default value or empty value name
   /t  RegKey   data types
                      [REG_SZ|REG_MULTI_SZ|REG_DWORD_BIG_ENDIAN|REG_DWORD|
                      REG_BINARY|REG_DWORD_LITTLE_ENDIAN|REG_NONE|REG_EXPAND_SZ]
                      If omitted, REG_SZ is assumed

   /s                Specify one charactor that you use as the separator in your data string for REG_MULTI_SZ
                     If omitted, use "\0" as the separator
   /d               The data to assign to the registry ValueName being added
   /f                Force overwriting the existing registry entry without prompt



Example : - Adds a key HKLM\Software\MyCo on remote machine ABC
                  REG ADD \\ABC\HKLM\Software\MyCo
               - Adds a value (name: Data, type: REG_BINARY, data: fe340ead)
                 REG ADD HKLM\Software\MyCo /v Data /t REG_BINARY /d fe340ead
               - Adds a value (name: MRU, type: REG_MUTLI_SZ, data: fax\0mail\0\0)
                 REG ADD HKLM\Software\MyCo /v MRU /t REG_MULTI_SZ /d fax\0mail
               - Adds a value (name: Path, type: REG_EXPAND_SZ, data: %systemroot%)
                 REG ADD HKLM\Software\MyCo /v Path /t REG_EXPAND_SZ /d %%systemroot%%

Notice: Use the double percentage ( %% ) inside the expand string


____________________________________________________________________________________
2.DELETE

    Syntax : REG DELETE KeyName [/v ValueName | /ve | /va] [/f]
    Keterangan

    KeyName   [\Machine\]FullKey.
    Machine      Name of remote machine, omitting defaults to the current machine Only HKLM and HKU
                       are available on remote machines.
    FullKey       in the form of ROOTKEY\SubKey name
                       ROOTKEY [ HKLM | HKCU | HKCR | HKU | HKCC ]
                       SubKey - The full name of a registry key under the selected ROOTKEY
    /v                query for a specific registry key
   ValueName  The name, under the selected Key, to query if omitted, all values under the Key are queried
   /ve               delete the value of empty value name

   /va               delete all values under this key

   /f                 Forces the deletion without prompt



Example : - Deletes the registry key Timeout and its all subkeys and values
                  REG DELETE HKLM\Software\MyCo\MyApp\Timeout
               - Deletes the registry value MTU under MyCo on ZODIAC
                 REG DELETE \\ZODIAC\HKLM\Software\MyCo /v MTU




Reg copy examples:
REG COPY HKLM\Software\MyCo\MyApp HKLM\Software\MyCo\SaveMyApp /s
Copies all subkeys and values under the key MyApp to the key SaveMyApp
REG COPY \\ZODIAC\HKLM\Software\MyCo HKLM\Software\MyCo1
Copies all values under the key MyCo on ZODIAC to the key MyCo1
on the current machine
Reg save examples:
REG SAVE HKLM\Software\MyCo\MyApp AppBkUp.hiv
Saves the hive MyApp to the file AppBkUp.hiv in the current folder
Reg restore examples:
REG RESTORE HKLM\Software\Microsoft\ResKit NTRKBkUp.hiv
Restores the file NTRKBkUp.hiv overwriting the key ResKit
Reg load examples:
REG LOAD HKLM\TempHive TempHive.hiv
Loads the file TempHive.hiv to the Key HKLM\TempHive
Reg unload examples:
REG UNLOAD HKLM\TempHive
Unloads the hive TempHive in HKLM
Reg compare examples:
REG COMPARE HKLM\Software\MyCo\MyApp HKLM\Software\MyCo\SaveMyApp
Compares all values under the key MyApp with SaveMyApp
REG COMPARE HKLM\Software\MyCo HKLM\Software\MyCo1 /v Version
Compares the value Version under the key MyCo and MyCo1
REG COMPARE \\ZODIAC\HKLM\Software\MyCo \\. /s
Compares all subkeys and values under HKLM\Software\MyCo on ZODIAC
with the same key on the current machine
Reg export examples:
REG EXPORT HKLM\Software\MyCo\MyApp AppBkUp.reg
Exports all subkeys and values of the key MyApp to the file AppBkUp.reg
Reg import examples:
REG IMPORT AppBkUp.reg
Imports registry entrys from the file AppBkUp.reg

Available regedit command switches and syntax that can be used.

REGEDIT [/L:system] [/R:user] [/C] [/R] [/E] [/S] [/C] filename [Registry_key]
/SThe /s or -s regedit commands can be added to the command to suppress the confirmation box "Are you sure want to add the information in hope.reg to the registry?" when running the command at the command line. For example, using the same command used earlier you can type: regedit /s hope.reg and have that registry file immediately imported into the registry.
/EExport the full registry to a file. For example, typing: regedit /e full.reg would export the full registry to the full.reg file.

This switch can also be used to export individual registry keys. For example, typing: regedit /e software.reg "HKEY_LOCAL_MACHINE\Software" would export all the the values in this folder to the software.reg file.

Note: This is not case sensitive.
/DMicrosoft Windows 95, 98, and ME users can delete registry keys using this switch. For example, typing: regedit /d "<registry_key>" where registry_key is replaced with the registry key you wish to delete would delete that registry key.
/L:SystemSpecify the location of the system.dat registry file under Microsoft Windows 95, 98, and ME. For example, regedit /L:c:\windows\system.dat c:\system.dat
/R:userSpecify the location of the user.dat registry file under Microsoft Windows 95, 98, and ME. For example, regedit /L:c:\windows\system.dat c:\system.dat
/CCompress registry file. This switch only works in Windows 98.

Kamis, 03 Maret 2011

Rahasia ASCII Kode

-Lock Folder
  Dengan menambahkan 1 karakter dibelakang nama folder akan membuat folder tersebut tidak dapat dibuka. caranya tekan ALT+32 diakhir nama folder.

-Folder bebas dari virus
  Tambahkan karakter √ dengan menekan alt+251 didepan nama folder anda. maka folder anda terbebas dari     virus.
Tips Trik ASCII ini saia dapat dari tetangga sebelah...ijin copas buat sang pemilik.

By ARBI Blog's

Menambahkan beberapa fitur pada Folder Options

ketikkan Kode dibawah dalam notepad dan simpan dengan nama ModifyFolderOptions.reg
Simpan sebagai file .reg :

Rabu, 02 Maret 2011

Copy To Folder And Move To Folder

ketikkan Kode dibawah dalam notepad dan simpan dengan nama Context_Copy_Move.reg
Simpan sebagai file .reg :

Selasa, 01 Maret 2011

Menampilkan Administrator Di Welcome Screen

ketikkan Kode dibawah dalam notepad dan simpan dengan nama "Sesuka hati anda".reg


Simpan sebagai file .reg :