Jump to content

Windows 8.1 Gereksiz Servisler .bat Dosyası


 Share

Recommended Posts

Merhaba arkadaşlar ben windows 8.1 64bit kullanıyorum.Her format sonrası windowsun gereksiz servislerini elle kapatmak beni çok yoruyor.Acaba bu servisleri bir tıklamayla otomatik olarak kapatacak bir script yazıp bana yollayabilir misiniz? veya bana bunu nasıl yapacağımı anlatabilirseniz sevinirim.Teşekkürler.

 

Distributed Link Tracking Client
Function Discovery Resource Publication
Diagnostic Policy Service
Windows Media Player Network Sharing Service
Secondary Logon
Fax
Print Spooler
Routing and Remote Access 
BitLocker Drive Encryption Service
Encrypting File System (EFS)
Remote Desktop Configuration
Remote Desktop Services
Smart Card
Windows Firewall
Windows Error Reporting Service
Remote Registry
Windows Defender Service
Family Safety
Smart Card Removal Policy
Bluetooth Support Service
BranchCache
Storage Service
Hyper-V Volume Shadow Copy Requestor
Hyper-V Guest Shutdown Service
Hyper-V Heartbeat Service
Hyper-V Remote Desktop Virtualization Service
Hyper-V Time Synchronization Service
IP Helper
Microsoft iSCSI Initiator Service
Netlogon
Certificate Propagation
SNMP Trap
Application Management
Windows Biometric Service
Windows Connect Now
Offline Files
 
Link to comment
Share on other sites

Yazdığın servislerin birkısmını inceledim. Bunlar zaten gerektiği zaman çalışmak üzere ayarlanmışlar.

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services]
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\AppMgmt]
"Start"=dword:00000003
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\BDESVC]
"Start"=dword:00000003
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\CertPropSvc]
"Start"=dword:00000003
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\CscService]
"Start"=dword:00000003
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\EFS]
"Start"=dword:00000003
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\Fax]
"Start"=dword:00000003

Yukarıdaki registry dosyası gibi bir dosya hazırlarsın (Servislerinin hepsini eklemedim, birkaçını örnek olarak ekledim.) Burada

 

"Start"=dword:00000000       Boot aşamasında çalışan servistir.

 

"Start"=dword:00000001       Sistem yükleme aşamasında çalışan servistir.

 

"Start"=dword:00000002       Otomatik olarak çalışan servistir.

 

"Start"=dword:00000003       Kullanıcı başlatmadıkça başlamayan servistir. Herhangi bir menüye tıklaman bile senin başlatman anlamına gelir. Mesela fax kullanmıyorsun ama fax programını açtığında çalışır.

 

"Start"=dword:00000004       Servis hiçbirzaman çalıştırılmaz.

 

Şimdi registry dosyasını şu şekilde editleyip çalıştırırsan servisleri tamamen kapatmış olursun.

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services]

[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\AppMgmt]
"Start"=dword:00000004

[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\BDESVC]
"Start"=dword:00000004

[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\CertPropSvc]
"Start"=dword:00000004

[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\CscService]
"Start"=dword:00000004

[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\EFS]
"Start"=dword:00000004

[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\Fax]
"Start"=dword:00000004

Windows yüklemesi için gerekli servisleri kapatıp sisteminin açılmaz hala getirirsen yada servislerin ayarlarını karıştırıp sistemin düzgün çalışmaz hale gelirse sorumluluk kabul etmiyorum. Sadece nasıl yapılacağını göstermek için anlatıyorum bunu. Çünkü servislerin çoğu birbirleriyle bağlantılı. Bazen bir servisin çalışması için ondan önce 4-5 servisin düzgün çalışıyor olması gerekiyor. Çok gerekli bir servisin çalışması için gereksiz görülen bir servisi kapattığında gerekli servis çalışmayabilir. "Dependecies" registry anahtarlarında o servisin çalışması için hangi servislere ihtiyaç duyduğu belirtilir.

 

