Net use on scheduled batWindows batch files: .bat vs .cmd?Django - Set Up A Scheduled Job?How to run multiple .BAT files within a .BAT fileIssue with Task Scheduler launching a taskHow can I enable the Windows Server Task Scheduler History recording?Task Scheduler (run whether user is logged on or not)task scheduler on Windows Server 2012 just runs by selecting “Run” (.bat).BAT file not running in task schedulerHaving problems with scheduling of a batch fileRun a .bat file without user credentials in Windows? (or unchanging credentials)
How did Arya survive the stabbing?
Pre-amplifier input protection
I'm in charge of equipment buying but no one's ever happy with what I choose. How to fix this?
How to safely derail a train during transit?
Different result between scanning in Epson's "color negative film" mode and scanning in positive -> invert curve in post?
Why are there no referendums in the US?
Anatomically Correct Strange Women In Ponds Distributing Swords
Why, precisely, is argon used in neutrino experiments?
Increase performance creating Mandelbrot set in python
India just shot down a satellite from the ground. At what altitude range is the resulting debris field?
How long to clear the 'suck zone' of a turbofan after start is initiated?
Is there a problem with hiding "forgot password" until it's needed?
CREATE opcode: what does it really do?
Implement the Thanos sorting algorithm
Proof of work - lottery approach
How to run a prison with the smallest amount of guards?
Avoiding estate tax by giving multiple gifts
System.debug(JSON.Serialize(o)) Not longer shows full string
Method to test if a number is a perfect power?
How to pronounce the slash sign
Crossing the line between justified force and brutality
How to be diplomatic in refusing to write code that breaches the privacy of our users
Opposite of a diet
Go Pregnant or Go Home
Net use on scheduled bat
Windows batch files: .bat vs .cmd?Django - Set Up A Scheduled Job?How to run multiple .BAT files within a .BAT fileIssue with Task Scheduler launching a taskHow can I enable the Windows Server Task Scheduler History recording?Task Scheduler (run whether user is logged on or not)task scheduler on Windows Server 2012 just runs by selecting “Run” (.bat).BAT file not running in task schedulerHaving problems with scheduling of a batch fileRun a .bat file without user credentials in Windows? (or unchanging credentials)
I have this bat file scheduled in a windows server 2008 r2:
net use \ipshareemployees /user:domainuser password
robocopy C:ZucchettiTimbraturesicurezza \ipshareemployees Timbrature_Giornaliere_5min.csv /R:0 /W:0 /v > C:ZucchettiTimbraturesicurezzalogcopia.txt
del "Timbrature_Giornaliere_5min.csv"
If I run the bat manually the it runs fine.
If I run the bat scheduled with windows server 2008 task scheduler wether the user is logged on or not I get the following error in the log:
-------------------------------------------------------------------------------
ROBOCOPY :: Robust File Copy for Windows
-------------------------------------------------------------------------------
Started : Thu Mar 21 16:52:00 2019
2019/03/21 16:52:00 ERROR 1326 (0x0000052E) Getting File System Type of Destination \ipshareemployees
Logon failure: unknown user name or bad password.
Source : C:ZucchettiTimbraturesicurezza
Dest - \ipshareemployees
Files : Timbrature_Giornaliere_5min.csv
Options : /V /COPY:DAT /R:0 /W:0
------------------------------------------------------------------------------
2019/03/21 16:52:00 ERROR 1326 (0x0000052E) Accessing Destination Directory \ipshareemployees
Logon failure: unknown user name or bad password.
How could I make it work in a scheduled bat file?
batch-file scheduled-tasks
add a comment |
I have this bat file scheduled in a windows server 2008 r2:
net use \ipshareemployees /user:domainuser password
robocopy C:ZucchettiTimbraturesicurezza \ipshareemployees Timbrature_Giornaliere_5min.csv /R:0 /W:0 /v > C:ZucchettiTimbraturesicurezzalogcopia.txt
del "Timbrature_Giornaliere_5min.csv"
If I run the bat manually the it runs fine.
If I run the bat scheduled with windows server 2008 task scheduler wether the user is logged on or not I get the following error in the log:
-------------------------------------------------------------------------------
ROBOCOPY :: Robust File Copy for Windows
-------------------------------------------------------------------------------
Started : Thu Mar 21 16:52:00 2019
2019/03/21 16:52:00 ERROR 1326 (0x0000052E) Getting File System Type of Destination \ipshareemployees
Logon failure: unknown user name or bad password.
Source : C:ZucchettiTimbraturesicurezza
Dest - \ipshareemployees
Files : Timbrature_Giornaliere_5min.csv
Options : /V /COPY:DAT /R:0 /W:0
------------------------------------------------------------------------------
2019/03/21 16:52:00 ERROR 1326 (0x0000052E) Accessing Destination Directory \ipshareemployees
Logon failure: unknown user name or bad password.
How could I make it work in a scheduled bat file?
batch-file scheduled-tasks
I'm not sure why, but this solutions seems to work: log on as the user that run the schedule, open the credential manager, save the credentials for the network drive, log off. now the scheduler is working.
– Malkavian
Mar 22 at 7:11
If you run the commands manually, it works fine. If you put the commands in a batchfile and have them scheduled, it fails. What if you put the commands in a batchfile and run that batchfile manually? (Or is this what you meant?)
– Dominique
Mar 22 at 8:04
add a comment |
I have this bat file scheduled in a windows server 2008 r2:
net use \ipshareemployees /user:domainuser password
robocopy C:ZucchettiTimbraturesicurezza \ipshareemployees Timbrature_Giornaliere_5min.csv /R:0 /W:0 /v > C:ZucchettiTimbraturesicurezzalogcopia.txt
del "Timbrature_Giornaliere_5min.csv"
If I run the bat manually the it runs fine.
If I run the bat scheduled with windows server 2008 task scheduler wether the user is logged on or not I get the following error in the log:
-------------------------------------------------------------------------------
ROBOCOPY :: Robust File Copy for Windows
-------------------------------------------------------------------------------
Started : Thu Mar 21 16:52:00 2019
2019/03/21 16:52:00 ERROR 1326 (0x0000052E) Getting File System Type of Destination \ipshareemployees
Logon failure: unknown user name or bad password.
Source : C:ZucchettiTimbraturesicurezza
Dest - \ipshareemployees
Files : Timbrature_Giornaliere_5min.csv
Options : /V /COPY:DAT /R:0 /W:0
------------------------------------------------------------------------------
2019/03/21 16:52:00 ERROR 1326 (0x0000052E) Accessing Destination Directory \ipshareemployees
Logon failure: unknown user name or bad password.
How could I make it work in a scheduled bat file?
batch-file scheduled-tasks
I have this bat file scheduled in a windows server 2008 r2:
net use \ipshareemployees /user:domainuser password
robocopy C:ZucchettiTimbraturesicurezza \ipshareemployees Timbrature_Giornaliere_5min.csv /R:0 /W:0 /v > C:ZucchettiTimbraturesicurezzalogcopia.txt
del "Timbrature_Giornaliere_5min.csv"
If I run the bat manually the it runs fine.
If I run the bat scheduled with windows server 2008 task scheduler wether the user is logged on or not I get the following error in the log:
-------------------------------------------------------------------------------
ROBOCOPY :: Robust File Copy for Windows
-------------------------------------------------------------------------------
Started : Thu Mar 21 16:52:00 2019
2019/03/21 16:52:00 ERROR 1326 (0x0000052E) Getting File System Type of Destination \ipshareemployees
Logon failure: unknown user name or bad password.
Source : C:ZucchettiTimbraturesicurezza
Dest - \ipshareemployees
Files : Timbrature_Giornaliere_5min.csv
Options : /V /COPY:DAT /R:0 /W:0
------------------------------------------------------------------------------
2019/03/21 16:52:00 ERROR 1326 (0x0000052E) Accessing Destination Directory \ipshareemployees
Logon failure: unknown user name or bad password.
How could I make it work in a scheduled bat file?
batch-file scheduled-tasks
batch-file scheduled-tasks
edited Mar 23 at 9:06
Malkavian
asked Mar 21 at 15:57
MalkavianMalkavian
178
178
I'm not sure why, but this solutions seems to work: log on as the user that run the schedule, open the credential manager, save the credentials for the network drive, log off. now the scheduler is working.
– Malkavian
Mar 22 at 7:11
If you run the commands manually, it works fine. If you put the commands in a batchfile and have them scheduled, it fails. What if you put the commands in a batchfile and run that batchfile manually? (Or is this what you meant?)
– Dominique
Mar 22 at 8:04
add a comment |
I'm not sure why, but this solutions seems to work: log on as the user that run the schedule, open the credential manager, save the credentials for the network drive, log off. now the scheduler is working.
– Malkavian
Mar 22 at 7:11
If you run the commands manually, it works fine. If you put the commands in a batchfile and have them scheduled, it fails. What if you put the commands in a batchfile and run that batchfile manually? (Or is this what you meant?)
– Dominique
Mar 22 at 8:04
I'm not sure why, but this solutions seems to work: log on as the user that run the schedule, open the credential manager, save the credentials for the network drive, log off. now the scheduler is working.
– Malkavian
Mar 22 at 7:11
I'm not sure why, but this solutions seems to work: log on as the user that run the schedule, open the credential manager, save the credentials for the network drive, log off. now the scheduler is working.
– Malkavian
Mar 22 at 7:11
If you run the commands manually, it works fine. If you put the commands in a batchfile and have them scheduled, it fails. What if you put the commands in a batchfile and run that batchfile manually? (Or is this what you meant?)
– Dominique
Mar 22 at 8:04
If you run the commands manually, it works fine. If you put the commands in a batchfile and have them scheduled, it fails. What if you put the commands in a batchfile and run that batchfile manually? (Or is this what you meant?)
– Dominique
Mar 22 at 8:04
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55284514%2fnet-use-on-scheduled-bat%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55284514%2fnet-use-on-scheduled-bat%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
I'm not sure why, but this solutions seems to work: log on as the user that run the schedule, open the credential manager, save the credentials for the network drive, log off. now the scheduler is working.
– Malkavian
Mar 22 at 7:11
If you run the commands manually, it works fine. If you put the commands in a batchfile and have them scheduled, it fails. What if you put the commands in a batchfile and run that batchfile manually? (Or is this what you meant?)
– Dominique
Mar 22 at 8:04