Advertisement
f0f077

Untitled

Jan 18th, 2024
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | Software | 0 0
  1. # Stop adobe services
  2. Get-Service -DisplayName Adobe* | Stop-Service -Force -Confirm:$false
  3.  
  4.  
  5. # This will Stop the Services, and change the startup from Automatic to Manual - Opening Adobe Applications will start these services, without your interaction. If you have issues, you can manually start them by replacing Get-Service with Start-Service, or open the Services Panel with WindowsKey+R: "services.msc"
  6. # Setting Startup to Manual only needs to be run once. Stopping the services needs to be done each time you exit application, if you don't want background services running. Such as Sync.
  7.  
  8. Get-Service -DisplayName Adobe* | Stop-Service
  9. Get-Service -DisplayName Adobe* | Set-Service -StartupType Manual
  10.  
  11. Get-Service -DisplayName AdobeUpdateService | Stop-Service
  12. Get-Service -DisplayName AdobeUpdateService | Set-Service -StartupType Manual
  13.  
  14. for more:https://cuty.io/vC9i5ABAbQ
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement