Mumsema.NET

FrMaLeV

Bilgi Dağıtmak İçin El Ele


Geri git   Mumsema.NET >
Bilgisayar ve İnternet
> Bilgisayar Dünyası > Windows XP

Forum Kuralları Bize Ulaşın İletiler Kayıt ol Yardım Ajanda Bütün Forumları okunmuş kabul et

Windows XP'de Sıklıkla Karşılaşılan Sorunlar ve Çözümleri ile ilgili Benzer Konular
7342 Kez Görüntülendi

N73 Sorunlar ve Çözümleri Sorunlar - Problemler - Yardım
Iş hayatında sıklıkla karşılaşılan bazı kavramlar Meslekler G-H-I
10 Basit Adımda Windows XP'de Performans Artırımı Windows XP
WINDOWS XP'de tüm çalıştır komutları Windows XP
Windows XP'de yarayacak bir kaç bilgi Windows XP

Dosya Gizleme/Gizli Dosyaları Gösterme | Amvo virüsünden kurtulma
Cevapla
 
Konu Araçları
Alt 26-05-2007   #1
Profil Bilgileri
Standart Windows XP'de Sıklıkla Karşılaşılan Sorunlar ve Çözümleri

Windows XP'de Sıklıkla Karşılaşılan Sorunlar ve Çözümleri başlıklı yazı Mumsema Windows XP'de Sıklıkla Karşılaşılan Sorunlar ve Çözümleri Forum Alev


Bu yazıda XP kullanırken çoğu kullanıcının karşılaştığı hataların çözümlerini sizlere anlatacağız


Sorun


NTLDR is compressed!

Çözüm

Sistemi XP CD'si ile başlatın ve kurtarma konsoluna geçerek aşağıdaki komutları sırasıyla yazın


Kod:
CD \

ATTRIB -C NTLDR

Sorun

Haldll Bulunamıyor

Çözüm

Sistemi XP CD'si ile başlatın ve kurtarma konsoluna geçerek aşağıdaki komutları sırasıyla yazın

Kod:
Attrib -H -R -S C:\Boot.ini
DEL C:\Boot.ini
BootCfg /Rebuild
Fixboot

Sorun

Karşılam ekranındaki Ginadll hatası

Çözüm

Kod'u not defterine yapıştırın ve uzantısını vbs yaparak kaydedinArdından oluşan dosya üzerinde sağ tıklayarak çalıştırın

Kod:
On Error Resume Next

Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.RegDelete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\GinaDLL"

Message = "Your Windows Logon Screen is restored" & vbCR & vbCR
Message = Message & "You may need to log off/log on, or" & vbCR
Message = Message & "restart for the change to take effect."

X = MsgBox(Message, vbOKOnly, "Done")
Set WshShell = Nothing

Sorun

Bilgisayarım'ın özelliklerini göstermiyorsa veya "Sistem Geri Yükleme" doğru bir şekilde çalışmıyorsa veya rundll32exe ile ilgili bir hatayla karşılaştığınızda,hatayı siz de giderebilirsiniz

Çözüm

Bu hataların sorumlusu,yüksek ihtimalle zarar görmüş Winstadll dosyasıdırWindows/System32 klasöründe bulunan bu dosya çok kolay bir şekilde zarar görebilir

Sorunu gidermek için bilgisayarı yeniden başlatın ve başlatırken "F8" tuşuna basarak Windows Güvenli mod'da açılmasını sağlayınC:windows/inf klasörüne geçin ve SRinf dosyasına sağ tıklayarak "Yükle" 'yi seçinBilgisayarı yenidn başlattığınızda sorun giderilmişse,en son yüklemiş oldğunuz Service Pack'i yeniden yükleyin


Sorun

Açılışta bulunamayan bootini dosyası


Çözüm

Sistemi XP CD'si ile başlatın ve kurtarma konsoluna geçerek aşağıdaki komutu verin
Kod:
Bootcfg /rebuild

Sorun

XP'de kullandığınız masaüstü,umulmadık bir anda tamamen kaybolabilirBu bir sorun olduğu için doğal olarak çözümüde var

Çözüm

Kodları not defterine yapıştırın ve uzantısı vbs yaparak kaydedinArdından oluşan dosya'ya sağ tıklayarak "Komut İstemiyle Aç" 'ı seçin



PHP- Kodu:
'xp_taskbar_desktop_fixall.vbs - Repairs the Taskbar when minimized programs 

don'
t show.
'© Kelly Theriot and Doug Knox - 8/22/2003

Set WSHShell = WScript.CreateObject("WScript.Shell")

Message = "To work correctly, the script will close" & vbCR
Message = Message & "and restart the Windows Explorer shell." & vbCR
Message = Message & "This will not harm your system." & vbCR & vbCR
Message = Message & "Continue?"

X = MsgBox(Message, vbYesNo, "Notice")

If X = 6 Then 

On Error Resume Next

WshShell.RegDelete 

"HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\StuckRects2\"
WshShell.RegDelete 

"HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\StreamMRU\"
WshShell.RegDelete 

"HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Streams\Desktop\"

WshShell.RegDelete "HKCU\Software\Microsoft\Internet Explorer\Explorer 

Bars\{32683183-48a0-441b-a342-7c2a440a9478}\BarSize"

P1 = "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\"

WshShell.RegWrite p1 & "NoBandCustomize", 0, "REG_DWORD"
WshShell.RegWrite p1 & "NoMovingBands", 0, "REG_DWORD"
WshShell.RegWrite p1 & "NoCloseDragDropBands", 0, "REG_DWORD"
WshShell.RegWrite p1 & "NoSetTaskbar", 0, "REG_DWORD"
WshShell.RegWrite p1 & "NoToolbarsOnTaskbar", 0, "REG_DWORD"
WshShell.RegWrite p1 & "NoSaveSettings",0,"REG_DWORD"
WshShell.RegWrite p1 & "NoToolbarsOnTaskbar", 0, "REG_DWORD"
WshShell.RegWrite p1 & "NoSetTaskbar",0,"REG_DWORD"
WshShell.RegWrite p1 & "NoActiveDesktop",0,"REG_DWORD"
WshShell.RegWrite p1 & "ClassicShell",0,"REG_DWORD"

p1 = "HKCU\Software\Microsoft\Windows\CurrentVersion\Group Policy 

Objects\LocalUser\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\

"

WshShell.RegWrite p1 & "NoCloseDragDropBands", 0, "REG_DWORD"
WshShell.RegDelete p1 & "NoMovingBands"

p1 = "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon\Shell"

WshShell.RegWrite p1, "explorer.exe", "REG_SZ"

p1 = "HKCU\Software\Microsoft\Internet Explorer\Explorer 

Bars\{32683183-48a0-441b-a342-7c2a440a9478}\"
WshShell.RegDelete p1 & "BarSize"
WshShell.RegWrite p1, "Media Band", "REG_SZ"

On Error Goto 0

