Jump to content

Return to Piriform.com

Running CCleaner over a domain to clean profiles


  • Please log in to reply
34 replies to this topic

#1 OFFLINE   Mauller07

Mauller07

    Member

  • Members
  • PipPip
  • 11 posts

Posted 20 March 2008 - 05:53 PM

I have tried many of the techniques notices and not had any luck with many i even tried to setup Task scheduler to start CCleaner in /AUTO mode at user login to no avail since Active Directory and the type of user logon seems to disable it by default.

Then it dawned on me that Active Directory must have a featue in the General Group Policies to enable a program to be run at login and after an hour of trawling through the local GPO i found a feature that does just what i wanted and many people have been asking for.

Note that i am not trained in the use of windows server and have been doing work at a local school with a relative, being the only on site technitian. they had been having problems with User profiles causing machine slow downs, hangs and crashes, so helping with other general work i mentiond crap cleaner to him. i started to Trawl throught the servers GPO looking for a helpfull feature, also note i have over 6 years of computer building and maintenance experience so it is not like i was going to destory an entire schools Domain and DHCP Host server lol.

so heres the proof in the pudding and try it at your own discrimination, but it works and it works well but will take time to clean the machines completely if your users are machine hoppers since it will only clean the profile of the user that logs on.

CCleaner must be installed on all client computers for this method to be of any effect
running it as a scheduled task on the server couldnt kill either - no damage so far :)

first we find the Run Logon feature in the User Configuration/Administrative Templates/system subset depending on verion of server run it may have another hierarchal order
(server 03 in example Server 08 in Group policy 1 Image)

Then select logon and select the feature "run these programs at user logon"
Select Enable then select SHOW in the square box to bring up the Programs dialogue box
select add and input the path "Installation directory\CCleaner\CCleaner.exe /AUTO"
(example shown in Group policy 2 image)

This is a tried and tested method and i am currently rolling it out over the schools computer network in aid of my relative

Also if you have multiple user policys make sure to add it to every policy or it will only work on the policys you have enabled it on

IE in the school we have a Pupils and a Teachers policy giving different privilages to each group

Sticky this thread as many people have asked about this and without CCleaners ability to clean multiple profiles this seems the only viable option for Domain controlled computers also when CCleaner gains the ability of multiple profile cleaning it would only Aid this method in cleaning profiles instantly as a user logs on as it is far easier then setting up task scheduler on every single computer when all you need is to type in one string on a policy :P

sorry about any bad grammer had a long day and rather tired at this point as ive just setup an entire rooms worth of computers earlier today aswell as having college lol

Your local friendly techie

Attached Files



#2 OFFLINE   Mauller07

Mauller07

    Member

  • Members
  • PipPip
  • 11 posts

Posted 26 March 2008 - 03:29 PM

just keeping the topic on the front page until its stickied or something lol

Boink!

#3 OFFLINE   Mauller07

Mauller07

    Member

  • Members
  • PipPip
  • 11 posts

Posted 29 March 2008 - 05:26 PM

Boink!

Getting popular now lol

#4 OFFLINE   Mauller07

Mauller07

    Member

  • Members
  • PipPip
  • 11 posts

Posted 04 April 2008 - 10:56 AM

boink lulz

#5 OFFLINE   Nergal

Nergal

    Volunteer CCleaner Demon/Post Meddler

  • Moderators
  • 5,291 posts
  • Gender:Male
  • Location:Get off my Lawn, y'darn kids!
  • Interests:being grumpier
    Laughing
    Crying
    Sleep comes Later though.

Posted 21 July 2008 - 05:27 PM

thanks, been tryin to figure out how to do this for ages :)

Will this work with a portable version placed in an all user accessible network folder?
ADVICE FOR USING CCleaner'S REGISTRY INTEGRITY SECTION
DON'T JUST CLEAN EVERYTHING THAT'S CHECKED OFF.
Do your Registry Cleaning in small bits (at the very least Check-mark by Check-mark)
ALWAYS BACKUP THE ENTRY, YOU NEVER KNOW WHAT YOU'LL BREAK IF YOU DON'T.
CCLEANER, RECUVA, DEFRAGGLER AND SPECCY DOCUMENTATION CAN BE FOUND AT www.piriform.com/docs
Link to Winapp2.ini explanation

#6 OFFLINE   StreamlinePanda

StreamlinePanda

    Member

  • Members
  • PipPip
  • 11 posts
  • Gender:Male
  • Location:St. Louis, USA

Posted 10 September 2008 - 09:07 PM

I have this batch file on my business network [mostly made of computer labs; its a university] called Autorun.bat:

@ECHO OFF
schtasks /delete /tn Autoclean /F
schtasks /create /sc onidle /i 180 /tn Autoclean /tr "//networkserver/backgrounds$/CCleaner/autorun.bat" /ru "domain\labuser" /rp "password"
START \\networkserver\backgrounds$\CCleaner\CCleaner.exe /AUTO
EXIT

