Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 SQL Server Administration (2000)
 windows command help

Author  Topic 

pvsramu
Starting Member

17 Posts

Posted - 2007-05-29 : 16:20:39
How to copy the .bak file from another computer(which is on differnt domain)
to local computer using windows commands. I would like to do that file copy
using command prompt.

Here is what I wanted to do:

1) logon to different computer(in different domain)
2) copy the file to local compute
3) disconnect the connection to that computer.

Thanks,
Ramu

funketekun
Constraint Violating Yak Guru

491 Posts

Posted - 2007-05-29 : 21:13:13
something like dis.


\\10.1.1.1/D$
Go to Top of Page

rmiao
Master Smack Fu Yak Hacker

7266 Posts

Posted - 2007-05-29 : 22:56:40
You need valid local admin account on remote server to make connection with 'net use' like:

net use drive \\10.1.1.1\d$ /user:domain\id
Go to Top of Page
   

- Advertisement -