İlla cmd dosyası istiyorsan

@echo off
REG add "HKLM\SYSTEM\ControlSet001\Services\AppMgmt" /v Start /t REG_DWORD /d 4 /f
REG add "HKLM\SYSTEM\ControlSet001\Services\BDESVC" /v Start /t REG_DWORD /d 4 /f
REG add "HKLM\SYSTEM\ControlSet001\Services\CertPropSvc" /v Start /t REG_DWORD /d 4 /f
REG add "HKLM\SYSTEM\ControlSet001\Services\CscService" /v Start /t REG_DWORD /d 4 /f
REG add "HKLM\SYSTEM\ControlSet001\Services\EFS" /v Start /t REG_DWORD /d 4 /f
REG add "HKLM\SYSTEM\ControlSet001\Services\Fax" /v Start /t REG_DWORD /d 4 /f
exit

Edited by liliacin
Link to comment
Share on other sites

Alttaki komutları kopyalayıp not defterine yapıştırıp, ordanda dosya farklı kaydet, uzantısı .bat olacak şekilde kaydetip sonucu yazarsan yardımcı olmaya çalışırım.

[spoiler]

@echo off
@echo . Enter Servisleri DURDUR
@echo . 0 Servisleri BASLAT
set /p _ok=              SECiMiNiZ:
NET STOP "Distributed Link Tracking Client"
NET STOP "Function Discovery Resource Publication"
NET STOP "Diagnostic Policy Service"
NET STOP "Windows Media Player Network Sharing Service"
NET STOP "Secondary Logon"
NET STOP "Fax"
NET STOP "Print Spooler"
NET STOP "Routing and Remote Access "
NET STOP "BitLocker Drive Encryption Service"
NET STOP "Encrypting File System (EFS)"
NET STOP "Remote Desktop Configuration"
NET STOP "Remote Desktop Services"
NET STOP "Smart Card"
NET STOP "Windows Firewall"
NET STOP "Windows Error Reporting Service"
NET STOP "Remote Registry"
NET STOP "Windows Defender Service"
NET STOP "Family Safety"
NET STOP "Smart Card Removal Policy"
NET STOP "Bluetooth Support Service"
NET STOP "BranchCache"
NET STOP "Storage Service"
NET STOP "Hyper-V Volume Shadow Copy Requestor"
NET STOP "Hyper-V Guest Shutdown Service"
NET STOP "Hyper-V Heartbeat Service"
NET STOP "Hyper-V Remote Desktop Virtualization Service"
NET STOP "Hyper-V Time Synchronization Service"
NET STOP "IP Helper"
NET STOP "Microsoft iSCSI Initiator Service"
NET STOP "Netlogon"
NET STOP "Certificate Propagation"
NET STOP "SNMP Trap"
NET STOP "Application Management"
NET STOP "Windows Biometric Service"
NET STOP "Windows Connect Now"
NET STOP "Offline Files"
if "%_ok%" == "0" NET START "Distributed Link Tracking Client"
if "%_ok%" == "0" NET START "Function Discovery Resource Publication"
if "%_ok%" == "0" NET START "Diagnostic Policy Service"
if "%_ok%" == "0" NET START "Windows Media Player Network Sharing Service"
if "%_ok%" == "0" NET START "Secondary Logon"
if "%_ok%" == "0" NET START "Fax"
if "%_ok%" == "0" NET START "Print Spooler"
if "%_ok%" == "0" NET START "Routing and Remote Access "
if "%_ok%" == "0" NET START "BitLocker Drive Encryption Service"
if "%_ok%" == "0" NET START "Encrypting File System (EFS)"
if "%_ok%" == "0" NET START "Remote Desktop Configuration"
if "%_ok%" == "0" NET START "Remote Desktop Services"
if "%_ok%" == "0" NET START "Smart Card"
if "%_ok%" == "0" NET START "Windows Firewall"
if "%_ok%" == "0" NET START "Windows Error Reporting Service"
if "%_ok%" == "0" NET START "Remote Registry"
if "%_ok%" == "0" NET START "Windows Defender Service"
if "%_ok%" == "0" NET START "Family Safety"
if "%_ok%" == "0" NET START "Smart Card Removal Policy"
if "%_ok%" == "0" NET START "Bluetooth Support Service"
if "%_ok%" == "0" NET START "BranchCache"
if "%_ok%" == "0" NET START "Storage Service"
if "%_ok%" == "0" NET START "Hyper-V Volume Shadow Copy Requestor"
if "%_ok%" == "0" NET START "Hyper-V Guest Shutdown Service"
if "%_ok%" == "0" NET START "Hyper-V Heartbeat Service"
if "%_ok%" == "0" NET START "Hyper-V Remote Desktop Virtualization Service"
if "%_ok%" == "0" NET START "Hyper-V Time Synchronization Service"
if "%_ok%" == "0" NET START "IP Helper"
if "%_ok%" == "0" NET START "Microsoft iSCSI Initiator Service"
if "%_ok%" == "0" NET START "Netlogon"
if "%_ok%" == "0" NET START "Certificate Propagation"
if "%_ok%" == "0" NET START "SNMP Trap"
if "%_ok%" == "0" NET START "Application Management"
if "%_ok%" == "0" NET START "Windows Biometric Service"
if "%_ok%" == "0" NET START "Windows Connect Now"
if "%_ok%" == "0" NET START "Offline Files"

[/spoiler]

Link to comment
Share on other sites

Alttaki komutları kopyalayıp not defterine yapıştırıp, ordanda dosya farklı kaydet, uzantısı .bat olacak şekilde kaydetip sonucu yazarsan yardımcı olmaya çalışırım.

[spoiler]

@echo off
@echo . Enter Servisleri DURDUR
@echo . 0 Servisleri BASLAT
set /p _ok=              SECiMiNiZ:
NET STOP "Distributed Link Tracking Client"
NET STOP "Function Discovery Resource Publication"
NET STOP "Diagnostic Policy Service"
NET STOP "Windows Media Player Network Sharing Service"
NET STOP "Secondary Logon"
NET STOP "Fax"
NET STOP "Print Spooler"
NET STOP "Routing and Remote Access "
NET STOP "BitLocker Drive Encryption Service"
NET STOP "Encrypting File System (EFS)"
NET STOP "Remote Desktop Configuration"
NET STOP "Remote Desktop Services"
NET STOP "Smart Card"
NET STOP "Windows Firewall"
NET STOP "Windows Error Reporting Service"
NET STOP "Remote Registry"
NET STOP "Windows Defender Service"
NET STOP "Family Safety"
NET STOP "Smart Card Removal Policy"
NET STOP "Bluetooth Support Service"
NET STOP "BranchCache"
NET STOP "Storage Service"
NET STOP "Hyper-V Volume Shadow Copy Requestor"
NET STOP "Hyper-V Guest Shutdown Service"
NET STOP "Hyper-V Heartbeat Service"
NET STOP "Hyper-V Remote Desktop Virtualization Service"
NET STOP "Hyper-V Time Synchronization Service"
NET STOP "IP Helper"
NET STOP "Microsoft iSCSI Initiator Service"
NET STOP "Netlogon"
NET STOP "Certificate Propagation"
NET STOP "SNMP Trap"
NET STOP "Application Management"
NET STOP "Windows Biometric Service"
NET STOP "Windows Connect Now"
NET STOP "Offline Files"
if "%_ok%" == "0" NET START "Distributed Link Tracking Client"
if "%_ok%" == "0" NET START "Function Discovery Resource Publication"
if "%_ok%" == "0" NET START "Diagnostic Policy Service"
if "%_ok%" == "0" NET START "Windows Media Player Network Sharing Service"
if "%_ok%" == "0" NET START "Secondary Logon"
if "%_ok%" == "0" NET START "Fax"
if "%_ok%" == "0" NET START "Print Spooler"
if "%_ok%" == "0" NET START "Routing and Remote Access "
if "%_ok%" == "0" NET START "BitLocker Drive Encryption Service"
if "%_ok%" == "0" NET START "Encrypting File System (EFS)"
if "%_ok%" == "0" NET START "Remote Desktop Configuration"
if "%_ok%" == "0" NET START "Remote Desktop Services"
if "%_ok%" == "0" NET START "Smart Card"
if "%_ok%" == "0" NET START "Windows Firewall"
if "%_ok%" == "0" NET START "Windows Error Reporting Service"
if "%_ok%" == "0" NET START "Remote Registry"
if "%_ok%" == "0" NET START "Windows Defender Service"
if "%_ok%" == "0" NET START "Family Safety"
if "%_ok%" == "0" NET START "Smart Card Removal Policy"
if "%_ok%" == "0" NET START "Bluetooth Support Service"
if "%_ok%" == "0" NET START "BranchCache"
if "%_ok%" == "0" NET START "Storage Service"
if "%_ok%" == "0" NET START "Hyper-V Volume Shadow Copy Requestor"
if "%_ok%" == "0" NET START "Hyper-V Guest Shutdown Service"
if "%_ok%" == "0" NET START "Hyper-V Heartbeat Service"
if "%_ok%" == "0" NET START "Hyper-V Remote Desktop Virtualization Service"
if "%_ok%" == "0" NET START "Hyper-V Time Synchronization Service"
if "%_ok%" == "0" NET START "IP Helper"
if "%_ok%" == "0" NET START "Microsoft iSCSI Initiator Service"
if "%_ok%" == "0" NET START "Netlogon"
if "%_ok%" == "0" NET START "Certificate Propagation"
if "%_ok%" == "0" NET START "SNMP Trap"
if "%_ok%" == "0" NET START "Application Management"
if "%_ok%" == "0" NET START "Windows Biometric Service"
if "%_ok%" == "0" NET START "Windows Connect Now"
if "%_ok%" == "0" NET START "Offline Files"

[/spoiler]

Bende tüm komutlarda "geçersiz hizmet adı hatası" verdi.

Link to comment
Share on other sites

@halill07 xp'de denediysen çalışmaz yukarıdaki servisler 8 için geçerli

misal tema için ayarlıyayım[spoiler]

@echo off
color 3a
@echo . Enter Tema servisini DURDUR
@echo . 0 Tema servisini BASLAT
set /p _ok= SECiMiNiZ:
net stop "Themes"
if "%_ok%" == "0" net start "Themes"
pause

[/spoiler]

Link to comment
Share on other sites

@halill07 xp'de denediysen çalışmaz yukarıdaki servisler 8 için geçerli

misal tema için ayarlıyayım[spoiler]

@echo off
color 3a
@echo . Enter Tema servisini DURDUR
@echo . 0 Tema servisini BASLAT
set /p _ok= SECiMiNiZ:
net stop "Themes"
if "%_ok%" == "0" net start "Themes"
pause

[/spoiler]

Windows 8.1 update 1 üzerinde denedim.

Link to comment
Share on other sites

  • 1 yıl yıl...

Alttaki komutları kopyalayıp not defterine yapıştırıp, ordanda dosya farklı kaydet, uzantısı .bat olacak şekilde kaydetip sonucu yazarsan yardımcı olmaya çalışırım.

[spoiler]

@echo off
@echo . Enter Servisleri DURDUR
@echo . 0 Servisleri BASLAT
set /p _ok=              SECiMiNiZ:
NET STOP "Distributed Link Tracking Client"
NET STOP "Function Discovery Resource Publication"
NET STOP "Diagnostic Policy Service"
NET STOP "Windows Media Player Network Sharing Service"
NET STOP "Secondary Logon"
NET STOP "Fax"
NET STOP "Print Spooler"
NET STOP "Routing and Remote Access "
NET STOP "BitLocker Drive Encryption Service"
NET STOP "Encrypting File System (EFS)"
NET STOP "Remote Desktop Configuration"
NET STOP "Remote Desktop Services"
NET STOP "Smart Card"
NET STOP "Windows Firewall"
NET STOP "Windows Error Reporting Service"
NET STOP "Remote Registry"
NET STOP "Windows Defender Service"
NET STOP "Family Safety"
NET STOP "Smart Card Removal Policy"
NET STOP "Bluetooth Support Service"
NET STOP "BranchCache"
NET STOP "Storage Service"
NET STOP "Hyper-V Volume Shadow Copy Requestor"
NET STOP "Hyper-V Guest Shutdown Service"
NET STOP "Hyper-V Heartbeat Service"
NET STOP "Hyper-V Remote Desktop Virtualization Service"
NET STOP "Hyper-V Time Synchronization Service"
NET STOP "IP Helper"
NET STOP "Microsoft iSCSI Initiator Service"
NET STOP "Netlogon"
NET STOP "Certificate Propagation"
NET STOP "SNMP Trap"
NET STOP "Application Management"
NET STOP "Windows Biometric Service"
NET STOP "Windows Connect Now"
NET STOP "Offline Files"
if "%_ok%" == "0" NET START "Distributed Link Tracking Client"
if "%_ok%" == "0" NET START "Function Discovery Resource Publication"
if "%_ok%" == "0" NET START "Diagnostic Policy Service"
if "%_ok%" == "0" NET START "Windows Media Player Network Sharing Service"
if "%_ok%" == "0" NET START "Secondary Logon"
if "%_ok%" == "0" NET START "Fax"
if "%_ok%" == "0" NET START "Print Spooler"
if "%_ok%" == "0" NET START "Routing and Remote Access "
if "%_ok%" == "0" NET START "BitLocker Drive Encryption Service"
if "%_ok%" == "0" NET START "Encrypting File System (EFS)"
if "%_ok%" == "0" NET START "Remote Desktop Configuration"
if "%_ok%" == "0" NET START "Remote Desktop Services"
if "%_ok%" == "0" NET START "Smart Card"
if "%_ok%" == "0" NET START "Windows Firewall"
if "%_ok%" == "0" NET START "Windows Error Reporting Service"
if "%_ok%" == "0" NET START "Remote Registry"
if "%_ok%" == "0" NET START "Windows Defender Service"
if "%_ok%" == "0" NET START "Family Safety"
if "%_ok%" == "0" NET START "Smart Card Removal Policy"
if "%_ok%" == "0" NET START "Bluetooth Support Service"
if "%_ok%" == "0" NET START "BranchCache"
if "%_ok%" == "0" NET START "Storage Service"
if "%_ok%" == "0" NET START "Hyper-V Volume Shadow Copy Requestor"
if "%_ok%" == "0" NET START "Hyper-V Guest Shutdown Service"
if "%_ok%" == "0" NET START "Hyper-V Heartbeat Service"
if "%_ok%" == "0" NET START "Hyper-V Remote Desktop Virtualization Service"
if "%_ok%" == "0" NET START "Hyper-V Time Synchronization Service"
if "%_ok%" == "0" NET START "IP Helper"
if "%_ok%" == "0" NET START "Microsoft iSCSI Initiator Service"
if "%_ok%" == "0" NET START "Netlogon"
if "%_ok%" == "0" NET START "Certificate Propagation"
if "%_ok%" == "0" NET START "SNMP Trap"
if "%_ok%" == "0" NET START "Application Management"
if "%_ok%" == "0" NET START "Windows Biometric Service"
if "%_ok%" == "0" NET START "Windows Connect Now"
if "%_ok%" == "0" NET START "Offline Files"

[/spoiler]

 

Windows 8.1 update 3'te hepsinde "Geçersiz Hizmet" hatası veriyor.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...