The \\networkserver\backgrounds$\CCleaner\ directory on the network is a hidden folder for running CCleaner and has all of the CCleaner-related config files and a typical CCleaner install [not the portable]. I mostly use the schtasks recreation ability of this batch file because the lab computers have varying frequencies of use, and some classes last for more than 4 hours.

The main thing I did with CCleaner was set it to remove everything that's not a part of the hard drive image we use at the uni by using a massive include/exclude list that excludes every folder and shortcut that is supposed to be there and includes every directory on the hard drive [very useful for removing games and game shortcuts without going through privilege limitations].

So the batch file lets me configure how often it runs by modifying the batch on the networkserver, lets me configure the erased directories from modifying the config ini files on the network server, and lets me update by downloading new versions and replacing them. This batch is deployed on at least 200 workstations, so I needed a remote management solution that could be deployed with remote scripting :-)

Hope this helps someone out there :D

#7 OFFLINE   davey

davey

    Keep it simple !

  • Members
  • PipPipPipPipPip
  • 2,235 posts
  • Gender:Male
  • Location:Maryland U.S.A.

Posted 10 September 2008 - 09:20 PM

View PostStreamlinePanda, on Sep 10 2008, 10:07 PM, said:

I have this batch file on my business network [mostly made of computer labs; its a university] called Autorun.bat:

@ECHO OFF
schtasks /delete /tn Autoclean /F
schtasks /create /sc onidle /i 180 /tn Autoclean /tr "//networkserver/backgrounds$/CCleaner/autorun.bat" /ru "domain\labuser" /rp "password"
START \\networkserver\backgrounds$\CCleaner\CCleaner.exe /AUTO
EXIT

The \\networkserver\backgrounds$\CCleaner\ directory on the network is a hidden folder for running CCleaner and has all of the CCleaner-related config files and a typical CCleaner install [not the portable]. I mostly use the schtasks recreation ability of this batch file because the lab computers have varying frequencies of use, and some classes last for more than 4 hours.

The main thing I did with CCleaner was set it to remove everything that's not a part of the hard drive image we use at the uni by using a massive include/exclude list that excludes every folder and shortcut that is supposed to be there and includes every directory on the hard drive [very useful for removing games and game shortcuts without going through privilege limitations].

So the batch file lets me configure how often it runs by modifying the batch on the networkserver, lets me configure the erased directories from modifying the config ini files on the network server, and lets me update by downloading new versions and replacing them. This batch is deployed on at least 200 workstations, so I needed a remote management solution that could be deployed with remote scripting :-)

Hope this helps someone out there :D
Hi Panda,
I sure hope that squirrel doesn't gag too much, too often. :lol:
Wow! Thank you. I am sure many can benefit from your report and suggestions.
I'll bet the students would like to find out who you are ?
You are one tuff "Cookie". This is great for the schools, universities etc.


Thank you for your contribution. We love our members, especially one's like you.
Great work,
:) davey

#8 OFFLINE   hazelnut

hazelnut

    try to stay calm

  • Moderators
  • 11,389 posts
  • Gender:Female
  • Location:Huddersfield uk

Posted 14 October 2008 - 12:49 PM

I'll sticky this to help when people ask about it.
CCLEANER, RECUVA, DEFRAGGLER AND SPECCY DOCUMENTATION CAN BE FOUND HERE

http://www.piriform.com/docs

#9 OFFLINE   Klever

Klever

    Newbie

  • Members
  • Pip
  • 1 posts

Posted 10 December 2008 - 08:17 AM

Hmmm. How can I use the
%username%, %userprofile%  variables & etc?

#10 OFFLINE   Nergal

Nergal

    Volunteer CCleaner Demon/Post Meddler

  • Moderators
  • 5,291 posts
  • Gender:Male
  • Location:Get off my Lawn, y'darn kids!
  • Interests:being grumpier
    Laughing
    Crying
    Sleep comes Later though.

Posted 10 December 2008 - 01:47 PM

View PostKlever, on Dec 10 2008, 06:17 AM, said:

Hmmm. How can I use the
%username%, %userprofile%  variables & etc?
Why and where do you want to use them
ADVICE FOR USING CCleaner'S REGISTRY INTEGRITY SECTION
DON'T JUST CLEAN EVERYTHING THAT'S CHECKED OFF.
Do your Registry Cleaning in small bits (at the very least Check-mark by Check-mark)
ALWAYS BACKUP THE ENTRY, YOU NEVER KNOW WHAT YOU'LL BREAK IF YOU DON'T.
CCLEANER, RECUVA, DEFRAGGLER AND SPECCY DOCUMENTATION CAN BE FOUND AT www.piriform.com/docs
Link to Winapp2.ini explanation

