VBscript For Mapped Network Drives

I need to know how and if its possible to have a vbscript run when a user logs onto my pc. I need the script to connect to my mapped network drives on my pc since you have to double click under My Computer in order to connect to the drives. I want this automated as much as possible.

I currently use a batch file under the startup folder but wanted the process to run behind the scenes instead of a dos box popping up.

View Replies


ADVERTISEMENT

Mapped Drives And FSO

I keep getting "path not found"..

I'm running two servers, the machine running IIS that is running my ASP
script uses the same IUSR account and password as the folder that I am
trying to access through a mapped drive. Permissions should be good.

here is my code:

Set objFile = Server.CreateObject ("Scripting.FileSystemObject")
objFolder = "M: estfolder"
Set MyFolder = objFile.GetFolder(objFolder)

if I take the same directory path "M: estfolder" and paste it into explore
it finds the path without a problem...

View Replies View Related

Get Computer Name From Mapped Drives

I am trying to get the computer/server names from the mapped drives on the Clients PC when they select a file from the upload "browse" button. When the user clicks on the "Browse" button on the "<input type="File"... control and selects a file located in one of many possible mapped drives. I want to save the location of the file as a path as you would see when mapping a drive. For instance, "serverfolders... instead of the
mapped path of "P:foldersubfolder... etc. Therefore, when a user views the document they can click on the link and get access to the file regardless of how their drives are mapped. Oh, I need to be able to do this from classic ASP.

I attempted to use the FileSystemObject object but cannot find the method that gives me this information.

View Replies View Related

Fso Fails When Connecting To Mapped Drives From Asp On IIS 6.0

I have an asp page (see source code below) running on IIS 6.0 on
Win2003 Server that tries to get file and folder information on a
Novell Server. I am able to successfully connect to the share on the
Novell box if I use the UNC path. But, unfortunately, I need to have
the mapped path for my application.

I created a simple vbs script and
saved it to the server desktop and run it to verify connectivity to the
Novell box. I am logged in to the server with the same user as set up
in my website as the anonymous user. The vbs file runs perfectly. But
as soon as I move the code into an asp file, I get the following error
"Microsoft VBScript runtime error '800a004c' Path not found". If I
go into my asp file and change the path to the novell box to a UNC
format, then it works. Below is the asp file: Code:

View Replies View Related

SRV2003, ASP And Network Drives

I have an ASP app that calls an object on the web server which goes out to a
mapped network drive to retrieve a file from a W2K file server. My current
web server is a W2K. The share on the file server as well as the NTFS
permissions on the server are wide open (Everyone Full Control) but still
require me to run the web server under an account other than the IUSR
account for the object to be able to access the file. None the less, it
works fine.

However, when I run this same app on a W2K3 server, it can not
access the file from the exact same location. Seems to me I need to tell the
web server at a different level what account to run at or something. It
doesn't appear that the W2K3 web server's account has permission to access
the file despite the fact I am using the same account as the W2K. Anyone
have any ideas? The goal is to get the W2K3 web server to successfully
access a remote file on a W2K file server without any permissions problems.
Again, the share and NTFS on the file server are wide open.

View Replies View Related

Mapping Network Drives Through Asp

I was wondering is there a way to map a network drive a on persons machine with a online gui interface?

Is there a way user 1 can map drives on THEIR computer using an online interface?

View Replies View Related

Writing Text File To A Mapped Drive Or Network Drive

how to write a text file to a mapped drive or network drive. In my script, I’m currently writing the text file to a local folder on the server temporarily until I can figure this out.

So far I have tried to use the mapped drive letter, network path, etc. to get this working. I believe all the permissions are in order (I hope) as well. No matter what I have tried, I just get a Path Not Found script error. I know this has to be possible, just I’m missing something … probably something right under my nose but I just can’t figure it out.

View Replies View Related

Code To Map Drives

I was not able to map a drive from remote server to my local pc.

View Replies View Related

Connect To Mapped Drive

I have mapped a drive in our IIS, but I don't know how to connect to it from
ASP. I would like to place files (like images files) to the mapped drive
T:XXXYYY and display files from there.

I've tried using Server.MapPath, but when I put T:XXXYYY as parameter, it
will say it requires virtual path but not physical path.

Then I tried using:

Set MyFileObject=Server.CreateObject("Scripting.FileSystemObject")
Set MyFolder=MyFileObject.GetFolder("T:XXXYYY")
but it will say Path not found.

View Replies View Related

Get Folders In Mapped Drive

I mapped dirve in a another computer as K: and I need to listout folders in a asp page that mapped drive. So I was checked that drive is in ready state using IsReady property, but it will return false. But when I was tried in VB application using same code it work perfectly. So any one know what can be happned.

<%
set fso = CreateObject("Scripting.FileSystemObject")
set d = fso.GetDrive("K:")

if d.IsReady Then
response.write " Drive " & d.driveletter & " is Ready "
else
response.write " Drive " & d.driveletter & " is not Ready "
end if
%>

View Replies View Related

Cannot Access Remote File From Mapped Drive

I want to access files from a remote server so I mapped it in my
server under z: for myserverwebmysiteimages

I added this UNC path to my IIS virtual directory and name it as
"upload" but I still cannot use any FSO to read it. Here is my code:

View Replies View Related

Copying Files Using Mapped Drive Error

im trying to create an online doc library for our intranet using a MS Access back end

a form allows the users to enter all the details of the doc and then select the file by using a file browser ( input="file" )

the asp script then copies the file from server A to the intranet

the problem is , is that if the user chooses a mapped drive ( e.g. the S drive ) then it fails - if they use the full drive map then it works fine

SO

Fail : s:stu.txt
Works : stuscomputer estdocsstu.txt

is it becuse the intranet server doesnt know what drive S is ?

View Replies View Related

Asp On Network

My system is on the Network.The system has a Project being developed in ASP and Oracle.
shared the ASP files but in other system the file is showing as MS-Front Page.
both the systems are on Win-2k.

View Replies View Related

Using Asp To Go Through Network

I've looked all over and can't seem to find any information on whether or not you can get a file through a network. I have a webpage that needs to check to see if a file is on a specific server. Is this what it would need to look like?

