![]() ![]() |
Mar 20 2008, 10:53 PM
Post
#1
|
|
|
Member ![]() ![]() Group: Members Posts: 11 Joined: 20-March 08 Member No.: 19,517 |
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 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 File(s)
Group_policy1.jpg ( 262.5K )
Number of downloads: 200
Group_policy2.jpg ( 200.58K )
Number of downloads: 169 |
|
|
|
Mar 26 2008, 08:29 PM
Post
#2
|
|
|
Member ![]() ![]() Group: Members Posts: 11 Joined: 20-March 08 Member No.: 19,517 |
just keeping the topic on the front page until its stickied or something lol
Boink! |
|
|
|
Mar 29 2008, 10:26 PM
Post
#3
|
|
|
Member ![]() ![]() Group: Members Posts: 11 Joined: 20-March 08 Member No.: 19,517 |
Boink!
Getting popular now lol |
|
|
|
Apr 4 2008, 03:56 PM
Post
#4
|
|
|
Member ![]() ![]() Group: Members Posts: 11 Joined: 20-March 08 Member No.: 19,517 |
boink lulz
|
|
|
|
Jul 21 2008, 10:27 PM
Post
#5
|
|
|
Advanced Member ![]() ![]() ![]() Group: Members Posts: 413 Joined: 18-July 08 Member No.: 21,882 |
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
Just because something comes up on the REGCleaner section DOES NOT mean that you SHOULD remove it. Do your Registry Cleaning in small bits (at the very least Check-mark by Check-mark) IF USING THE REGISTRY CLEANER ALWAYS BACKUP THE ENTRY YOU NEVER KNOW WHAT YOU'LL BREAK IF YOU DON'T, AND DON'T JUST CLEAN EVERYTHING THAT'S CHECKED OFF. my tinyurl was removed by the admins because someone thought the words in it may offend children. I'm sorry children :P |
|
|
|
Sep 11 2008, 02:07 AM
Post
#6
|
|
![]() Member ![]() ![]() Group: Members Posts: 11 Joined: 8-September 08 From: St. Louis, USA Member No.: 23,089 |
I have this batch file on my business network [mostly made of computer labs; its a university] called Autorun.bat:
CODE @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 |
|
|
|
Sep 11 2008, 02:20 AM
Post
#7
|
|
![]() Keep it simple ! ![]() ![]() ![]() ![]() ![]() Group: Members Posts: 2,235 Joined: 18-November 07 From: Maryland U.S.A. Member No.: 17,197 |
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 Hi Panda, I sure hope that squirrel doesn't gag too much, too often. 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, |
|
|
|
Oct 14 2008, 05:49 PM
Post
#8
|
|
![]() try to stay calm ![]() Group: Moderators Posts: 5,836 Joined: 6-May 05 From: Huddersfield uk Member No.: 1,555 |
I'll sticky this to help when people ask about it. |
|
|
|
Dec 10 2008, 01:17 PM
Post
#9
|
|
|
Newbie ![]() Group: Members Posts: 1 Joined: 9-December 08 Member No.: 25,238 |
Hmmm. How can I use the
%username%, %userprofile% variables & etc? |
|
|
|
Dec 10 2008, 06:47 PM
Post
#10
|
|
|
Advanced Member ![]() ![]() ![]() Group: Members Posts: 413 Joined: 18-July 08 Member No.: 21,882 |
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
Just because something comes up on the REGCleaner section DOES NOT mean that you SHOULD remove it. Do your Registry Cleaning in small bits (at the very least Check-mark by Check-mark) IF USING THE REGISTRY CLEANER ALWAYS BACKUP THE ENTRY YOU NEVER KNOW WHAT YOU'LL BREAK IF YOU DON'T, AND DON'T JUST CLEAN EVERYTHING THAT'S CHECKED OFF. my tinyurl was removed by the admins because someone thought the words in it may offend children. I'm sorry children :P |
|
|
|
Dec 13 2008, 08:22 AM
Post
#11
|
|
|
Newbie ![]() Group: Members Posts: 3 Joined: 13-December 08 Member No.: 25,310 |
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. -------------------- |
|
|
|
Jan 22 2009, 08:12 PM
Post
#12
|
|
|
Newbie ![]() Group: Members Posts: 4 Joined: 22-January 09 Member No.: 26,200 |
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 |
|
|
|
Jan 29 2009, 05:29 PM
Post
#13
|
|
|
Newbie ![]() Group: Members Posts: 7 Joined: 28-January 09 Member No.: 26,327 |
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 |
|
|
|
Jan 30 2009, 03:01 PM
Post
#14
|
|
|
Newbie ![]() Group: Members Posts: 7 Joined: 28-January 09 Member No.: 26,327 |
Moderator!
Please, be kind and answe my question, too? Thank you. LC email address removed by moderator to avoid spamming[/i] [/quote] |
|
|
|
Jan 30 2009, 04:29 PM
Post
#15
|
|
![]() try to stay calm ![]() Group: Moderators Posts: 5,836 Joined: 6-May 05 From: Huddersfield uk Member No.: 1,555 |
|
|
|
|
Jan 31 2009, 06:35 PM
Post
#16
|
|
|
Newbie ![]() Group: Members Posts: 7 Joined: 28-January 09 Member No.: 26,327 |
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 |
|
|
|
Jan 31 2009, 07:10 PM
Post
#17
|
|
![]() Super Power User ![]() ![]() ![]() ![]() ![]() Group: Members Posts: 2,874 Joined: 3-April 05 From: Oshawa, Ont. Canada Member No.: 1,268 |
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 -------------------- "Education is what remains after one has forgotten everything he learned in school." - Albert Einstein
IE7Pro user |
|
|
|
Jan 31 2009, 07:43 PM
Post
#18
|
|
![]() try to stay calm ![]() Group: Moderators Posts: 5,836 Joined: 6-May 05 From: Huddersfield uk Member No.: 1,555 |
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.piriform.com/index.php?showforum=8 I am sure MrRon the official bug fixer will see it. |
|
|
|
Feb 28 2009, 05:36 PM
Post
#19
|
|
|
Member ![]() ![]() Group: Members Posts: 11 Joined: 20-March 08 Member No.: 19,517 |
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 |
|
|
|
Mar 11 2009, 11:13 PM
Post
#20
|
|
|
Newbie ![]() Group: Members Posts: 3 Joined: 11-March 09 Member No.: 27,240 |
Like Mauller07's I would run CCleaner via Group Policy however would do it via login scripts.
![]() 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) ![]() Hope this helps. |
|
|
|
![]() ![]() |
|
Lo-Fi Version | Time is now: 21st November 2009 - 08:13 AM |