Want to get chkdsk to NOT run on shadow volumes in W2K8
i'm trying set scheduled task runs chkdsk don't want run on shadow volumes. once that's done, want task reboot server. idea have a clean "bill of health" speak before applying updates server. don't believe microsoft makes reboot utility work in instance (or they?) i'm more concerned how chkdsk run specific exclusion on w2k8. ideas or links appreciated.
thanks!
hello,
you can use chkdsk command-line tool check specific volumes.
for example, have 3 volumes, c:, d:, e:, , don't want check d: volume. can write custom script use chkdsk command "chkdsk c:" , "chkdsk e:" check desired disks. can add entry "shutdown -r –t 30" @ end of script computer reboot automatically after chkdsk runs. 3 entries in script should be:
chkdsk c:
chkdsk e:
shutdown -r -t 30
this reference, , should adjust settings need. script, can schedule task check disk periodically.
for more details chkdsk, please refer to:
chkdsk:
i hope helps.
best regards,
chang yin
microsoft online community support
Windows Server > Management
Comments
Post a Comment