How to keep a process freezed until I unfreeze it?

2

Is there any way to freeze a process, which should not run again until I unfreeze it, even if the system is restarted?

The 'Greenify' app can do this for Android. Is there a similar solution for Windows?

As a workaround, what I am doing currently is to see the process location in "process explorer" and rename that exe to something else, so that it can not be called again.

But I know this is a very raw workaround. Is there any better way?

Natasha Sharma aka Nino

Posted 2015-05-02T06:09:31.240

Reputation: 29

I think you want something like Faronics WinSelect – Vinayak – 2015-05-02T10:28:05.223

Does Winselect helps me to select and process and freeze or make it not work unless i unlock it? – Natasha Sharma aka Nino – 2015-05-02T10:31:11.480

That's exactly what WinSelect is for. It locks down access to certain applications unless a password is provided. – Vinayak – 2015-05-02T10:38:14.523

Thanks for reply. I do not want to lock the whole app but may be one or two processes of it. – Natasha Sharma aka Nino – 2015-05-02T16:39:27.430

I'm not sure what you mean by that. Could you clarify? – Vinayak – 2015-05-02T16:55:34.603

Answers

1

For immediate suspension to ensure you're not pausing something that destabilizes your system, PsSuspend from Microsoft SysInternals.

To prevent typically automatic things from running, Start | Run | msconfig. An article on startup program management is at the HowToGeek.

You could also edit the ACL (permissions) of the target EXE and prevent your unprivileged user from executing it. This may be safer than renaming it, because you can login as administrator and still access the file as intended. It may be a special permission (from Advanced permissions rather than top-level) and this answer may assist.

ǝɲǝɲbρɯͽ

Posted 2015-05-02T06:09:31.240

Reputation: 288