Tagged Questions
5
votes
3answers
221 views
Pass existing FileSystemObject or create multiple instances
I have several procedures that use the FileSystemObject. I find it's quite convenient.
Question: Is it sensible to pass an existing instance of FileSystemObject from a "main" procedure to these ...
3
votes
3answers
4k views
Exclusive File access to logfile with VBScript and Filesystemobject
Need help with this one.
I have a VBS script that currently writes to a logfile. This script can be kicked off my multiple simultaneous processes so now I'm worried about concurreny.
I'm currently ...
2
votes
1answer
53 views
How can I find path of file
In the end, I am trying to return the 'Product Version' of Robocopy.exe (in order to avoid using XP026; broken return code). I can use Shell.Application, NameSpace, ParseName to get the 'Product ...
2
votes
1answer
248 views
Unicode named Folder shows ? in wscript prompt
I am facing problems with Unicode named folders. When I drag the folder to the script, it doesn't show the path of the folder properly.
Simple VBScript (this is just a portion of it):
Dim Wshso : ...
2
votes
1answer
597 views
Alternative to Server.CreateObject
I am writing a navigation system in classic ASP (on Windows CE).
I require a way to dynamically include navigation files based on the calling script.
I have come up with the following code that ...
1
vote
2answers
73 views
FSO to copy save files. VBScript/ASP page using subroutine
I'm trying to use FSO = Server.CreateObject("Scripting.FileSystemObject") to copy/save files utilising a ASP utility called 'csImageFile'
At present the FSO code I have is on a separate .asp page. ...
1
vote
1answer
316 views
FileSystemObject moves a file even when is being copied over FTP
I have a program that checks periodically for new files, and then process them.
Because I want to be safe that the file is not being copied over FTP, I move the file first.
The strange thing is that ...
1
vote
1answer
447 views
What do the enum values of objLogicalDisk.DriveType in vbscript refer to?
so the following code:
Dim objFSO : Set objFSO = CreateObject("Scripting.FileSystemObject")
Dim colDrives : Set colDrives = objFSO.Drives
Dim objWMIService : Set objWMIService = ...
1
vote
3answers
633 views
VBScript's CopyFile not working
I think it may have something to do with the external file but I am getting the error Path not found and don't know why. Code below.
<%
Dim fs
set fs = ...
0
votes
2answers
51 views
If file exists then delete the file
I have a vbscript that is used to rename files. What I need to implement into the script is something that deletes the "new file" if it already exists.
For example: I have a batch of files that are ...
0
votes
1answer
256 views
createobject scripting.filesystemobject IIS 7 - vbscript code always trying to save file in C:\Windows\System32\inetsrv\ instead of web site folder
As per title
createobject scripting.filesystemobject IIS 7 - vbscript code is always trying to save file in C:\Windows\System32\inetsrv\ instead of web site folder
and I get a "permission denied" ...
0
votes
1answer
96 views
vbscript FileSystemObject works locally but not live
can anyone tell me what's going on with this (what should be) simple peice of VBscript. It is working locally but as soon as I try it online, it kick out an error as below! Everythings saved in the ...
0
votes
1answer
3k views
Error: ActiveX Component Can't Create Object Scripting.FileSystemObject
I have a simple vbs-file on my drive c: with following content:
Set objShell = CreateObject("Scripting.FileSystemObject")
When I'm trying to launch it, I get error
c:\fso.vbs(1, 1) Microsoft ...
0
votes
1answer
240 views
Why does this VBScript throw an error when trying to create a file?
I have found this script and cant seem to figure out why it throws an error when trying to create the file C:\IPSecWeights.xls.
The line that I am having problems with so far is:
Set objWorkbook = ...
0
votes
1answer
161 views
Drive Letters Usage with the FileSystemObject - VBScript
I am migrating from a Win 2003 server to a Win 2008 R2 server. I'm running a classic ASP application. In the 2003 server the following code worked for creating a file:
CONST ...
0
votes
1answer
223 views
VBScript Catching Erroring Varialble Value
I have a VB Script (.vbs file) that is just a simple directory listing of a drive. It will the base of a drive back up script. But when running it as it is below, I am getting a Permission Denied ...
0
votes
1answer
328 views
Are there restricted characters in ADO varchars?
We have a simple file browser on our intranet, built using ASP/vbscript. The files are read by the script and added to an ADO Recordset (not connected to a database), so we can sort the contents ...