Re: XCOPY in Filter Run Process

2011-04-29 Thread Andrey
You can try something like this (put this in bat file copy.bat) cd C:\ net use X: \\hostname\dir /user:username paZZword 2 mount.log copy %1 X: and run in your workflow @@: cmd.exe /c c:\.copy.bat $FileName$ On Wed, Apr 27, 2011 at 9:58 PM, Bruce Sisk siskbr...@peoplepc.com wrote: I have

Re: XCOPY in Filter Run Process

2011-04-29 Thread Murnane, Phil
list(ARSList) [mailto:arslist@ARSLIST.ORG] On Behalf Of Andrey Sent: Friday, April 29, 2011 02:26 To: arslist@ARSLIST.ORG Subject: Re: XCOPY in Filter Run Process You can try something like this (put this in bat file copy.bat) cd C:\ net use X: \\hostname\dir /user:username paZZword 2 mount.log

XCOPY in Filter Run Process

2011-04-27 Thread Bruce Sisk
I have a short term need to save an attachment from a remedy form to a folder on a mapped network drive. This should be a fairly simple thing...but it is beating me at the moment. Environ: ARS 7.6.04 | Windows 2008 I have a filter run process that is doing the attachment save to the ars

Re: XCOPY in Filter Run Process

2011-04-27 Thread Frank Caruso
I thin you need to have the cmd command in the run process with a switch (witch I forget): cmd xcopy.exe c:\folderx z:\foldery /s /e /k /q On Wed, Apr 27, 2011 at 1:58 PM, Bruce Sisk siskbr...@peoplepc.com wrote: I have a short term need to save an attachment from a remedy form to a folder on

Re: XCOPY in Filter Run Process

2011-04-27 Thread Danny Kellett
@ARSLIST.ORG Subject: XCOPY in Filter Run Process I have a short term need to save an attachment from a remedy form to a folder on a mapped network drive. This should be a fairly simple thing...but it is beating me at the moment. Environ: ARS 7.6.04 | Windows 2008 I have a filter run process

Re: XCOPY in Filter Run Process

2011-04-27 Thread Andrew C Goodall
@ARSLIST.ORG] On Behalf Of Bruce Sisk Sent: Wednesday, April 27, 2011 1:58 PM To: arslist@ARSLIST.ORG Subject: XCOPY in Filter Run Process I have a short term need to save an attachment from a remedy form to a folder on a mapped network drive. This should be a fairly simple thing...but it is beating me

Re: XCOPY in Filter Run Process

2011-04-27 Thread Bruce Sisk
I am using the cmd as part of the command line...it does work by executing it manually from the cmd prompt. bruce -Original Message- From: Andrew C Goodall ago...@jcpenney.com Sent: Apr 27, 2011 3:12 PM To: arslist@ARSLIST.ORG Subject: Re: XCOPY in Filter Run Process I would run

Re: XCOPY in Filter Run Process

2011-04-27 Thread Butera, Joseph
: Wednesday, April 27, 2011 3:17 PM To: arslist@ARSLIST.ORG Subject: Re: XCOPY in Filter Run Process I am using the cmd as part of the command line...it does work by executing it manually from the cmd prompt. bruce -Original Message- From: Andrew C Goodall ago...@jcpenney.com Sent: Apr 27, 2011

Re: XCOPY in Filter Run Process

2011-04-27 Thread Joe Martin D'Souza
: public.remedy.arsystem.general To: arslist@ARSLIST.ORG Subject: Re: XCOPY in Filter Run Process How about running it either through a cmd.exe /c The /c will close it after it has finished. I have found this to work better than having the actual .exe run on its own if I have parameters after. One thing