본문 바로가기
카테고리 없음

불필요한 서비스 중단하기

by Knowledge Store In Hyunsoft 2025. 5. 14.
* 이 포스팅은 쿠팡 파트너스 활동의 일환으로 이에 따른 일정액의 수수료를 제공받습니다.

disable-services.ps1

# Windows Search 비활성화
Stop-Service -Name "WSearch" -Force
Set-Service -Name "WSearch" -StartupType Disabled
# Start-Service -Name "WSearch"
# Set-Service -Name "WSearch" -StartupType Automatic

# Waves Audio Service 비활성화 (WavesSvc64)
Stop-Service -Name "WavesSysSvc" -Force
Set-Service -Name "WavesSysSvc" -StartupType Disabled
# Start-Service -Name "WavesSysSvc"
# Set-Service -Name "WavesSysSvc" -StartupType Automatic

# Office ClickToRun 비활성화
Stop-Service -Name "ClickToRunSvc" -Force
Set-Service -Name "ClickToRunSvc" -StartupType Disabled
# Start-Service -Name "ClickToRunSvc"
# Set-Service -Name "ClickToRunSvc" -StartupType Automatic

# Hyper-V VM 관리 서비스 비활성화
Stop-Service -Name "vmms" -Force
Set-Service -Name "vmms" -StartupType Disabled
# Start-Service -Name "vmms"
# Set-Service -Name "vmms" -StartupType Automatic

# Intel Extreme Tuning Utility 비활성화
Stop-Service -Name "XtuService" -Force
Set-Service -Name "XtuService" -StartupType Disabled
# Start-Service -Name "XtuService"
# Set-Service -Name "XtuService" -StartupType Automatic

# Intel Graphics Command Center Service 비활성화
Stop-Service -Name "OneApp.IGCC.WinService" -Force
Set-Service -Name "OneApp.IGCC.WinService" -StartupType Disabled
# Start-Service -Name "OneApp.IGCC.WinService"
# Set-Service -Name "OneApp.IGCC.WinService" -StartupType Automatic

# Intel Graphics Command Center Tray 비활성화
Stop-Service -Name "IGCCTray" -Force
Set-Service -Name "IGCCTray" -StartupType Disabled
# Start-Service -Name "IGCCTray"
# Set-Service -Name "IGCCTray" -StartupType Automatic

# Dell Fan Management 비활성화
Stop-Service -Name "DellFanManagement" -Force
Set-Service -Name "DellFanManagement" -StartupType Disabled
# Start-Service -Name "DellFanManagement"
# Set-Service -Name "DellFanManagement" -StartupType Automatic

# .NET Font Cache 비활성화
Stop-Service -Name "FontCache3.0.0.0" -Force
Set-Service -Name "FontCache3.0.0.0" -StartupType Disabled
# Start-Service -Name "FontCache3.0.0.0"
# Set-Service -Name "FontCache3.0.0.0" -StartupType Automatic

# 위치 프레임워크 서비스 비활성화 (Location Framework)
Stop-Service -Name "lfsvc" -Force
Set-Service -Name "lfsvc" -StartupType Disabled
# Start-Service -Name "lfsvc"
# Set-Service -Name "lfsvc" -StartupType Automatic

# RuntimeBroker 기반 서비스 (주의 필요)
# Stop-Service -Name "BrokerInfrastructure" -Force
# Set-Service -Name "BrokerInfrastructure" -StartupType Disabled
# Start-Service -Name "BrokerInfrastructure"
# Set-Service -Name "BrokerInfrastructure" -StartupType Automatic


# DiagTrack (Connected User Experiences and Telemetry)
Stop-Service -Name "DiagTrack" -Force
Set-Service -Name "DiagTrack" -StartupType Disabled
# Start-Service -Name "DiagTrack"
# Set-Service -Name "DiagTrack" -StartupType Automatic

# SysMain (Superfetch)
Stop-Service -Name "SysMain" -Force
Set-Service -Name "SysMain" -StartupType Disabled
# Start-Service -Name "SysMain"
# Set-Service -Name "SysMain" -StartupType Automatic

# Fax
Stop-Service -Name "Fax" -Force
Set-Service -Name "Fax" -StartupType Disabled
# Start-Service -Name "Fax"
# Set-Service -Name "Fax" -StartupType Automatic

# Print Spooler
Stop-Service -Name "Spooler" -Force
Set-Service -Name "Spooler" -StartupType Disabled
# Start-Service -Name "Spooler"
# Set-Service -Name "Spooler" -StartupType Automatic

# Remote Registry
Stop-Service -Name "RemoteRegistry" -Force
Set-Service -Name "RemoteRegistry" -StartupType Disabled
# Start-Service -Name "RemoteRegistry"
# Set-Service -Name "RemoteRegistry" -StartupType Automatic

# Windows Error Reporting
Stop-Service -Name "WerSvc" -Force
Set-Service -Name "WerSvc" -StartupType Disabled
# Start-Service -Name "WerSvc"
# Set-Service -Name "WerSvc" -StartupType Automatic

# Xbox Game Save
Stop-Service -Name "XblGameSave" -Force
Set-Service -Name "XblGameSave" -StartupType Disabled
# Start-Service -Name "XblGameSave"
# Set-Service -Name "XblGameSave" -StartupType Automatic

# Xbox Accessory Management
Stop-Service -Name "XboxGipSvc" -Force
Set-Service -Name "XboxGipSvc" -StartupType Disabled
# Start-Service -Name "XboxGipSvc"
# Set-Service -Name "XboxGipSvc" -StartupType Automatic

# Xbox Live Networking
Stop-Service -Name "XboxNetApiSvc" -Force
Set-Service -Name "XboxNetApiSvc" -StartupType Disabled
# Start-Service -Name "XboxNetApiSvc"
# Set-Service -Name "XboxNetApiSvc" -StartupType Automatic

 

 

실행이 안될 때

Set-ExecutionPolicy RemoteSigned -Scope CurrentUser

 

실행

.\ disable-services.ps1

 

disable-services.ps1.ps1
0.00MB

 

 

 

https://learn.microsoft.com/ko-kr/sysinternals/downloads/autoruns

 

자동 실행 - Sysinternals

시스템이 부팅되고 로그인할 때 자동으로 시작되도록 구성된 프로그램을 확인하세요.

learn.microsoft.com

 

https://download.sysinternals.com/files/Autoruns.zip

 

728x90

댓글