klo mau trik ini berjalan harus normal account lho…

1.klik start>run>ketikan sytem32
2.akan keluar folder system32,cari file yang bernama cmd.exe dan sethc.exe,abis itu copykan ke folder lain.
3.rename file cmd.exe jadi sethc.exe di folder yang udh di backup tadi,udh?copykan file sethc.exe tadi ke system32
4.klo ada prompting yes ajah
5.tekan shift 5 kali seharusnya skarang udh muncul commandpromt

nah skarang ke welcome screen cba tken shift 5 kali,nanti muncul commnad promt,klo uda muncul ketikan
“net user <username> <password> /add”
jangan keluar dulu,pencet secara berbarengan ctrl+alt+del nanti akan keluar login screen…kan tdi command promtnya msi aktif cb ketikan explorer.exe,kamu kan masuk desktop dengan username system,cm masalahnya login screen masi ada(biarin aja dulu)…

skrang kan udh masuk system trz

start->run->mmc
tekan ctrl+m,add,terus scroll ke bawah dan add local user dan group local computer tekan tanda plus,click user folder ,di window yang lainya seharusnya kamu melihat username yang tdi di buat,klo udah nemu klik kanan di username tadi properties click member tab and
terus add type administrators,clik ok dan close mmc(klo ada promt save jangan di save)

kan tadi login windowsnya masi ada di desktop cba login pke username ama password tadi…

jrengjeng,kamu udah jdi admin di komputer itu…

simple kan?klo ada pertanyaan silahkan tanyakan sja…

Banyak sekali orang yang mengeluhkan bahwa ketika speedy upgrade bandwidth menjadi up to 128/1024 tetapi tidak terjadi peningkatan yang signifikan dengan kecepatan internasionalnya. Hal itu juga saya rasakan sendiri, tetapi ada triknya nih biar bisa mendapatkan kecepatan internasional yang maksimal dengan menggunakan speedy. Salah satu caranya adalah dengan menggunakan proxy.

Karena kita menggunakan produk telkom, sebaiknya kita juga menggunakan transparent proxy yang disediakan oleh telkom. Proxy-nya adalah proxies.telkom.net.id:8080 atau 202.134.0.135:8080
Caranya adalah dengan memasukkan parameter proxy ini di web browser, jika anda menggunakan firefox silahkan ke “Tools >> Options” di bagian connection settings tinggal isikan parameter .

Sekarang jika anda menggunakan browser Internet Explorer silahkan masuk ke “Tools >> Innternet Options” di bagian connection isikan parameter proxy .

Oke, sekarang mari kita test. Buka alamat www.whereismyip.com apabila sudah menunjukkan IP proxy, selamat anda telah berhasil mensetup proxy di browser anda. Berikut ini adalah perbandingan test kecepatan di www.speedtest.net dengan menggunakan proxy dan tidak menggunakan proxy.
Terlihat jelas kan perbedaannya ? Sekarang coba deh anda rasakan dengan mencoba cara tersebut diatas … :)

Setting PROXY untuk Akses Internet
GKP / Coorporate
PROXY : proxies.telkom.co.id:8080
DIVISI (cascade PROXY terdaftar dalam intranet)
DIVRE 1 : proxy_div1.telkom.co.id:8080 atau 10.16.123.4:8080
DIVRE 2 : proxy_div2.telkom.co.id:8080 atau 10.32.18.16:8080
DIVRE 3 : proxy_div3.telkom.co.id:8080 atau 10.64.1.48:8080 atau 10.64.7.125:8080
DIVRE 4 : proxy_div4.telkom.co.id:8080 atau 10.85.1.10:8080
DIVRE 5 : proxy_div5.telkom.co.id:8080 atau 10.96.2.15:8080 atau 10.96.2.50:8080 atau 10.96.2.111:8080
DIVRE 6 : proxy_div6.telkom.co.id:8080 atau 10.128.16.12:8080
DIVRE 7 : proxy_div7.telkom.co.id:8080 atau 10.144.2.230:8080
DIV-LD : proxy_ld.telkom.co.id:8080 atau 10.2.4.250:8080
RISTI : proxy_risti.telkom.co.id:8080 atau 10.14.0.11:8080
MSC-RO MKS : 10.1.193.34:8080

Selain itu Speed Internet bisa dihal di www.speedtest.net

1. Alternative ways to get directory listing.
DIR DIR * DIR . DIR. DIR : DIR: DIR , DIR,
The last two also list system and hidden files.

