Ask a Question related to ASP Components, Design and Development.
-
Michael Kintner #1
Scripting.FileSystemObject (Problem with Windows 2003 R2)
Strange thing happening with Windows 2000 to Windows 2003 R2
This ASP script below is sitting on a Windows 2000 IIS Server Box and the
fldr was pointing to \\Bradford2\temp which was a Windows 2000 server and
worked great, now I changed the fldr to point to \\Bradford7\temp which is a
Windows 2003 R2 server. After pointing to Windows 2003 R2 box the
FolderExists(fldr) no longer works. The directory is there and all the
permissions are the same from Bradford2 to Bradford7.
Any ideas why Windows 2003 R2 is not working. I found some article of
others having this issues but no fixes.
Dim fldr, fso
fldr = "\\bradford7\temp"
Set fso = CreateObject("Scripting.FileSystemObject")
If NOT fso.FolderExists(fldr) Then
' Folder Found
Else
' Folder Not Found
End If
Thank you in advance,
Michael Kintner
Michael Kintner Guest
-
Can't install MS Windows Scripting 5.6 in Windows 2003 Server
Hi, I'm trying to install the MS Windows Scripting 5.6 or one that Windows 2003 Server able. When I tried it W2003 throughs a message: "MS... -
Alternatives to using Scripting.FileSystemObject
Hi, I've got a freebie hosting mirror of my production personal website (sounds kinda grandiose, doesn't it?) at http://journeys.webhostme.com/.... -
Scripting.FileSystemObject problems
If I comment #2 to #5 no problems. If I uncomment #2, #4 and #5 the page hangs. Even did not reach the point to uncomment #3 So, whats wrong. Do i... -
Scripting.FileSystemObject
Hi everybody, found strange behavior in Scripting.FileSystemObject; only FileExists() method seems to work fine. All other methods cause browser... -
Scripting.FileSystemObject under stress
I'm having intermittent trouble with the Scripting.FileSystemObject. Basically, I'm stress testing my ASP application and using the FSO to output... -
CreateWindow #2
Re: Scripting.FileSystemObject (Problem with Windows 2003 R2)
Hi,
What happens when you use an IP address instead of bradford7 ?
The R2 firewall is not on is it?
CreateWindow
[url]http://justpageprobe.com[/url]
The FREE Web page utility you always wanted.
Monitor your enterprise Web Servers.
Keep your router connected.
Email your IP to where you need it.
"Michael Kintner" <nospam@nospam.com> wrote in message
news:134gr40fb14qtce@corp.supernews.com...> Strange thing happening with Windows 2000 to Windows 2003 R2
>
> This ASP script below is sitting on a Windows 2000 IIS Server Box and the
> fldr was pointing to \\Bradford2\temp which was a Windows 2000 server and
> worked great, now I changed the fldr to point to \\Bradford7\temp which is
> a Windows 2003 R2 server. After pointing to Windows 2003 R2 box the
> FolderExists(fldr) no longer works. The directory is there and all the
> permissions are the same from Bradford2 to Bradford7.
>
> Any ideas why Windows 2003 R2 is not working. I found some article of
> others having this issues but no fixes.
>
> Dim fldr, fso
> fldr = "\\bradford7\temp"
> Set fso = CreateObject("Scripting.FileSystemObject")
> If NOT fso.FolderExists(fldr) Then
> ' Folder Found
> Else
> ' Folder Not Found
> End If
>
> Thank you in advance,
> Michael Kintner
>
CreateWindow Guest
-
Bob Barrows [MVP] #3
Re: Scripting.FileSystemObject (Problem with Windows 2003 R2)
Michael Kintner wrote:
I know you are saying all the permissions are the same, but this is most> Strange thing happening with Windows 2000 to Windows 2003 R2
>
> This ASP script below is sitting on a Windows 2000 IIS Server Box and
> the fldr was pointing to \\Bradford2\temp which was a Windows 2000
> server and worked great, now I changed the fldr to point to
> \\Bradford7\temp which is a Windows 2003 R2 server. After pointing
> to Windows 2003 R2 box the FolderExists(fldr) no longer works. The
> directory is there and all the permissions are the same from
> Bradford2 to Bradford7.
>
likely being caused by a permissions issue, so you may have overlooked
something. Check this out:
[url]http://www.aspfaq.com/show.asp?id=2168[/url]
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Bob Barrows [MVP] Guest



Reply With Quote