#11 OFFLINE   wareup

wareup

    Newbie

  • Members
  • Pip
  • 3 posts
  • Gender:Male

Posted 13 December 2008 - 03:22 AM

I suspect the your CCleaner is not for enterprise use.
Most of the applications will not run on server OS.
I am also thinking that your server is 64bit.
:)

#12 OFFLINE   ring

ring

    Newbie

  • Members
  • Pip
  • 4 posts

Posted 22 January 2009 - 03:12 PM

this is the comand to do it on all turned on PC's on a network useing PS Tools, psexec

psexec -i \\* "C:\Program Files\CCleaner\CCleaner.exe" /AUTO

#13 OFFLINE   LCD

LCD

    Newbie

  • Members
  • Pip
  • 7 posts

Posted 29 January 2009 - 12:29 PM

Please, let me Know why Ccleaner 2.15 and 2.16 arenīt compatible with Windows Millennium?

Thank you.
LC


email address removed by moderator to avoid spamming

#14 OFFLINE   LCD

LCD

    Newbie

  • Members
  • Pip
  • 7 posts

Posted 30 January 2009 - 10:01 AM

Moderator!

Please, be kind and answe my question, too?

Thank you.
LC

email address removed by moderator to avoid spamming[/i]
[/quote]

#15 OFFLINE   hazelnut

hazelnut

    try to stay calm

  • Moderators
  • 11,389 posts
  • Gender:Female
  • Location:Huddersfield uk

Posted 30 January 2009 - 11:29 AM

As far as I know it is

http://docs.piriform...em-requirements
CCLEANER, RECUVA, DEFRAGGLER AND SPECCY DOCUMENTATION CAN BE FOUND HERE

http://www.piriform.com/docs

#16 OFFLINE   LCD

LCD

    Newbie

  • Members
  • Pip
  • 7 posts

Posted 31 January 2009 - 01:35 PM

Moderator

Thank you.
I'm sorry, but you are wrong, as well as the annoucement!
I'm calm. And polited and educated...
Obscurum per obscurius.

Regards
LC

#17 OFFLINE   YoKenny

YoKenny

    Super Power User

  • Members
  • PipPipPipPipPip
  • 2,874 posts
  • Gender:Male
  • Location:Oshawa, Ont. Canada
  • Interests:Helping people get rid of malware on their systems then showing them how not to get re-infected again

Posted 31 January 2009 - 02:10 PM

View PostLCD, on Jan 31 2009, 01:35 PM, said:

Moderator

Thank you.
I'm sorry, but you are wrong, as well as the annoucement!
I'm calm. And polited and educated...
Obscurum per obscurius.

Regards LC

But you are a Newbie  :P
"Education is what remains after one has forgotten everything he learned in school." - Albert Einstein
IE7Pro user

#18 OFFLINE   hazelnut

hazelnut

    try to stay calm

  • Moderators
  • 11,389 posts
  • Gender:Female
  • Location:Huddersfield uk

Posted 31 January 2009 - 02:43 PM

View PostLCD, on Jan 31 2009, 06:35 PM, said:

Moderator

Thank you.
I'm sorry, but you are wrong, as well as the annoucement!
I'm calm. And polited and educated...
Obscurum per obscurius.

Regards
LC


If you would like to start a thread in the bug reporting section here, with some findings you have made

http://forum.pirifor...php?showforum=8

I am sure MrRon the official bug fixer will see it. :)
CCLEANER, RECUVA, DEFRAGGLER AND SPECCY DOCUMENTATION CAN BE FOUND HERE

http://www.piriform.com/docs

#19 OFFLINE   Mauller07

Mauller07

    Member

  • Members
  • PipPip
  • 11 posts

Posted 28 February 2009 - 12:36 PM

View Postring, on Jan 22 2009, 08:12 PM, said:

this is the comand to do it on all turned on PC's on a network useing PS Tools, psexec

psexec -i \\* "C:\Program Files\CCleaner\CCleaner.exe" /AUTO

Thanks for the Input But ive tried this before and it doesnt work when working with GPO's

Been a while since i posted this and all the computers on the network are still working well

regards

#20 OFFLINE   sirwardle

sirwardle

    Newbie

  • Members
  • Pip
  • 4 posts

Posted 11 March 2009 - 06:13 PM

Like Mauller07's I would run CCleaner via Group Policy however would do it via login scripts.

Posted Image

Another diffrance is I would not actually install it on the clients. By putting it on the server when an updated build comes out you only have to update one version and you can centrally control the settings for ccleaner in the ccleaner.ini. This is done by getting the portible version of CCleaner and putting it on a network share, or even better use a hiden network share (to make a share hidden put $ after the share name in the advanced sharing  settings box)

Posted Image

Hope this helps.