Üye Girişi
x

Giriş Başarılı.

Yanlış Bilgiler.

E-mail adresinizi doğrulamalısınız.

Facebook'la giriş | Kayıt ol | Şifremi unuttum
İletişim
x

Mesajınız gönderildi.

Mesajınız gönderilemedi.

Güvenlik sorusu yanlış.

Kullandığınız Sosyal Medyayı Seçin
Yeni Klasör 8 yıldır sizin için en güvenli hizmeti veriyor...

Teknoloji dünyasındaki son gelişmeler ve sürpriz hediyelerimiz için bizi takip edin.

Yerel Disk'e Giremiyorum

yerel disk\'e giremiyorum

Forumlar / Teknoloji / Teknik Destek

 
> 1 <

brknnn

grup tuttuğum takım
Onbaşı Grup
Hat durumu Cinsiyet Özel mesaj 193 ileti
Yer: 6 treni
İş: öğrenci
Kayıt: 18-02-2007 13:20

işletim sistemim [+][+3][+5] [-]
kırık link bildirimi Kırık Link Bildir! #304309 07-06-2008 17:18 GMT-1 saat    
İlk Başta avast anti virüs programını yükledim...Daha Sonra Yerel Diske girmeye çalıştım giremedim birlikte aç Yazısı çıktı..Yardım Ederseniz Sevinirim..

Bunu ilk beğenen siz olun

Hata Oluştu


IV
Assassin

grup tuttuğum takım
Yarbay Grup
Hat durumu Cinsiyet Özel mesaj 5117 ileti
Yer: Kayseri
İş: Öğrenci
Kayıt: 12-08-2007 08:15

işletim sistemim [+][+3][+5] [-]
#304312 07-06-2008 17:35 GMT-1 saat    
Önce

bağlantıyı göster (facebook ile) bağlantıyı göster (klasik üye girişi ile) programı yükle ve program sistemdeki autorun.exe veya amvo.exe virüsünü silecektir, sorun düzelmezse

bağlantıyı göster (facebook ile) bağlantıyı göster (klasik üye girişi ile) yap

Bunu ilk beğenen siz olun

Hata Oluştu


Sadece Yazık...

brknnn

grup tuttuğum takım
Onbaşı Grup
Hat durumu Cinsiyet Özel mesaj 193 ileti
Yer: 6 treni
İş: öğrenci
Kayıt: 18-02-2007 13:20

işletim sistemim [+][+3][+5] [-]
#304538 09-06-2008 06:16 GMT-1 saat    
Saol yaptım..Yardımın için saol..

Birde ayrı bi konu açmıyayım burada yazayım çalıştırdan regedit yazıp giremiyorum kayıt defteri düzenleme yöneticiniz tarafından devreden çıkarılmışdiye bir yazı geliyor ne yapmalıyım??

Bunu ilk beğenen siz olun

Hata Oluştu


IV
Assassin

grup tuttuğum takım
Yarbay Grup
Hat durumu Cinsiyet Özel mesaj 5117 ileti
Yer: Kayseri
İş: Öğrenci
Kayıt: 12-08-2007 08:15

işletim sistemim [+][+3][+5] [-]
#304540 09-06-2008 07:13 GMT-1 saat    
Aşağıdakileri bir not defterine kopyala sonra farklı kaydet'de .vbs uzantısı ile kaydet..

Kod:
'Enable/Disable Registry Editing tools
'© Doug Knox - rev 12/06/99
'This code may be freely distributed/modified
Option Explicit
'Declare variables
Dim WSHShell, n, MyBox, p, t, mustboot, errnum, vers
Dim enab, disab, jobfunc, itemtype
Set WSHShell = WScript.CreateObject("WScript.Shell")
p = "HKCU\Software\Microsoft\Windows\CurrentVersion\Pol icies\System\"
p = p & "DisableRegistryTools"
itemtype = "REG_DWORD"
mustboot = "Log off and back on, or restart your pc to" & vbCR & "effect the changes"
enab = "ENABLED"
disab = "DISABLED"
jobfunc = "Registry Editing Tools are now "
'This section tries to read the registry key value. If not present an
'error is generated. Normal error return should be 0 if value is
'present
t = "Confirmation"
Err.Clear
On Error Resume Next
n = WSHShell.RegRead (p)
On Error Goto 0
errnum = Err.Number
if errnum <> 0 then
'Create the registry key value for DisableRegistryTools with value 0
WSHShell.RegWrite p, 0, itemtype
End If
'If the key is present, or was created, it is toggled
'Confirmations can be disabled by commenting out
'the two MyBox lines below
If n = 0 Then
n = 1
WSHShell.RegWrite p, n, itemtype
Mybox = MsgBox(jobfunc & disab & vbCR & mustboot, 4096, t)
ElseIf n = 1 then
n = 0
WSHShell.RegWrite p, n, itemtype
Mybox = MsgBox(jobfunc & enab & vbCR & mustboot, 4096, t)
End If

Bunu ilk beğenen siz olun

Hata Oluştu


Sadece Yazık...

alemci

grup tuttuğum takım
Yüzbaşı Grup
Hat durumu Cinsiyet Özel mesaj 1836 ileti
Yer: Ankara
İş: Muhasebe
Kayıt: 11-05-2006 04:54

işletim sistemim [+][+3][+5] [-]
#304730 11-06-2008 13:17 GMT-1 saat    
Alıntı:
IV™ :
Aşağıdakileri bir not defterine kopyala sonra farklı kaydet'de .vbs uzantısı ile kaydet..

Kod:
'Enable/Disable Registry Editing tools
'© Doug Knox - rev 12/06/99
'This code may be freely distributed/modified
Option Explicit
'Declare variables
Dim WSHShell, n, MyBox, p, t, mustboot, errnum, vers
Dim enab, disab, jobfunc, itemtype
Set WSHShell = WScript.CreateObject("WScript.Shell")
p = "HKCU\Software\Microsoft\Windows\CurrentVersion\Pol icies\System\"
p = p & "DisableRegistryTools"
itemtype = "REG_DWORD"
mustboot = "Log off and back on, or restart your pc to" & vbCR & "effect the changes"
enab = "ENABLED"

????????????
asker psikolojisi bi buk anlamadım :D:D:D:D
disab = "DISABLED"
jobfunc = "Registry Editing Tools are now "
'This section tries to read the registry key value. If not present an
'error is generated. Normal error return should be 0 if value is
'present
t = "Confirmation"
Err.Clear
On Error Resume Next
n = WSHShell.RegRead (p)
On Error Goto 0
errnum = Err.Number
if errnum <> 0 then
'Create the registry key value for DisableRegistryTools with value 0
WSHShell.RegWrite p, 0, itemtype
End If
'If the key is present, or was created, it is toggled
'Confirmations can be disabled by commenting out
'the two MyBox lines below
If n = 0 Then
n = 1
WSHShell.RegWrite p, n, itemtype
Mybox = MsgBox(jobfunc & disab & vbCR & mustboot, 4096, t)
ElseIf n = 1 then
n = 0
WSHShell.RegWrite p, n, itemtype
Mybox = MsgBox(jobfunc & enab & vbCR & mustboot, 4096, t)
End If

Bunu ilk beğenen siz olun

Hata Oluştu


Kan kaybedîyør hayatım.Can çekîşîyør hayaLLerîm..Gîdîyørum..yanLış hayat Døğru yaşanmaz asLında..öğreniyorum



SEFA NERDESİN

bekonic

grup tuttuğum takım
Yüzbaşı Grup
Hat durumu Cinsiyet Özel mesaj 1539 ileti
Yer: Antalya
İş:
Kayıt: 03-04-2006 15:23

işletim sistemim [+][+3][+5] [-]
#305130 17-06-2008 06:52 GMT-1 saat    
Aynısı bendede olmuştu sağ click aç yapıyordum açılıyordu.

Bunu ilk beğenen siz olun

Hata Oluştu


spedy_jack

grup tuttuğum takım
Çavuş Grup
Hat durumu Cinsiyet Özel mesaj 222 ileti
Yer: im Böyle Forumu Ben :)
İş: inizden Bize ne :)
Kayıt: 10-03-2007 10:03

işletim sistemim [+][+3][+5] [-]
#313426 30-07-2008 07:30 GMT-1 saat    
Bende öyle yapıyordum bekonic ama sonra hallettim.ÜStteki arkadaşın dediklerini yapmıştım

Bunu ilk beğenen siz olun

Hata Oluştu




bağlantıyı göster (facebook ile) bağlantıyı göster (klasik üye girişi ile) Bu Gruptaki Herkese Büyük Bir Alkış İstiyorummm




bağlantıyı göster (facebook ile) bağlantıyı göster (klasik üye girişi ile) çσ¢υкℓυğυηυzυ тєкяαя уαşαмαк, gяυвυмυzα кαтıℓмαк ιçιη тıкℓαуıη

avatar

grup tuttuğum takım
Er Grup
Hat durumu Cinsiyet Özel mesaj 27 ileti
Yer:
İş:
Kayıt: 21-01-2008 10:42

işletim sistemim [+][+3][+5] [-]
#320403 23-08-2008 12:03 GMT-1 saat    
kardeş işin kısası anti virüs programını kaldır

Bunu ilk beğenen siz olun

Hata Oluştu


deleefenerlee

grup tuttuğum takım
Er Grup
Hat durumu Cinsiyet Özel mesaj 1 ileti
Yer:
İş:
Kayıt: 17-01-2009 02:08

işletim sistemim [+][+3][+5] [-]
#327512 17-01-2009 02:12 GMT-1 saat    
çok teşekkürler. bendede işe yaradı program :)

Bunu ilk beğenen siz olun

Hata Oluştu


> 1 <