For Each Process in GetObject("winmgmts:"). _
    ExecQuery ("select * from Win32_Process where name='
explorer.exe")
   Process.terminate(0)
Next

MsgBox "
Finished." & vbcr & vbcr & "© Kelly Theriot and Doug Knox", 4096, 

"
Done"

Else

MsgBox "
No changes were made to your system." & vbcr & vbcr & "© Kelly Theriot 

and Doug Knox", 40 

Sorun


WMP İç Uygulama Hatası




Çözüm

Başlat=>Çalıştır => regsvr32 jscriptdll =>ENTER'a basın

Başlat=>Çalıştır => regsvr32 Vbscriptdll => ENTER'a basın


Sorun

Kayıt Defteri Yönetici Tarafından Devredışı Bırakıldı

Çözüm

PHP- Kodu:
'Enable/Disable Registry Editing tools
'
© Doug Knox rev 12/06/99
'This code may be freely distributed/modified

Option Explicit
'
Declare variables
Dim WSHShell
nMyBoxptmustbooterrnumvers
Dim enab
disabjobfuncitemtype

Set WSHShell 
WScript.CreateObject("WScript.Shell")
"HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\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 

Sorun

Bozulan sistem geri yükleme hizmetini yeniden kuralım

Çözüm

Başlat-Çalıştır ==> %Windir%\INF yazın

Açılan klasörde ihtiyacımız olan dosyayı bulabilmemiz için "Gizli Dosya ve Klasör Göster" seçeneğini aktif hale getirmeliyiz

Bunun için şu yolu izleyelim;

Araçlar---Klasör Seçenekleri---Görünüm---Gizli Dosya ve Klasörleri Göster
seçeneğini işaretleyin ve TAMAM'a basarak yapılan değişikliği onaylayın

srinf dosyasını bulun ve sağ tıklayarak YÜKLE 'yi seçinSizden Service Pack 2 cd'sini isteyecektirO yüzden bu işlemlerden önce mutlaka Windows XP SP2 cd'si optik sürücünüz içerisinde olmalıdır


NOT

Eğer daha önce Windows klasörü içerisinde ServicePackFiles\i386 klasörü varsa cd'ye gerek yok demektir

Sizden İstenilecek Olan Dosyalar

FILELISTXML
RSTRUIEXE
SRSYS
SRCLIENTDLL
SRDIAGEXE
SRFRAMEMMF
SRRSTRDLL
SRSVCDLL
SRVSVCDLL



Sorun

Görev Yöneticiniz Yönetici Tarafından Kapatılmıştır

Çözüm

Kodları not defterine yapıştırın ve uzantısnı reg yaparak kaydedinArdından oluşan dosya üzerinde çift tıklayarak girişi onaylayın

PHP- Kodu:
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionPoliciesSystem]
"DisableTaskMgr"=dword:00000000

[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionGroup Policy ObjectsLocalUserSoftwareMicrosoftWindowsCurrentVersionPoliciesSystem]
"DisableTaskMgr"=dword:00000000
"**del.DisableTaskMgr"=" "

[HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionpoliciessystem]
"DisableTaskMgr"=dword:00000000

[HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionWinlogon]
"DisableCAD"=dword:00000000 

Sorun

Windows XP'de tüm uyarı seslerinin kaybolup gitmesi (yalan olması )

Çözüm

Kodları not defterine yapıştırın ve uzantısını reg yaparak kaydedinArdından oluşan dosya üzerinde çift tıklayarak girişi onaylayın

PHP- Kodu:
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USERAppEventsSchemesApps.Default]
@=
"Windows"
"DispFileName"
="@mmsys.cpl,-5856"

[HKEY_CURRENT_USERAppEventsSchemesApps.Default.Default]

[
HKEY_CURRENT_USERAppEventsSchemesApps.Default.Default.Current]
@=
hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,
nbsp;00,5c,00,6d,00,65,00,64,00,69,00,61,00,5c,00,57,00,69,00,6e,00,64,00,6f,00,

nbsp;77,00,73,00,20,00,58,00,50,00,20,00,44,00,69,00,6e,00,67,00,2e,00,77,00,61,

 
00,76,00,00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.Default.Default.Default]
@=
hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,
nbsp;00,5c,00,6d,00,65,00,64,00,69,00,61,00,5c,00,57,00,69,00,6e,00,64,00,6f,00,

nbsp;77,00,73,00,20,00,58,00,50,00,20,00,44,00,69,00,6e,00,67,00,2e,00,77,00,61,

 
00,76,00,00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultAppGPFault]

[
HKEY_CURRENT_USERAppEventsSchemesApps.DefaultAppGPFault.Current]
@=
""

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultAppGPFault.Default]
@=
hex(2):00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultCCSelect]
@=
""

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultClose]

[
HKEY_CURRENT_USERAppEventsSchemesApps.DefaultClose.Current]
@=
""

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultClose.Default]
@=
hex(2):00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultCriticalBatteryAlarm]

[
HKEY_CURRENT_USERAppEventsSchemesApps.DefaultCriticalBatteryAlarm.Current]
@=
hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,
nbsp;00,5c,00,6d,00,65,00,64,00,69,00,61,00,5c,00,57,00,69,00,6e,00,64,00,6f,00,

nbsp;77,00,73,00,20,00,58,00,50,00,20,00,42,00,61,00,74,00,74,00,65,00,72,00,79,

nbsp;00,20,00,43,00,72,00,69,00,74,00,69,00,63,00,61,00,6c,00,2e,00,77,00,61,00,

 
76,00,00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultCriticalBatteryAlarm.Default]
@=
hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,
nbsp;00,5c,00,6d,00,65,00,64,00,69,00,61,00,5c,00,57,00,69,00,6e,00,64,00,6f,00,

nbsp;77,00,73,00,20,00,58,00,50,00,20,00,42,00,61,00,74,00,74,00,65,00,72,00,79,

nbsp;00,20,00,43,00,72,00,69,00,74,00,69,00,63,00,61,00,6c,00,2e,00,77,00,61,00,

 
76,00,00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultDeviceConnect]

[
HKEY_CURRENT_USERAppEventsSchemesApps.DefaultDeviceConnect.Current]
@=
hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,
nbsp;00,5c,00,6d,00,65,00,64,00,69,00,61,00,5c,00,57,00,69,00,6e,00,64,00,6f,00,

nbsp;77,00,73,00,20,00,58,00,50,00,20,00,48,00,61,00,72,00,64,00,77,00,61,00,72,

nbsp;00,65,00,20,00,49,00,6e,00,73,00,65,00,72,00,74,00,2e,00,77,00,61,00,76,00,

 
00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultDeviceConnect.Default]
@=
hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,
nbsp;00,5c,00,6d,00,65,00,64,00,69,00,61,00,5c,00,57,00,69,00,6e,00,64,00,6f,00,

nbsp;77,00,73,00,20,00,58,00,50,00,20,00,48,00,61,00,72,00,64,00,77,00,61,00,72,

nbsp;00,65,00,20,00,49,00,6e,00,73,00,65,00,72,00,74,00,2e,00,77,00,61,00,76,00,

 
00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultDeviceDisconnect]

[
HKEY_CURRENT_USERAppEventsSchemesApps.DefaultDeviceDisconnect.Current]
@=
hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,
nbsp;00,5c,00,6d,00,65,00,64,00,69,00,61,00,5c,00,57,00,69,00,6e,00,64,00,6f,00,

nbsp;77,00,73,00,20,00,58,00,50,00,20,00,48,00,61,00,72,00,64,00,77,00,61,00,72,

nbsp;00,65,00,20,00,52,00,65,00,6d,00,6f,00,76,00,65,00,2e,00,77,00,61,00,76,00,

 
00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultDeviceDisconnect.Default]
@=
hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,
nbsp;00,5c,00,6d,00,65,00,64,00,69,00,61,00,5c,00,57,00,69,00,6e,00,64,00,6f,00,

nbsp;77,00,73,00,20,00,58,00,50,00,20,00,48,00,61,00,72,00,64,00,77,00,61,00,72,

nbsp;00,65,00,20,00,52,00,65,00,6d,00,6f,00,76,00,65,00,2e,00,77,00,61,00,76,00,

 
00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultDeviceFail]

[
HKEY_CURRENT_USERAppEventsSchemesApps.DefaultDeviceFail.Current]
@=
hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,
nbsp;00,5c,00,6d,00,65,00,64,00,69,00,61,00,5c,00,57,00,69,00,6e,00,64,00,6f,00,

nbsp;77,00,73,00,20,00,58,00,50,00,20,00,48,00,61,00,72,00,64,00,77,00,61,00,72,

 
00,65,00,20,00,46,00,61,00,69,00,6c,00,2e,00,77,00,61,00,76,00,00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultDeviceFail.Default]
@=
hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,
nbsp;00,5c,00,6d,00,65,00,64,00,69,00,61,00,5c,00,57,00,69,00,6e,00,64,00,6f,00,

nbsp;77,00,73,00,20,00,58,00,50,00,20,00,48,00,61,00,72,00,64,00,77,00,61,00,72,

 
00,65,00,20,00,46,00,61,00,69,00,6c,00,2e,00,77,00,61,00,76,00,00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultLowBatteryAlarm]

[
HKEY_CURRENT_USERAppEventsSchemesApps.DefaultLowBatteryAlarm.Current]
@=
hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,
nbsp;00,5c,00,6d,00,65,00,64,00,69,00,61,00,5c,00,57,00,69,00,6e,00,64,00,6f,00,

nbsp;77,00,73,00,20,00,58,00,50,00,20,00,42,00,61,00,74,00,74,00,65,00,72,00,79,

 
00,20,00,4c,00,6f,00,77,00,2e,00,77,00,61,00,76,00,00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultLowBatteryAlarm.Default]
@=
hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,
nbsp;00,5c,00,6d,00,65,00,64,00,69,00,61,00,5c,00,57,00,69,00,6e,00,64,00,6f,00,

nbsp;77,00,73,00,20,00,58,00,50,00,20,00,42,00,61,00,74,00,74,00,65,00,72,00,79,

 
00,20,00,4c,00,6f,00,77,00,2e,00,77,00,61,00,76,00,00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultMailBeep]

[
HKEY_CURRENT_USERAppEventsSchemesApps.DefaultMailBeep.Current]
@=
hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,
nbsp;00,5c,00,6d,00,65,00,64,00,69,00,61,00,5c,00,57,00,69,00,6e,00,64,00,6f,00,

nbsp;77,00,73,00,20,00,58,00,50,00,20,00,4e,00,6f,00,74,00,69,00,66,00,79,00,2e,

 
00,77,00,61,00,76,00,00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultMailBeep.Default]
@=
hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,
nbsp;00,5c,00,6d,00,65,00,64,00,69,00,61,00,5c,00,57,00,69,00,6e,00,64,00,6f,00,

nbsp;77,00,73,00,20,00,58,00,50,00,20,00,4e,00,6f,00,74,00,69,00,66,00,79,00,2e,

 
00,77,00,61,00,76,00,00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultMaximize]

[
HKEY_CURRENT_USERAppEventsSchemesApps.DefaultMaximize.Current]
@=
""

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultMaximize.Default]
@=
hex(2):00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultMenuCommand]

[
HKEY_CURRENT_USERAppEventsSchemesApps.DefaultMenuCommand.Current]
@=
""

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultMenuCommand.Default]
@=
hex(2):00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultMenuPopup]

[
HKEY_CURRENT_USERAppEventsSchemesApps.DefaultMenuPopup.Current]
@=
""

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultMenuPopup.Default]
@=
hex(2):00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultMinimize]

[
HKEY_CURRENT_USERAppEventsSchemesApps.DefaultMinimize.Current]
@=
""

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultMinimize.Default]
@=
hex(2):00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultOpen]

[
HKEY_CURRENT_USERAppEventsSchemesApps.DefaultOpen.Current]
@=
""

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultOpen.Default]
@=
hex(2):00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultPrintComplete]

[
HKEY_CURRENT_USERAppEventsSchemesApps.DefaultPrintComplete.Current]
@=
""

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultPrintComplete.Default]
@=
hex(2):00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultRestoreDown]

[
HKEY_CURRENT_USERAppEventsSchemesApps.DefaultRestoreDown.Current]
@=
""

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultRestoreDown.Default]
@=
hex(2):00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultRestoreUp]

[
HKEY_CURRENT_USERAppEventsSchemesApps.DefaultRestoreUp.Current]
@=
""

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultRestoreUp.Default]
@=
hex(2):00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultShowBand]
@=
""

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultSystemAsterisk]

[
HKEY_CURRENT_USERAppEventsSchemesApps.DefaultSystemAsterisk.Current]
@=
hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,
nbsp;00,5c,00,6d,00,65,00,64,00,69,00,61,00,5c,00,57,00,69,00,6e,00,64,00,6f,00,

nbsp;77,00,73,00,20,00,58,00,50,00,20,00,45,00,72,00,72,00,6f,00,72,00,2e,00,77,

 
00,61,00,76,00,00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultSystemAsterisk.Default]
@=
hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,
nbsp;00,5c,00,6d,00,65,00,64,00,69,00,61,00,5c,00,57,00,69,00,6e,00,64,00,6f,00,

nbsp;77,00,73,00,20,00,58,00,50,00,20,00,45,00,72,00,72,00,6f,00,72,00,2e,00,77,

 
00,61,00,76,00,00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultSystemExclamation]

[
HKEY_CURRENT_USERAppEventsSchemesApps.DefaultSystemExclamation.Current]
@=
hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,
nbsp;00,5c,00,6d,00,65,00,64,00,69,00,61,00,5c,00,57,00,69,00,6e,00,64,00,6f,00,

nbsp;77,00,73,00,20,00,58,00,50,00,20,00,45,00,78,00,63,00,6c,00,61,00,6d,00,61,

 
00,74,00,69,00,6f,00,6e,00,2e,00,77,00,61,00,76,00,00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultSystemExclamation.Default]
@=
hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,
nbsp;00,5c,00,6d,00,65,00,64,00,69,00,61,00,5c,00,57,00,69,00,6e,00,64,00,6f,00,

nbsp;77,00,73,00,20,00,58,00,50,00,20,00,45,00,78,00,63,00,6c,00,61,00,6d,00,61,

 
00,74,00,69,00,6f,00,6e,00,2e,00,77,00,61,00,76,00,00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultSystemExit]

[
HKEY_CURRENT_USERAppEventsSchemesApps.DefaultSystemExit.Current]
@=
hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,
nbsp;00,5c,00,6d,00,65,00,64,00,69,00,61,00,5c,00,57,00,69,00,6e,00,64,00,6f,00,

