Comment peut on planifier l arret d'un service sous win2K ?
Et apres lancer un defrag d:
puis relancer ce meme service une fois le defrag terminé
Message édité par Grumly- le 09-07-2004 à 16:28:25
Publicité
Posté le 09-07-2004 à 16:28:05
blueteen
Posté le 09-07-2004 à 16:46:54
quel service ?
on pourrait trouver si une ligne de commande est dispo (comme pour apache) pour tuer le service (ça te permettrait de mettre ça dans un simple .bat et dans un planificateur)
sinon il faudrait passer par un logiciel plus avancé, qui tuera la tâche directement.
Grumly-
Powered by swiffer
Posté le 09-07-2004 à 16:58:10
pour arreter le service j'ai trouvé c net stop service
par contre pour planifier la tache de defrag derriere c plus chiant et je trouve pas vu que defrag.exe existe pas sous 2k.
blueteen
Posté le 09-07-2004 à 17:35:09
trouvé sur un forum
Code :
' VBScript source code
'
' Defrag Windows 2000 Script
'
'
' Schedule this script to automate defragmenting.
'
'
set WshShell = CreateObject("WScript.Shell" )
'Launch Defrag from the command line and wait for 2 seconds
WshShell.Run "dfrg.msc"
WScript.Sleep 2000
'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 500
'Send keys to move to top of drive/partition table.
WshShell.SendKeys "{TAB}{HOME}"
WScript.Sleep 501
'Send an ALT-A key to bring down the defrag menu
WshShell.SendKeys "%A"
WScript.Sleep 502
'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 5001
Wend
'Bring the Defragmentation Complete window to the foreground
WshShell.AppActivate "Defragmentation Complete"
WScript.Sleep 503
'Send a tab key to move the focus from View Report button to the Close Button
WshShell.Sendkeys "{TAB}"
Wscript.Sleep 504
'Send key to Close the Defragmentation Complete window