Set file1 = fso.GetFile("computernamedrive
otesap.zip")

View Replies View Related

Network

i got an asp project, current done the phase one, is a web application over the internet. phase 2 the client need us to do a add on application to previous web application. but can only access with their own network.

that mean they want some portion of the application to be over the internet, and some portion of their application can be access by their own network only. so what do i need to do to make my system to know the station accessing the application currently is within own network or from other network?

View Replies View Related

IP Or Network Name

I've been getting this recurring "[DBMSSOCN] General Network Error" ever since we separated our web server and our database server. My connection string has been as follows:

Provider=SQLOLEDB;Data Source=machinename;Initial Catalog=xxxxxx;User
ID=xxxxxx;Password=xxxxxxx;Network Library=DBMSSOCN

Is it possible that changing the machinename to an IP address will help? Initially, it seemed as though adding the Network Library parameter was working, but recently it started to happen again.

View Replies View Related

Network Status

Is there anyway I can check to see if a server is online in my network with an if statement saying if online response.write "Online" else response.write "Offline"?

View Replies View Related

ASP Forbidden On The Network

Below is the message I received when I attempted to use a web page on our
network that makes use of ASP.

The page cannot be displayed
You have attempted to execute a CGI, ISAPI, or other executable program from
a directory that does not allow programs to be executed.
--------------------------------------------------------------------------------

Please try the following:

a.. Contact the Web site administrator if you believe this directory
should allow execute access.
HTTP Error 403.1 - Forbidden: Execute access is denied.
Internet Information Services (IIS)

--------------------------------------------------------------------------------

Does that mean that we need to relocate the files where the server allows
ASP executable commands to function? Or can the directories properties be changed so that such executables is allowed?

View Replies View Related

DB Connection Through Novel Network

we have our Intranet in work where my ASP pages are and i want it to connect to a database on one of the network drives.. The location of my database is:-

NW-SHARE-1DATATEMPTRANCOMMON@digireportsRobbieASP es t.mdb

but the following connection code i have doesnt work:-

config.asp
Code:

View Replies View Related

Network Places

i create virtual directory on iis with network directory is a share located on another computer...after i did that ....i can't browse that virtual directory...if i browse that virtual directory ...at browser IE show message the page cannot be found

View Replies View Related

Can't See Network Printers In IIS

I have a dll I wrote in VB6. Basically, it can list all the printers
it finds as well as print to a selected printer.

I created a test app in VB6, added the dll as a reference, and added
the following in a button click: Code:

View Replies View Related

Network Drive

<i><b>Originally posted by : Augusto (augustocm2000@yahoo.com)</b></i><br />Hi<br />I've got a problem that I´ve been trying to solve but there is no way I can find the solution.<br /><br />I am mapping a network (intranet) drive in my computer (winNT 4.0), but when I try to "see" this drive (or a directory of this drive) from an asp page, it is impossible! What I mean is that the drive is mapped and accessible in my windows explorer, but my asp code says "Path Not Found". And I have no problem when I "see" a local drive, it locates without no problem.<br />Does anyone know if this is a problem with the server??A configuration problem, for example?!<br />

View Replies View Related

Network Login

I need to know if its possible to create an ASP page that when requested
will display the network id of the requester.
Most people have told me to query the request.servervariables("LOGON_USER").
But this will get me the login of the server and not the client. In our
situation we do not want to have our users login twice (once to their machine
(the client) and then again to the server (the one that serves the asp page).
I need to know the client logon name.

View Replies View Related

Network File

We are trying to display pdf files which is mappedre to the IIS server. For ex:
My website is located on server A and the url is http://myfolders
Now there are some pdf files ( ja.pdf,feb.pdf..) located on server B which is mapped on server A on the F drive.
So f: >> Server Bpdf folder

Using ASP we would like to allow the user to search for a pdf say jan and we display the pdf as a downloadable link.

View Replies View Related

Network Drive

I am trying to write a file of emails to my mail server for a newsletter.The emails come from a form on a website and append the file.However I can not accomplish this.I have tried mapping the a network drive.Then writing to the file with the path

"U://subscrib.txt" using the filesys obj.

This did not work and I am unsure why.I could not add the internet user to the permissions on the mail server because its not the same machine.

View Replies View Related

Get Network User IP And Pc Name

i m making an intranet website(asp is used) , on the home page i want to display the network user ip & user pc name when anyone opens the website. can any 1 help me out how to get the pc name & user IP of network user?

View Replies View Related

FSO Network Drive

I have a mapped drive on my intranet web server to my internet web server. When I iterate through the drives collection on my intranet site, my mapped drive does not show up. Is there anyway I can get to this drive to read a small set of known files? I don't really want to have to create a virtual folder on the internet web server and move the files in question to it so that my intranet server can get to them.

View Replies View Related

Capturing Network LAN ID

I'm having a bit of a problem trying to capture a users LAN ID from the network. Currently I have an activex component that does it for me and I use Javascript to display/capture. Which was fine prior to the DDA guidelines. Now I need to find a way to do so without using JavaScript.

The first thing I tried was to use the Servervariables available but unfortunatly our servers use annonymous authentication, so I can't use that method. I've even tried but had no joy accessing Active Directory for the LAN ID, so I'm currently left scratching my head. Does anyone know of a way I can acheive this?

View Replies View Related

Map Network Drive

i would map a network drive from a share on another server. it works fine with the net use command under user login but it do not work from an asp script or dll.

is this that i have to add the iuser_<computer_name> profile into network computer that share it resources?

View Replies View Related

Network Login Id

when i try to use request.servervariable(login_user) it returns empty in asp. i created a dll in vb using the apigetusername . when testing this in vb , it retruns the network login id. But in asp it returns the servername where the asp is running.

View Replies View Related

Map To Network Drive

i want to map to other drive/folder in other machine is possible to do ? i am just handling some file management through web(intranet). my asp files are on my webserver, i do have an file server as well.

want i want is map to my file server so that user can handle their files (of course they are restricted to some extend). some sample code on this.

View Replies View Related

Map Network Drive

I'm trying to create an admin page that can run miscellaneous scripts for our IT department. Currently, I'm trying to create a script that can map a network drive for a user (e.g. a form where I can input pathfolder, drive letter, and domainuser). Is this possible? If so, can someone point me in the right direction?

View Replies View Related

Activex Control Over The Network

I have one Activex Control which i want to use over the network. In that i am having one module and one user control. For this i prepared the ocx file and made a package. But when i am trying to deploy that file it gives me error no. 80042114

how to use the activex control over the network.

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved