Hello,
(My first ever question, so apologies if I break some protocol or miss something obvious)
My question is related to the answer provided here:
http://www.experts-exchange.com/Web_Development/Web_Languages-Standards/ASP/Q_20628560.htmlI have the following:
* A webserver running IIS6 and ASP, and a member of the domain (but *not* a DC)--I'll call it WEB1
* Two other fileservers NOT running IIS, and members of the domain (but *not* a DC)--I'll call them FSVR1 and FSVR2
With one of my pages on
http://web1/site1, I need to copy files from one fileserver to the other. Here's the line of code that trips:
objFSO.CopyFile "\\fsvr1\dir$\dir\*", "\\fsvr2\dir$\dir\", True
I get the following output:
Microsoft VBScript runtime error '800a004c'
Path not found
/site1/include/page1.asp, line 38
On 28 May, 2003, "Silvers5" posted this answer which seems to make sense:
"you can also use a domain account on both servers .. or create the same local account on both servers with the same password.."
My question: I would love to use a domain account. How? I've already attempted to create "IUSR_WEB1" on each fileserver, given it the same password on each, and assigned proper share and NTFS permissions for each share, all to no avail (and I'd rather use a domain account, anyway). I don't think I will be permitted to use "virtual directories" to address this need.
Any advice will be greatly appreciated. I hope I've provided adequate information.