nbsp;77,00,73,00,20,00,58,00,50,00,20,00,53,00,68,00,75,00,74,00,64,00,6f,00,77,

 
00,6e,00,2e,00,77,00,61,00,76,00,00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultSystemExit.Default]
@=
hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,
nbsp;00,5c,00,6d,00,65,00,64,00,69,00,61,00,5c,00,57,00,69,00,6e,00,64,00,6f,00,

nbsp;77,00,73,00,20,00,58,00,50,00,20,00,53,00,68,00,75,00,74,00,64,00,6f,00,77,

 
00,6e,00,2e,00,77,00,61,00,76,00,00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultSystemHand]

[
HKEY_CURRENT_USERAppEventsSchemesApps.DefaultSystemHand.Current]
@=
hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,
nbsp;00,5c,00,6d,00,65,00,64,00,69,00,61,00,5c,00,57,00,69,00,6e,00,64,00,6f,00,

nbsp;77,00,73,00,20,00,58,00,50,00,20,00,43,00,72,00,69,00,74,00,69,00,63,00,61,

 
00,6c,00,20,00,53,00,74,00,6f,00,70,00,2e,00,77,00,61,00,76,00,00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultSystemHand.Default]
@=
hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,
nbsp;00,5c,00,6d,00,65,00,64,00,69,00,61,00,5c,00,57,00,69,00,6e,00,64,00,6f,00,

nbsp;77,00,73,00,20,00,58,00,50,00,20,00,43,00,72,00,69,00,74,00,69,00,63,00,61,

 
00,6c,00,20,00,53,00,74,00,6f,00,70,00,2e,00,77,00,61,00,76,00,00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultSystemNotification]

[
HKEY_CURRENT_USERAppEventsSchemesApps.DefaultSystemNotification.Current]
@=
hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,
nbsp;00,5c,00,6d,00,65,00,64,00,69,00,61,00,5c,00,57,00,69,00,6e,00,64,00,6f,00,

nbsp;77,00,73,00,20,00,58,00,50,00,20,00,42,00,61,00,6c,00,6c,00,6f,00,6f,00,6e,

 
00,2e,00,77,00,61,00,76,00,00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultSystemNotification.Default]
@=
hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,
nbsp;00,5c,00,6d,00,65,00,64,00,69,00,61,00,5c,00,57,00,69,00,6e,00,64,00,6f,00,

nbsp;77,00,73,00,20,00,58,00,50,00,20,00,42,00,61,00,6c,00,6c,00,6f,00,6f,00,6e,

 
00,2e,00,77,00,61,00,76,00,00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultSystemQuestion]

[
HKEY_CURRENT_USERAppEventsSchemesApps.DefaultSystemQuestion.Current]
@=
""

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultSystemQuestion.Default]
@=
hex(2):00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultSystemStart]

[
HKEY_CURRENT_USERAppEventsSchemesApps.DefaultSystemStart.Current]
@=
hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,
nbsp;00,5c,00,6d,00,65,00,64,00,69,00,61,00,5c,00,57,00,69,00,6e,00,64,00,6f,00,

nbsp;77,00,73,00,20,00,58,00,50,00,20,00,53,00,74,00,61,00,72,00,74,00,75,00,70,

 
00,2e,00,77,00,61,00,76,00,00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultSystemStart.Default]
@=
hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,
nbsp;00,5c,00,6d,00,65,00,64,00,69,00,61,00,5c,00,57,00,69,00,6e,00,64,00,6f,00,

nbsp;77,00,73,00,20,00,58,00,50,00,20,00,53,00,74,00,61,00,72,00,74,00,75,00,70,

 
00,2e,00,77,00,61,00,76,00,00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultWindowsLogoff]

[
HKEY_CURRENT_USERAppEventsSchemesApps.DefaultWindowsLogoff.Current]
@=
hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,
nbsp;00,5c,00,6d,00,65,00,64,00,69,00,61,00,5c,00,57,00,69,00,6e,00,64,00,6f,00,

nbsp;77,00,73,00,20,00,58,00,50,00,20,00,4c,00,6f,00,67,00,6f,00,66,00,66,00,20,

 
00,53,00,6f,00,75,00,6e,00,64,00,2e,00,77,00,61,00,76,00,00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultWindowsLogoff.Default]
@=
hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,
nbsp;00,5c,00,6d,00,65,00,64,00,69,00,61,00,5c,00,57,00,69,00,6e,00,64,00,6f,00,

nbsp;77,00,73,00,20,00,58,00,50,00,20,00,4c,00,6f,00,67,00,6f,00,66,00,66,00,20,

 
00,53,00,6f,00,75,00,6e,00,64,00,2e,00,77,00,61,00,76,00,00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultWindowsLogon]

[
HKEY_CURRENT_USERAppEventsSchemesApps.DefaultWindowsLogon.Current]
@=
hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,
nbsp;00,5c,00,6d,00,65,00,64,00,69,00,61,00,5c,00,57,00,69,00,6e,00,64,00,6f,00,

nbsp;77,00,73,00,20,00,58,00,50,00,20,00,4c,00,6f,00,67,00,6f,00,6e,00,20,00,53,

 
00,6f,00,75,00,6e,00,64,00,2e,00,77,00,61,00,76,00,00,00

[HKEY_CURRENT_USERAppEventsSchemesApps.DefaultWindowsLogon.Default]
@=
hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,
nbsp;00,5c,00,6d,00,65,00,64,00,69,00,61,00,5c,00,57,00,69,00,6e,00,64,00,6f,00,

nbsp;77,00,73,00,20,00,58,00,50,00,20,00,4c,00,6f,00,67,00,6f,00,6e,00,20,00,53,

 
00,6f,00,75,00,6e,00,64,00,2e,00,77,00,61,00,76,00,00,00 

Sorun

Sistem Geri Yükleme hizmetini çalıştırdığınızda, yalnızca boş bir takvim ile karşılaşıyorsanız eğer çözüm olarak aşağıdakini deneyebilirsiniz


Çözüm

Kodları not defterine yapıştırınFarklı Kaydet'i seçerek,dosya uzantısına reg yazınKaydedilen dosyaya çift tıklayın ve kaydı onaylayın

PHP- Kodu:
 Windows Registry Editor Version 5.00

  
[HKEY_CLASSES_ROOT.htc]
  
"Content Type"="text/x-component"
  
@="htcfile"

  
[HKEY_CLASSES_ROOTMIMEDatabaseContent Typetext/x-component]
  
"CLSID"="{3050f4f8-98b5-11cf-bb82-00aa00bdce0b}"
  "Extension"
=".htc"

  
[HKEY_CLASSES_ROOTCLSID{3050f4f8-98b5-11cf-bb82-00aa00bdce0b}]
  @=
"Microsoft Html Component"
  
[HKEY_CLASSES_ROOTCLSID{3050f4f8-98b5-11cf-bb82-00aa00bdce0b}InProcServer32]
  @=
"C:\\WINDOWS\\System32\\mshtml.dll"
  "ThreadingModel"
="Apartment""

  [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.htc]
  "
Content Type"="text/x-component"
  @="
htcfile

Sorun

İmzasız Sürücü uyarılarında kafanız karışmasınSürücü imzasız olsa bile sizi uyarmadan direk kurulsun


Çözüm

Başlar>Çalıştır = regedit yazın ve aşağıdaki yolu takip edin

HKEY_CURRENT_USER---Software---Policies---Microsoft---Windows NT---Driver Signing ve sağ panel'de BehaviorOnFailedVerify isminde bir DWORD değeri oluşturunDeğerini "0" olarak ayarlayın


Sorun

Ağ Erişiminde Oluşan "Hata 1606"

Çözüm

Uzantısı vbs yaparak kaydedin ve çalıştırın

PHP- Kodu:
Option Explicit

Dim WSHShell
nMyBoxpitemtypeTitle
Dim FSO
WinFolder

Set FSO 
CreateObject("Scripting.FileSystemObject")
Set WinFolder fso.GetSpecialFolder(0)
Set FSO Nothing

WinFolder 
Left(WinFolder,3)


Set WSHShell WScript.CreateObject("WScript.Shell")
"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\"
p = p & "
Common Administrative Tools"
itemtype = "
REG_SZ"
n = WinFolder & "
Documents and SettingsAll UsersStart MenuProgramsAdministrative Tools"

WSHShell.RegWrite p, n, itemtype
Title = "
Common Administrative Tools are now reset." & vbCR
Title = Title & "
You may need to Log off/Log on or" & vbCR
Title = Title & "
reboot for the change to take effect."
MyBox = MsgBox(Title,4096,"
Finished") 

Sorun

Yardım ve Destek servisim çalışmıyorNe olur yardım edin !

Çözüm

PHP- Kodu:
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionApp PathsHELPCTR.EXE]
@=
"C:\\WINNT\\PCHealth\\HelpCtr\\Binaries\\HelpCtr.exe"

[HKEY_CLASSES_ROOTCLSID{8E82AD02-D1A3-11D2-9374-00C04F72DAF7}]
@=
"Help and Support Services: Upload Manager"
"AppID"
="{8E82AD01-D1A3-11D2-9374-00C04F72DAF7}"
"ThreadingModel"
="Both"

[HKEY_CLASSES_ROOTCLSID{8E82AD03-D1A3-11D2-9374-00C04F72DAF7}]
@=
"Help and Support Services: Connection State"
"AppID"
="{8E82AD01-D1A3-11D2-9374-00C04F72DAF7}"
"ThreadingModel"
="Both"

[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServiceshelpsvc]
"Type"=dword:00000020
"Start"=dword:00000002
"ErrorControl"=dword:00000001
"ImagePath"=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,
74,00,25,00,5c,00,53,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,73,
00,76,00,63,00,68,00,6f,00,73,00,74,00,2e,00,65,00,78,00,65,00,20,00,2d,00,
6b,00,20,00,6e,00,65,00,74,00,73,00,76,00,63,00,73,00,00,00
"DisplayName"="Help and Support"
"DependOnService"
=hex(7):52,00,50,00,43,00,53,00,53,00,00,00,00,00
"DependOnGroup"=hex(7):00,00
"ObjectName"="LocalSystem"
"Description"
="Enables Help and Support Center to run on this computer. If this service is stopped, Help and Support Center will be unavailable. If this service is disabled, any services that explicitly depend on it will fail to start."
"FailureActions"
=hex:80,51,01,00,00,00,00,00,00,00,00,00,03,00,00,00,05,00,03,
00,01,00,00,00,64,00,00,00,01,00,00,00,64,00,00,00,00,00,00,00,64,00,00,00

[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServiceshelpsvcParameters]
"ServiceDll"=hex(2):25,00,57,00,49,00,4e,00,44,00,49,00,52,00,25,00,5c,00,50,
00,43,00,48,00,65,00,61,00,6c,00,74,00,68,00,5c,00,48,00,65,00,6c,00,70,00,
43,00,74,00,72,00,5c,00,42,00,69,00,6e,00,61,00,72,00,69,00,65,00,73,00,5c,
00,70,00,63,00,68,00,73,00,76,00,63,00,2e,00,64,00,6c,00,6c,00,00,00

[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServiceshelpsvcSecurity]
"Security"=hex:01,00,14,80,90,00,00,00,9c,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,60,00,04,00,00,00,00,00,14,00,fd,01,02,00,01,01,00,00,00,00,00,
05,12,00,00,00,00,00,18,00,ff,01,0f,00,01,02,00,00,00,00,00,05,20,00,00,00,
20,02,00,00,00,00,14,00,8d,01,02,00,01,01,00,00,00,00,00,05,0b,00,00,00,00,
00,18,00,fd,01,02,00,01,02,00,00,00,00,00,05,20,00,00,00,23,02,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_MACHINESYSTEMCurrentControlSetServiceshelpsvcEnum]
"0"="Root\\LEGACY_HELPSVC\\0000"
"Count"
=dword:00000001
"NextInstance"=dword:00000001


[HKEY_CLASSES_ROOTCLSID{2559a1f1-21d7-11d4-bdaf-00c04f60b9f0}]
@=
"Help and Support"
"LocalizedString"
="@explorer.exe,-7021"
"InfoTip"
="@explorer.exe,-7001"

[HKEY_CLASSES_ROOTCLSID{2559a1f1-21d7-11d4-bdaf-00c04f60b9f0}DefaultIcon]
@=
hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,
00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,73,00,68,00,
65,00,6c,00,6c,00,33,00,32,00,2e,00,64,00,6c,00,6c,00,2c,00,2d,00,32,00,34,
00,00,00

[HKEY_CLASSES_ROOTCLSID{2559a1f1-21d7-11d4-bdaf-00c04f60b9f0}InProcServer32]
@=
hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,
00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,73,00,68,00,
64,00,6f,00,63,00,76,00,77,00,2e,00,64,00,6c,00,6c,00,00,00
"ThreadingModel"="Apartment"

[HKEY_CLASSES_ROOTCLSID{2559a1f1-21d7-11d4-bdaf-00c04f60b9f0}Instance]
"CLSID"="{3f454f0e-42ae-4d7c-8ea3-328250d6e272}"

[HKEY_CLASSES_ROOTCLSID{2559a1f1-21d7-11d4-bdaf-00c04f60b9f0}InstanceInitPropertyBag]
"CLSID"="{13709620-C279-11CE-A49E-444553540000}"
"command"
="@shell32.dll,-12709"
"method"
="Help"

[HKEY_CLASSES_ROOTCLSID{2559a1f1-21d7-11d4-bdaf-00c04f60b9f0}shellex]

[
HKEY_CLASSES_ROOTCLSID{2559a1f1-21d7-11d4-bdaf-00c04f60b9f0}shellexContextMenuHandlers]

[
HKEY_CLASSES_ROOTCLSID{2559a1f1-21d7-11d4-bdaf-00c04f60b9f0}shellexContextMenuHandlers{2559a1f1-21d7-11d4-bdaf-00c04f60b9f0}]
@=
""

[HKEY_CLASSES_ROOTCLSID{2559a1f1-21d7-11d4-bdaf-00c04f60b9f0}shellexMayChangeDefaultMenu]
@=
""

[HKEY_CLASSES_ROOTCLSID{2559a1f1-21d7-11d4-bdaf-00c04f60b9f0}ShellFolder]
"Attributes"=dword:00000000 

Sorun

Windows Update [Hata Kodu: 0x8DDD0009]Çözümü nedir ?Bulana +rep

Çözüm


[Hoşgeldiniz.. Yudumla Ailesine Üye Olmadan Forumdaki Linkleri Göremezsiniz. Üye Olmak İçin Tıklayın...]

Internet Explorer'ı kapatın ve Tanımlama Bilgilerini temizleyin

Başlat-Çalıştır 'a girin ve aşağıdaki komutu vererek update servisini kapatın

net stop wuauserv

Başlat-Çalıştır'a girin ve birer birer dosyaları tazeleyin

regsvr32 wuapidll
regsvr32 wupsdll
regsvr32 wuauengdll
regsvr32 wuaueng1dll
regsvr32 wucltuidll
regsvr32 wuwebdll
regsvr32 MSXML3dll
regsvr32 qmgrdll
regsvr32 qmgrprxydll
regsvr32 jscriptdll


Başlat-Çalıştır'a girin ve update servisini çalıştırın

net start wuauserv


Sorun

XP'deki ikonlarım nedense normalden daha büyük gözüküyorlar


Çözüm

Kod:
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Control Panel\desktop\WindowMetrics]
"Shell Icon BPP"="16"
"Shell Icon Size"="32"

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoSaveSettings"=dword:00000000

Sorun

Sağ tıkladığımda sistem çöküyorRightClick Spy


Çözüm

Kod:
Windows Registry Editor Version 5.00

[-HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers\ShortcutShredXP]  

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\Explorer]
"NoViewContextMenu"=dword:00000000

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoViewContextMenu"=dword:00000000

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoSetTaskbar"=dword:00000000

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoSaveSettings"=dword:00000000

Sorun

Arkadaşlar ben Office kuracağım fakat ürün anahtarını unuttum
Arkadaşlar ben XP kuracağım fakat ürün anahtarını unuttum
Arkadaşlar sevgilim beni terketti


Çözüm



[Hoşgeldiniz.. Yudumla Ailesine Üye Olmadan Forumdaki Linkleri Göremezsiniz. Üye Olmak İçin Tıklayın...]


Sorun

Aman Allahım! ,admin şifremi unuttum


Çözüm



Dosya'yı CD'ye yazdırın ve sistemi bu cd ile başlatın

[Hoşgeldiniz.. Yudumla Ailesine Üye Olmadan Forumdaki Linkleri Göremezsiniz. Üye Olmak İçin Tıklayın...]


Sorun

WMP11,Windows Defender,IE7 gibi lisans doğrulaması isteyen programları "KORSAN" XP'ye kuramıyorumLütfen allah rızası için yardım edin

Çözüm
[Hoşgeldiniz.. Yudumla Ailesine Üye Olmadan Forumdaki Linkleri Göremezsiniz. Üye Olmak İçin Tıklayın...]


Sorun

Microsoft Update'e bağlandıktan bir süre sonra ya da Microsoft Update arkaplan'da çalışmaya başladığında svchostexe servisinin CPU kullanımı %100 'de sabitlenip ,bellek kullanımı ise 100 MB'a kadar ulaşıyorNe yapmalıyım ?

Çözüm

Bu sorun yalnızca Microsoft Update 'i kullananlar için geçerliYalnızca Windows Update 'i kullananlar için bir sorun yok

[Hoşgeldiniz.. Yudumla Ailesine Üye Olmadan Forumdaki Linkleri Göremezsiniz. Üye Olmak İçin Tıklayın...]



*Döküman'ı Hazırlayan*

ICEEXOL


(ForumAlev & WarezDestek)


 

ICEEXOL is offline  
Dantel   Mumsema   Frmacil
Alt 26-05-2007   #2
Profil Bilgileri
Standart --->: Standart Windows XP'de Sıklıkla Karşılaşılan Sorunlar ve Çözümleri




Sorun

XP kurulumu sırasında "STOP 0x0000008e" ya da STOP 0x00000050 PAGE_FAULT_IN_NON_PAGED_AREA hatası alıyorumNe yapmam gerekiyor ?


Çözüm

Sorun büyük bir ihtimal, yanlış konfigüre edilmiş ram modüllerinden kaynaklanıyorEğer 2 adet ram varsa,bir tanesini çıkartın ve kuruluma tekrar geçin



Sorun

Windows SP2 kurulumdan sonra sistem sürekli yeniden başlıyor ve aşağıdaki hatayı veriyor;

0x000000FC (ATTEMPTED_EXECUTE_OF_NOEXECUTE_MEMORY)


Çözüm

Bilgisayar yeniden başladığında güvenli mod'a geçinBaşlat=> Çalıştır => cmd yazın ve aşağıdaki komutu verin;

bootcfg /raw “/noexecute=alwaysoff /fastdetect” /id 1



Sorun

Belirli aralıklarla WinSP2'de DRIVER_IRQL_NOT_LESS_OR_EQUAL hatasını alıyorumNe yapmalıyım ?

Çözüm

[Hoşgeldiniz.. Yudumla Ailesine Üye Olmadan Forumdaki Linkleri Göremezsiniz. Üye Olmak İçin Tıklayın...]


Sorun

Internet Explorer kullanıyorumFakat isteğim dışında anlamsız pencereler açılıyorAyrıca başlangıç sayfam salt mod'a geçmiş durumda,ne önerebilirsiniz ?



Çözüm


Bu bir CWS (CoolWebSearch) zararlısı olabilirAşağıdaki kodları not defterine yapıştırın ve uzantısını reg yaparak kaydedinOluşan dosya üzerinde çift tıklayın ve girişi onaylayın

PHP- Kodu:
REGEDIT4

[HKEY_CURRENT_USERSoftwarePoliciesMicrosoftInternet ExplorerControl Panel]
"GeneralTab"=dword:00000000
"ProgramsTab"=dword:00000000
"SecurityTab"=dword:00000000
"ContentTab"=dword:00000000
"PrivacyTab"=dword:00000000
"AdvancedTab"=dword:00000000
"ConnectionsTab"=dword:00000000
"HomePage"=dword:00000000
"Accessibility"=dword:00000000
"CertifPers"=dword:00000000
"CertifSite"=dword:00000000
"SecChangeSettings"=dword:00000000
"SecAddSites"=dword:00000000
"FormSuggest"=dword:00000000
"FormSuggest Passwords"=dword:00000000
"Connwiz Admin Lock"=dword:00000000
"Settings"=dword:00000000
"ResetWebSettings"=dword:00000000
"Connection Wizard"=dword:00000000

[HKEY_LOCAL_MACHINESoftwarePoliciesMicrosoftInternet ExplorerControl Panel]
"GeneralTab"=dword:00000000
"ProgramsTab"=dword:00000000
"SecurityTab"=dword:00000000
"ContentTab"=dword:00000000
"PrivacyTab"=dword:00000000
"AdvancedTab"=dword:00000000
"ConnectionsTab"=dword:00000000
"HomePage"=dword:00000000
"Accessibility"=dword:00000000
"CertifPers"=dword:00000000
"CertifSite"=dword:00000000
"SecChangeSettings"=dword:00000000
"SecAddSites"=dword:00000000
"FormSuggest"=dword:00000000
"FormSuggest Passwords"=dword:00000000
"Connwiz Admin Lock"=dword:00000000
"Settings"=dword:00000000
"ResetWebSettings"=dword:00000000
"Connection Wizard"=dword:00000000

[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionPoliciesExplorer]
"NoFolderOptions"=dword:00000000

[HKEY_CURRENT_USERSoftwarePoliciesMicrosoftInternet ExplorerRestrictions]
"NoBrowserOptions"=dword:00000000

[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionPoliciesExplorer]
"NoSaveSettings"=dword:00000000 

Sorun

Arkadaşlar Norton Antivirus programını kurdum ve daha sonra kaldırdımFakat antivirüs'ten başka diğer tüm servisleri sistemimde çalışır vaziyette kaldılarBu programdan nasıl kurtulabilirim

Çözüm

Buraya Tıkla


Sorun

Masaüstü ikonlarım tanınmaz bir hale geldiİşte aşağıdaki gibi



Çözüm

[Hoşgeldiniz.. Yudumla Ailesine Üye Olmadan Forumdaki Linkleri Göremezsiniz. Üye Olmak İçin Tıklayın...]


Sorun

WinXP SP2'de Güvenlik Merkezini başlatamıyorumHata 1083 ve benzeri uyarılar veriyorÇözüm istiyorum!!!

Çözüm

[Hoşgeldiniz.. Yudumla Ailesine Üye Olmadan Forumdaki Linkleri Göremezsiniz. Üye Olmak İçin Tıklayın...]


Sorun


Ya arkadaşlar,XP'deki disk birleştirici programında "BİRLEŞTİR" 'e bastığımda program bana kendisini tekrar yüklememi söylüyorBelli ki birşeyler olmuşNasıl yükleyebilirim ?

Çözüm

Gizli Dosyaları Görünür hale getirelim ve başlat-çalıştır'a aşağıdaki yapıştıralım

%Windir%\Inf

Ardından dfrginf dosyasına sağ tıklayalım ve "YÜKLE" 'ye tıklayalım


Sorun

Çalıştır'a defragexe yazıyorumFakat XP,disk birleştirme uygulamasını bulamadığını ya da benzeri bir uyarı veriyor ?

Çözüm

Çalıştır'a aşağıdaki kodları yazarak2 dosyayıda tazeleyelim


regsvr32 dfrgsnapdll
regsvr32 dfrguidll






*Döküman'ı Hazırlayan*

ICEEXOL


(WarezDestek & ForumAlev)


Konu belirli aralıklarla güncellenecektir

 

ICEEXOL is offline  
Alt 27-05-2007   #3
Profil Bilgileri
Standart --->: Windows XP'de Sıklıkla Karşılaşılan Sorunlar ve Çözümleri



teşekkürler,emeğine sağlık işimize yarayacak çok şey var

 

tango is offline  
Alt 07-06-2007   #4
Profil Bilgileri
Standart --->: Windows XP'de Sıklıkla Karşılaşılan Sorunlar ve Çözümleri



KardeŞ Nebde Bİr Sorun Var Bİldgİsayari AÇtiĞimda Ekran Geldİkten Sonra "temp2exe ÇaliŞtirilamadi" Dİye Masa ÜstÜnde Bİr Hata Çikiyorbunu Nasil DÜzeltebİlİrİm Bana Yardimci Olursaniz Sevİnİrİmİyİ Yayinlar Özellİkle Icexool KardeŞ Sana İhtİyacim Var

 

armada72 is offline  
Alt 10-06-2007   #5
Profil Bilgileri
Standart --->: Windows XP'de Sıklıkla Karşılaşılan Sorunlar ve Çözümleri



Walla Cok Güzel Bi Döküman Ellerine Sağlık

 

Capital is offline  
Alt 10-06-2007   #6
Profil Bilgileri
Standart --->: Windows XP'de Sıklıkla Karşılaşılan Sorunlar ve Çözümleri



XP'de kullandığınız masaüstü,umulmadık bir anda tamamen kaybolabilirBu bir sorun olduğu için doğal olarak çözümüde var

Çözüm

Kodları not defterine yapıştırın ve uzantısı vbs yaparak kaydedinArdından oluşan dosya'ya sağ tıklayarak "Komut İstemiyle Aç" 'ı seçin

PHP- Kodu:
'xp_taskbar_desktop_fixall.vbs - Repairs the Taskbar when minimized programs  

don'
t show
'© Kelly Theriot and Doug Knox - 8/22/2003 

Set WSHShell = WScript.CreateObject("WScript.Shell") 

Message = "To work correctly, the script will close" & vbCR 
Message = Message & "and restart the Windows Explorer shell." & vbCR 
Message = Message & "This will not harm your system." & vbCR & vbCR 
Message = Message & "Continue?" 

X = MsgBox(Message, vbYesNo, "Notice") 

If X = 6 Then  

On Error Resume Next 

WshShell.RegDelete  

"HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\StuckRects2\" 
WshShell.RegDelete  

"HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\StreamMRU\" 
WshShell.RegDelete  

"HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Streams\Desktop\" 

WshShell.RegDelete "HKCU\Software\Microsoft\Internet Explorer\Explorer  

Bars\{32683183-48a0-441b-a342-7c2a440a9478}\BarSize" 

P1 = "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\" 

WshShell.RegWrite p1 & "NoBandCustomize", 0, "REG_DWORD" 
WshShell.RegWrite p1 & "NoMovingBands", 0, "REG_DWORD" 
WshShell.RegWrite p1 & "NoCloseDragDropBands", 0, "REG_DWORD" 
WshShell.RegWrite p1 & "NoSetTaskbar", 0, "REG_DWORD" 
WshShell.RegWrite p1 & "NoToolbarsOnTaskbar", 0, "REG_DWORD" 
WshShell.RegWrite p1 & "NoSaveSettings",0,"REG_DWORD" 
WshShell.RegWrite p1 & "NoToolbarsOnTaskbar", 0, "REG_DWORD" 
WshShell.RegWrite p1 & "NoSetTaskbar",0,"REG_DWORD" 
WshShell.RegWrite p1 & "NoActiveDesktop",0,"REG_DWORD" 
WshShell.RegWrite p1 & "ClassicShell",0,"REG_DWORD" 

p1 = "HKCU\Software\Microsoft\Windows\CurrentVersion\Group Policy  

Objects\LocalUser\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\ 



WshShell.RegWrite p1 & "NoCloseDragDropBands", 0, "REG_DWORD" 
WshShell.RegDelete p1 & "NoMovingBands" 

p1 = "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon\Shell" 

WshShell.RegWrite p1, "explorer.exe", "REG_SZ" 

p1 = "HKCU\Software\Microsoft\Internet Explorer\Explorer  

Bars\{32683183-48a0-441b-a342-7c2a440a9478}\" 
WshShell.RegDelete p1 & "BarSize" 
WshShell.RegWrite p1, "Media Band", "REG_SZ" 

On Error Goto 0 

For Each Process in GetObject("winmgmts:"). _ 
    ExecQuery ("select * from Win32_Process where name='
explorer.exe") 
   Process.terminate(0) 
Next 

MsgBox "
Finished." & vbcr & vbcr & "&#169; Kelly Theriot and Doug Knox", 4096,  

"Done" 

Else 

MsgBox "No changes were made to your system." vbcr vbcr "© Kelly Theriot  

and Doug Knox"
40 
arkadaşım bende böyle bir sorun var açıklamışsın ama yapıyorum olmuyor daha deteylı açıklasan iyi olur

 

craxyc is offline  
Alt 11-06-2007   #7
Profil Bilgileri
Standart --->: Windows XP'de Sıklıkla Karşılaşılan Sorunlar ve Çözümleri



Alıntı:
armada72´isimli üyeden Alıntı
KardeŞ Nebde Bİr Sorun Var Bİldgİsayari AÇtiĞimda Ekran Geldİkten Sonra "temp2exe ÇaliŞtirilamadi" Dİye Masa ÜstÜnde Bİr Hata Çikiyorbunu Nasil DÜzeltebİlİrİm Bana Yardimci Olursaniz Sevİnİrİmİyİ Yayinlar Özellİkle Icexool KardeŞ Sana İhtİyacim Var

Muhtemelen sisteminize bir Win32Perlovga trojanı bulaşmıştır

Örnekleri

· Trojan-DropperWin32Smallapl
· Win32Perlovgab
· BackdoorWin32smalllo
· W32/QQRob-ABX
· VirusVbsSmalla


Download

Kod:
http://download.sergiwa.com/security/PRT.exe
Aracın çalışması için gerekli olan yazılım

Kod:
http://download.microsoft.com/download/vb60pro/Redist/sp5/WIN98Me/EN-US/VBRun60sp5.exe

 

ICEEXOL is offline  
Alt 11-06-2007   #8
Profil Bilgileri
Standart --->: Windows XP'de Sıklıkla Karşılaşılan Sorunlar ve Çözümleri



Alıntı:
craxyc´isimli üyeden Alıntı
XP'de kullandığınız masaüstü,umulmadık bir anda tamamen kaybolabilirBu bir sorun olduğu için doğal olarak çözümüde var

Çözüm

Kodları not defterine yapıştırın ve uzantısı vbs yaparak kaydedinArdından oluşan dosya'ya sağ tıklayarak "Komut İstemiyle Aç" 'ı seçin

PHP- Kodu:
'xp_taskbar_desktop_fixall.vbs - Repairs the Taskbar when minimized programs  

don'
t show
'© Kelly Theriot and Doug Knox - 8/22/2003 

Set WSHShell = WScript.CreateObject("WScript.Shell") 

Message = "To work correctly, the script will close" & vbCR 
Message = Message & "and restart the Windows Explorer shell." & vbCR 
Message = Message & "This will not harm your system." & vbCR & vbCR 
Message = Message & "Continue?" 

X = MsgBox(Message, vbYesNo, "Notice") 

If X = 6 Then  

On Error Resume Next 

WshShell.RegDelete  

"HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\StuckRects2\" 
WshShell.RegDelete  

"HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\StreamMRU\" 
WshShell.RegDelete  

"HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Streams\Desktop\" 

WshShell.RegDelete "HKCU\Software\Microsoft\Internet Explorer\Explorer  

Bars\{32683183-48a0-441b-a342-7c2a440a9478}\BarSize" 

P1 = "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\" 

WshShell.RegWrite p1 & "NoBandCustomize", 0, "REG_DWORD" 
WshShell.RegWrite p1 & "NoMovingBands", 0, "REG_DWORD" 
WshShell.RegWrite p1 & "NoCloseDragDropBands", 0, "REG_DWORD" 
WshShell.RegWrite p1 & "NoSetTaskbar", 0, "REG_DWORD" 
WshShell.RegWrite p1 & "NoToolbarsOnTaskbar", 0, "REG_DWORD" 
WshShell.RegWrite p1 & "NoSaveSettings",0,"REG_DWORD" 
WshShell.RegWrite p1 & "NoToolbarsOnTaskbar", 0, "REG_DWORD" 
WshShell.RegWrite p1 & "NoSetTaskbar",0,"REG_DWORD" 
WshShell.RegWrite p1 & "NoActiveDesktop",0,"REG_DWORD" 
WshShell.RegWrite p1 & "ClassicShell",0,"REG_DWORD" 

p1 = "HKCU\Software\Microsoft\Windows\CurrentVersion\Group Policy  

Objects\LocalUser\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\ 



WshShell.RegWrite p1 & "NoCloseDragDropBands", 0, "REG_DWORD" 
WshShell.RegDelete p1 & "NoMovingBands" 

p1 = "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon\Shell" 

WshShell.RegWrite p1, "explorer.exe", "REG_SZ" 

p1 = "HKCU\Software\Microsoft\Internet Explorer\Explorer  

Bars\{32683183-48a0-441b-a342-7c2a440a9478}\" 
WshShell.RegDelete p1 & "BarSize" 
WshShell.RegWrite p1, "Media Band", "REG_SZ" 

On Error Goto 0 

For Each Process in GetObject("winmgmts:"). _ 
    ExecQuery ("select * from Win32_Process where name='
explorer.exe") 
   Process.terminate(0) 
Next 

MsgBox "
Finished." & vbcr & vbcr & "© Kelly Theriot and Doug Knox", 4096,  

"
Done

Else 

MsgBox "
No changes were made to your system." & vbcr & vbcr & "© Kelly Theriot  

and Doug Knox", 40 
arkadaşım bende böyle bir sorun var açıklamışsın ama yapıyorum olmuyor daha deteylı açıklasan iyi olur
Olmuyorsa eğer sorunun başka bişeydir

 

ICEEXOL is offline  
Alt 14-06-2007   #9
Profil Bilgileri
Standart --->: Windows XP'de Sıklıkla Karşılaşılan Sorunlar ve Çözümleri



teşekkürler bilgilerin için saol sayende bilgisayara format cekmeden düzelttik

 

deli_dolu is offline  
Alt 17-06-2007   #10
Profil Bilgileri
Standart --->: Windows XP'de Sıklıkla Karşılaşılan Sorunlar ve Çözümleri



ıceexol kardeş hayırlı günlerbenim xp güncelleme sorunum varxp orjinal olduğu halde (windows 5 güncelleştirme buldu)diye uyarı mesajı alıyorum yükle komutu veriyorum ancak birkaç saniye sonra bazı güncelleştirmeler yüklenemedi uyarısı alıyorumdaha önceki güncellemelerde sorun olmuyordu acaba ben yanlışlıkla bazı ayarlarınımı bozdum? ekranın sağ alt köşesinde sürekli uyarı duruyorcevabınız için şimdiden teşekkürler

 

xxterazixx is offline  
Cevapla
Tags: , , , , ,


Windows XP'de Sıklıkla Karşılaşılan Sorunlar ve Çözümleri ile ilgili Benzer Konular
7342 Kez Görüntülendi

N73 Sorunlar ve Çözümleri Sorunlar - Problemler - Yardım
Iş hayatında sıklıkla karşılaşılan bazı kavramlar Meslekler G-H-I
10 Basit Adımda Windows XP'de Performans Artırımı Windows XP
WINDOWS XP'de tüm çalıştır komutları Windows XP
Windows XP'de yarayacak bir kaç bilgi Windows XP


Saat 09:03.
Arşiv Sayfaları Rüyatadı Mumsema Frmacil Etiket Dantel Modeller Mumsema.Net Add to Google Add to My Yahoo!
Powered by vBulletin® Version 3.6.12 Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Mail Adresimiz Forumalev(at)gmailcom
Moderatör Başvuru Formu

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552