SCCM | Intune | Windows 11 Forums

Welcome to the forums. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your topics and posts, as well as connect with other members through your own private inbox!

SOLVED Turn off Auto-Startup for an App using SCCM

Status
Not open for further replies.

iBrokeMySCCM

New Member
Messages
2
Reaction score
1
Points
3
Is there a way to prevent an app from starting up automatically using SCCM? There is an app that is set to auto-start and we need to disable it on all machines. It's a machine-wide startup for all users; not a profile startup option. If I disable it in the local admin account it disables it in all profiles.
 
Last edited:
Solution
Have you considered using scripts to achieve this?. For ex. you can add the line in your script and replace the "AppName" with the actual name of the application you want to disable at startup.

Code:
reg delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Run" /v "AppName" /f
Have you considered using scripts to achieve this?. For ex. you can add the line in your script and replace the "AppName" with the actual name of the application you want to disable at startup.

Code:
reg delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Run" /v "AppName" /f
 
Solution
Have you considered using scripts to achieve this?. For ex. you can add the line in your script and replace the "AppName" with the actual name of the application you want to disable at startup.

Code:
reg delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Run" /v "AppName" /f
I will be pushing this out later in the week. I'll let you know if it's successful. Thanks for the help!
 
Status
Not open for further replies.
Back
Top