Link to home
Start Free TrialLog in
Avatar of hcp27
hcp27Flag for United States of America

asked on

Trying to find a solution to defrag all workstations on our domain on a schedule after hours

I have been trying to  many different vbscripts and.bat files that are set up to run a chkdsk and defrag all workstations on our domain. I have placed them in \\Domain\netlogon and created a group policy and then added the script to run on start up. I have been unable to get this to execute on any workstation.

I dont' have any problem placing a script on each workstation and running it through scheduled tasks. The problem that I run into there is that defrag will not run unless is an administrator account.

I'm looking for a solution to any of these problems and my last resort is to use a third party defrag application that would run without admin rights.
Avatar of johnb6767
johnb6767
Flag of United States of America image

Perform volume maintenance tasks
http://technet.microsoft.com/en-us/library/cc779312.aspx
Dont think this works on the CLI version of Defrag.exe, but the GUI should work...
Avatar of hcp27

ASKER

I added every user to be able to Perform volume maintenance tasks in the appropriate Group poicy object editor. I tried to run the script on a workstation without admin rights and it still says cannon start task.

I also tried to start defrag manually though system tools and it's still give me the You must have administrator privileges to defragment a volume.
ASKER CERTIFIED SOLUTION
Avatar of Shift-3
Shift-3
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of hcp27

ASKER

Here is the script i'm trying to run. How would you change this?
'Program: CheckAndDefrag.bat
'Author: Pat Lee
'Date: 6/12/2008
 
'Clear all scheduled tasks defined by this script
schtasks /delete /tn "DirtyBit Task" /f
schtasks /delete /tn "Restart Task" /f
schtasks /delete /tn "Defrag Task" /f
 
'Set scheduled tasks to set chkdsk, restart and defrag
schtasks /create /ru "SYSTEM" /sc WEEKLY /d SUN /TN "DirtyBit Task" /tr "c:\windows\system32\fsutil.exe dirty set c:" /st 00:45:00 /sd "01/01/2008"
schtasks /create /ru "SYSTEM" /sc WEEKLY /d SUN /TN "Restart Task" /tr "c:\windows\system32\shutdown.exe -r -t 60" /st 01:00:00 /sd "01/01/2008"
schtasks /create /ru "SYSTEM" /sc WEEKLY /d SUN /TN "Defrag Task" /tr "c:\windows\system32\defrag.exe c:" /st 02:00:00 /sd "01/01/2008"

Open in new window

Avatar of hcp27

ASKER


At this point I'm willing to just use this script that only executes Defrag.exe
set WshShell = CreateObject("WScript.Shell")
 
'Launch Defrag from the command line and wait for a second
WshShell.Run "dfrg.msc"
WScript.Sleep 1000
 
'Wait until the application has loaded - Check every second
While WshShell.AppActivate("Disk Defragmenter") = FALSE
     wscript.sleep 1000
Wend
 
'Bring the application to the foreground
WshShell.AppActivate "Disk Defragmenter"
WScript.Sleep 200
 
'Send an ALT-A key to bring down the degrag menu
WshShell.SendKeys "%A"
WScript.Sleep 200
 
'Send a D to start the defrag
WshShell.SendKeys "D"
 
'Wait until the defrag is completed - Check for window every 5 seconds
While WshShell.AppActivate("Defragmentation Complete") = FALSE
     wscript.sleep 5000
Wend
 
'Bring the msgbox to the foreground
WshShell.AppActivate "Defragmentation Complete"
WScript.Sleep 200
 
'Send a tab key to move the focus from View Report button to the Close Button
WshShell.Sendkeys "{TAB}"
Wscript.Sleep 500
 
'Send key to Close the Defragmentation Complete window
WshShell.Sendkeys "{ENTER}"
Wscript.Sleep 500
 
'Send and ALT-F4 to Close the Defrag program
WshShell.Sendkeys "%{F4}"

Open in new window

That first script looks fine to me.
Avatar of hcp27

ASKER

I set the run as NT AUTHORITY\SYSTEM and then logged into an account that doesnt have the admin rights. It I executed the script and it at least doesn't say that it couldnt start. Will this defrag utility pop up like defrag.exe and show the progress of the defragmentation? I know the restart works cause it will pop up saying that the system is being shutdown by NT AUTHORITY/SYSTEM.
No, the task will not run interactively.  You can see if it is running by checking the Processes tab in Task Manager or looking under the Status column in the Scheduled Tasks window.
Avatar of hcp27

ASKER

Thank you so much for your help. I have been trying to figure this out for a week now and I'm not to familiar with this. Really appreciate everything.

Thanks again