need to copy files from a server outside the domain to a server in

  • Thread starter Thread starter Gilbert
  • Start date Start date
G

Gilbert

I need to copy files from a server outside the domain to a server inside the
domain. I have a batch file that I currently use and I do a scheduled task
but it fails. I need something that can do domain authentication. I'm using
an Active Directory Windows 2003.
 
"Gilbert" <Gilbert@discussions.microsoft.com> wrote in message
news:343E6E36-E9B4-4555-9433-20A656ECE271@microsoft.com...
>I need to copy files from a server outside the domain to a server inside
>the
> domain. I have a batch file that I currently use and I do a scheduled
> task
> but it fails. I need something that can do domain authentication. I'm
> using
> an Active Directory Windows 2003.


Assert your credentials by making a connection like so:

net use \\TargetServer\SomeShare\SomeFolder /user:Domain\Gilbert
SomePassword
 

Similar threads

Back
Top