2. One or more . (dots) can represent a directory.
Sometimes it’s easier to use dots to represent directories. For example, if you’d like to move a file from another directory to the current, instead of writing the path to the current directory (which move.exe requires), use a dot: MOVE.EXE Pathanyfile .

This can be demonstrated with the DIR command.
One dot represents the current directory: DIR .
Two dots represent the parent directory: DIR ..
Three dots represent the directory above that: DIR …
And so on.

3. Directory listing of extentionless files.
DIR/A *. will list all files without extensions.

4. Add or remove file extensions (except system or hidden files).
REN *. *.txt will add .txt extension to files without extensions.
REN *.txt *. will remove .txt extension on files that have it.

5. Rename multiple files (except system or hidden files).
REN *.bat *.txt will rename all .bat files to .txt files.
REN *.txt 1*.txt will rename all .txt files so their first character is 1.

6. Use %temp%. (case is irrelevant) to represent the temp variable.
The temp variable can be set with or without a backslash, ie. c:temp or c:temp, which can be problematic when using the variable in a batch file. Using temp%. will refer correctly to the temp directory whether it has been set with a backslash or not. This method can be used with any variable whose value is set to a directory (provided the directory name has no extension!).

7. Use .. as the last directory in your Path statement.
No matter where you are, the parent directory will always be in the Path.

8. Change Drive and Directory easily.
There can be many reasons for changing drive and directory in a batch file, and this can be difficult if we only have a path and directory to go on. This can be accomplished with startling ease when one knows the secret, however. A drive can be made current just by entering a full path and directory at the prompt, provided a backslash is added at the end, ie. D:AnyDir, which entered at the prompt will make the D: drive current, if it is a valid drive. Oddly enough, the directory can be bogus and this will work nonetheless. If our directory is indeed valid, we can after changing drives, change to the directory by adding CD in front and repeating it without the backslash so we have, D:AnyDir followed by CD D:AnyDir Here’s how it looks in a batch file:

@ECHO off
:: cdd.bat (Change Drive and Directory)
:: Where %1 is a full path and directory without backslash.
:: Example usage: CDD D:ValidDir or CDD D: (for root)
%1
CD %1

9. Suppress a command’s output.
Works with most commands.
COPY file1 file2 >nul

10. Suppress a batch file’s output.
COMMAND/CTEST.BAT >nul

11. Temporarily increase environment while running a batch file.
Specify a maximum of 32000 bytes with the /E switch.
COMMAND/E:24000/CTEST.BAT

12. A timed delay (wait/sleep) which can not be interfered with from the keyboard.
:: Substitute 5 with the desired number of seconds, up to 99.
TYPE nul |CHOICE.COM /N /CY /TY,5 >nul

13. Timed delay w/o pipe.
CHOICE.COM/N/CY/TY,5nul
CHOICE.COM/N/CY/TY,5nul

14. Timed delay with Ctrl+C and Ctrl+Break disabled.
@ECHO off
CTTY nul
TYPE nul |CHOICE.COM /N /CY /TY,5
CTTY con

15. Produce a constant alarm (beeping).
CHOICE.COM /N <>nul
CHOICE.COM /N /CY /TY >nul
GOTO start

17. Create a 0 byte file.
TYPE nul >filename

18. Exit a batch at a designated place.
This method is used for testing and outputs a “Label not found” message which can be useful as confirmation the batch has quit at the designated place and also as a reminder if you forget to remove the bogus GOTO. Makes no disk writes.
GOTO bogus (non-existent label)

19. Exit a batch w/o error message using a 0 byte file.
This method writes a temporary 0 byte file which remains on the drive.
TYPE nul >%temp%.batexit.bat
%temp%.batexit

20. Exit a batch file w/o error message or orphaned file.
This method does not leave a 0 byte file behind, but uses pipes so it writes to %temp% or current. This trick courtesy of Laura Fairhead, Laura’s Home Page.
CTTY NUL |GOTO |CTTY CON |CALL ECHO ON

21. Use FOR to process GOTO’s.
FOR does not see the colon as a delimiter, but GOTO does. Therefore, they can be used together.
IF “%1″==”" FOR %%v IN (ECHO GOTO:end) DO %%v parameter required

22. Suppress screen messages, including error messages.
:: test.bat
@ECHO off
CTTY nul
ECHO this is a test
DIR/AD ..
CTTY con

23. Selectively display messages when screen output is suppressed.
:: test2.bat
@ECHO off
CTTY nul
ECHO This message will not be displayed
ECHO This message will be displayed >con
CTTY con

24. Delete all non-system, hidden or read-only files without confirmation.
DEL c:dirname*?.*

25. Use the pipe to place separate commands on one line.
Commands can sometimes be combined on one line.
SET |FIND.EXE “windir” |IF errorlevel=1 ECHO Windows not running
:: Here are six commands on one line:
D:|CD|DIR/AD/-P TEMP|FIND “TEMP “|IF not errorlevel=1 CD TEMP

26. Delete all files in a directory, regardless of attributes.
This example uses the pipe to place separate commands on one line. Be careful with this one, don’t do anything rash.
ATTRIB.EXE -R -A -S -H DirName*.* |ECHO Y |DEL DirName*.* >nul

27. Multiple pipes, and an ansi trick.
Ansi.sys required; Esc represents the escape character, created in edit by ‘Ctrl+P Esc’
::howmany.bat
@ECHO off
:: display how many files and bytes in current and sub-directories
DIR/A-D/W/S/-P |FIND “file(s)” |SORT/R |FIND/N “file(s)” |FIND “[1]“
IF not errorlevel=1 ECHO Esc[1ATotal:

28. Place comments on a command line.
ATTRIB.EXE, %1 %removes file attributes - broken in MS-DOS 7.x%

29. Echo pipes and redirection characters to the screen or to another file.
ECHO @PROMPT a+b $g c+d$_ > %temp%.spchar1.bat
COMMAND/E:2048/C %temp%.spchar1.bat |FIND "+" >%temp%.results.txt
DEL %temp%.spchar1.bat

30. Echo pipes and redirection characters with a single command.
Use %v at the prompt and %%v in a batch file.
COMMAND/E:2048/CFOR %v IN (1 2) DO PROMPT a+b $G c+d $_ |FIND/V "PROMPT">results.txt

31. Limit DIR output to only the file or directory you specify.
In cases where you are looking for an extensionless file or directory, only the name you specify will be in the DIR output, even though there may exist one or more files with the same basename and an extension. It can be used on all files because a dot following a file with an extension is ignored.
DIR/A-D/-P FileName.
DIR/AD/-P DirName.

32. Delete a file with copy
COPY nul filename

33. Xcopy one file to another without being asked if it's a file or directory.
ECHO F |XCOPY.EXE file1 file2

34. Xcopy a file to another directory w/o pipe.
XCOPY c:example1.fil w:temp

35. Xcopy a file to another directory w/o pipe.
XCOPY c:example1.fil w:temp*example1.fil

36. Use mode.com to truncate a string.
:: truncate one character, or up to and including a delimiter.
MODE name.ext
:: returns: Invalid parameter - name
MODE think/
:: returns: Invalid parameter - thin

37. Determine if a file is a 0 byte file without deleting it.
:: is0byte.bat
@ECHO off
COPY>nul %1 nul |FIND "1 file(s) copied"
IF not errorlevel=1 ECHO %1 is not a 0 byte file
IF errorlevel=1 ECHO %1 is a 0 byte file

:: is0byte2.bat
COPY %1 nul |FIND " 0 file" >nul
IF not errorlevel=1 ECHO %1 is a 0 byte file
IF errorlevel=1 ECHO %1 is not a 0 byte file

38. Place a line without a CR/LF (Carriage Return/Line Feed) into a file.
After creating this input file which has an End Of File character as its last character, you can TYPE the input file into a new batch file which will not have a CR/LF. See FAQ 57.
:: setvar.inp
@ECHO off
:: EOF character created in edit by Ctrl+P+Z
SET %1=EOF

39. Get input from file into variable.
Where result1.dat contains command output or other text. This example places the current directory into a variable.
:: result.bat
@ECHO off
CD > result1.dat ECHO. >> result1.dat
DATE <> result1.bat
ECHO set curdir=%%4> enter.bat
FOR %%C IN (CALL DEL) DO %%C result1.bat
DEL enter.bat
:: %optional% DEL result1.dat
:: %optional% ECHO. current directory is %curdir%

40. Timestamp and/or datestamp (touch) a file with the current system date and time.
COPY/Y filename /B+,,

41. Parse a string with the / (slash) character.
ECHO>01/31/2000
results in a file named 01 which contains:
/31/2000

ECHO set var=>01/31/2000
results in a file named 01 which contains:
set var=/31/2000

42. Remove a leading / (slash) character from a string.
ECHO/31/2000
results in:
31/2000

43. A pause which requires Ctrl+Break instead of any key.
After Ctrl+Break, there is the usual choice to continue or abort.
COMMAND nul /CECHO ;|CHOICE /C; /N

44. Display number of files in directory, bytes used and bytes free.
DIR/W c:bat |find "y"
Includes subdirectories:
DIR/W/S c:bat |find "y" |more

45. Edit the %path% at the prompt.
After running edpath.bat, use [F3], or [Up Arrow] (if doskey is installed) to edit the path. With this method, a temporary batch will remain in the %temp% directory. This trick courtesy of Laura Fairhead, Laura’s Home Page.
:: edpath.bat
@ECHO off
PATH>%temp%.edpath1.bat
CALL<%temp%.edpath1.bat 46. Get current directory into a variable. This trick courtesy of Laura Fairhead, Laura’s Home Page. :: curdir.bat @SET cd= @SET promp$=%prompt% @PROMPT SET cd$Q$P @CALL>%temp%.setdir.bat
@
% do not delete this line %
@ECHO off
PROMPT %promp$%
FOR %%c IN (CALL DEL) DO %%c %temp%.setdir.bat
ECHO. current directory=%cd%

47. Get current date into a variable.
:: gdate.bat (GetDATE)
@ECHO off
SET gdate1=
ECHO SET date=%%3>%temp%.%%gdate1%%.bat
DIR/A-D/-W/L/-P %temp% | FIND “%%gdate1%%” >%temp%.%%gdate2%%.bat
SET gdate1=%temp%.%%gdate1%%
CALL %temp%.%%gdate2%%.bat
SET gdate1=
DEL %temp%.%%gdate?%%.bat
ECHO. todays date is %date%

48. Get latest (last) file into a variable.
I received a couple of emails about lastfile.bat. Here is a clarification. “Last non hidden/system file” refers to the last file according to physical placement on disk which is not necessarily the last file written to disk.
:: lastfile.bat
@ECHO off
:: Get last non hidden/system file in current directory into
:: variable (last file on disk, but not by date or last modified).
:: Accepts wildcard specification for parameter 1.
SET lastfil=
IF not “%1″==”" FOR %%f in (%1) do set lastfil=%%f
IF “%1″==”" FOR %%f in (*.*) do set lastfil=%%f
IF not “%1″==”" ECHO. last %1 file in directory is %lastfil%
IF “%1″==”" ECHO. last file in directory is %lastfil%

49. Get oldest (1st) file into a variable.
:: 1stfile.bat
@ECHO off
:: Get first non hidden/system file in current directory into
:: variable (1st file on disk, but not by date).
:: Accepts wildcard specification for parameter 1.
IF “%2″==”ReCuRs” GOTO recurs
SET fspec=%1
IF not “%1″==”" FOR %%f in (%1) do %0 %%f ReCuRs
IF “%1″==”" FOR %%f in (*.*) do %0 %%f ReCuRs

:recurs
SET 1stfile=%1
IF not “%fspec%”==”" ECHO. 1st %fspec% file in directory is %1
IF “%fspec%”==”" ECHO. 1st file in directory is %1
::

50. Keep a connection alive.
netstat -e 15
Although it cannot be used as a delay function because it must be broken by a CTRL+C, it is not processor intensive and does not send any packets on the network. However, it acts as a great way to hold a connection open, such as when someone uses a Terminal Service connection, rather than a ping or dir loop. This does a check on net card statistics every 15 seconds, and runs in a loop automatically. –

Free Image Hosting

Banyaknya icon yang terdapat pada desktop bisa jadi cukup mengganggu tampilan. Apalagi kalau letak icon tersebut tidak tertata dengan rapi.

Dengan menggunakan Shock Desktop Anda dapat dengan mudah mengatur posisi atau letak icon pada desktop. Ada beragam layout yang bisa Anda pilih, seperti circle, ellipse, heart, star, dsb.

Free Image Hosting

Untuk mengganti layout icon Anda dapat mengklik kanan icon Shock Desktop yang terdapat di systray, kemudian klik menu Desktop Icon Layout.

Jika Anda pengen mencoba Shock Desktop, Anda bisa download di sini. Softwarenya gratis kok :)

Welcome to WordPress.com. This is your first post. Edit or delete it and start blogging!

My YM

Arsip

Tutorials

Blog Stats

  • 1,177 hits

Translate To

div class='clear'>
Ikuti

Get every new post delivered to your Inbox.