Sign in
Home
Library
Wiki
Learn
Gallery
Downloads
Support
Forums
Blogs
Resources For IT Professionals
United States (English)
Россия (Pусский)
中国(简体中文)
Brasil (Português)
Post an article
Translate this page
Powered by
Microsoft® Translator
Wikis - Page Details
First published by
Craig Landis
(Microsoft)
When:
15 Aug 2011 10:30 PM
Last revision by
Richard Mueller
(MVP, Microsoft Community Contributor)
When:
7 May 2013 11:53 AM
Revisions:
9
Comments:
9
Options
Subscribe to Article (RSS)
Share this
Can You Improve This Article?
Positively!
Click Sign In to add the tip, solution, correction or comment that will help other users.
Report inappropriate content using
these instructions
.
Wiki
>
TechNet Articles
>
Using Schtasks.exe to Create a Scheduled Task to Download the Sysinternals Tools
Using Schtasks.exe to Create a Scheduled Task to Download the Sysinternals Tools
Article
History
Using Schtasks.exe to Create a Scheduled Task to Download the Sysinternals Tools
Sysinternals
tools have historically been updated with enough frequency that it can be beneficial to periodically check for newer versions.
You can use the Schtasks.exe command-line tool that is included in Windows to create a scheduled task to download the latest Sysinternals tools automatically so the latest versions are always available locally.
This method uses the
\\live.sysinternals.com\tools
WebDAV share to do an xcopy of the tools. This requires the Webclient service be started, and on Windows server versions, Webclient is only available if you have first installed the Desktop Experience feature.
schtasks /create /ru %userdomain%\%username% /rp * /sc weekly /d sun /st 03:00 /tn "Get Sysinternals" /tr "cmd.exe /c md c:\tools & xcopy.exe
\\live.sysinternals.com\tools
c:\tools /y && xcopy.exe
\\live.sysinternals.com\windowsinternals
c:\tools /y"
Using Schtasks to run the task and check its status
You can manually run the task on demand from the command-line with the following command:
schtasks /run /tn "get sysinternals"
Then to check its status while it is running, use:
schtasks /query /tn "get sysinternals"
Other Languages
Schtasks.exe を利用して Sysinternals ツールをダウンロードするタスクを作成する方法 (ja-JP)
Utilizzare Schtask.exe per creare un'operazione pianificata per scaricare i tools Sysinternals (it-IT)
Utilizando Schtasks.exe Para Criar uma Tarefa Agendada para Baixar as Ferramentas do Sysinternals (pt-BR)
en-US
,
has code
,
has comment
,
Multi Language Wiki Articles
,
PowerShell
,
Sysinternals
,
Task Scheduler
Sort by:
Published Date
|
Most Recent
|
Most Useful
Comments
Luigi Bruno
10 Feb 2012 1:20 AM
Useful.
Mehmet PARLAKYİĞİT
8 May 2013 6:43 AM
Thanks
Page 1 of 1 (2 items)