603 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
1
answer
87
views
Source path does not exist during folder migration from one Windows PC to another using Python script
I wish to migrate a folder tree structure from one Windows PC to another by running a python script on the destination PC. Here is the code I am using:
import shutil
import os
import sys
import ...
Advice
0
votes
1
replies
38
views
SSRS Report External UNC Image File - If Not Found - Default Image
In my dataset for an SSRS report, I have a column that is comprised of a path and a file name of an image, dynamically created by each user's user id, as that's how the images for their pics are ...
0
votes
1
answer
91
views
Why am I getting BAD_NET_NAME error from WNetUseConnection with IP Address?
Context
I have a function in my app's code that connects (via WNetUseConnection) to a windows fileshare on specified devices on the network the machine that is running the app is connected to. This is ...
2
votes
0
answers
70
views
.NET 9 Application Fails Silently When Run from UNC Path on Windows 10/11
I'm encountering a strange issue when running a .NET 9 console application from a UNC path (e.g., \\computername\c$\folder\app.exe) on Windows 10 and Windows 11.
Symptoms:
The application crashes ...
0
votes
0
answers
59
views
Application.GetOpenFilename for a UNC without using Kernel32
My company has recently instituted some significant security upgrades that disallows the calling of Kernel32.dll using VBA. Without this I can't call Application.GetOpenFilename and set the network ...
n8.'s user avatar
- 1,742
0
votes
2
answers
143
views
SAS calling external process with network path
On SAS Windows, I have a SAS script calling an external .bat file. I use the following:
%SYSEXEC("\\mymachine\order\mypath\running.bat");
which does not recognise the path and default to a C:...
0
votes
1
answer
163
views
Accessing Virtual Directory from Code Behind
In IIS I've created a virtual directory (called WEB1FTP_USERS) that is a UNC to another server. When choosing the Connect As property I chose the admin account we use when logging in to the server and ...
0
votes
1
answer
78
views
ODBC error when trying to connect MS Excel to SPSS file on fileserver
I want to load SPSS Data into Excel using an ODBC connection. I am successfully connecting Excel to a local SPSS file using the IBM SPSS Statistics Data Drivers. But when I try the same with a copy ...
0
votes
0
answers
67
views
File transfer between 2 different IIS servers with virtual directory
There are 2 IIS servers in my internal network. I created a virtual directory among them. 2 of my servers are connected to active directory. I granted the necessary permissions and gave full ...
1
vote
1
answer
196
views
Unable to perform actions on UNC path / network drive
I'm trying to create an installer with WiX that has a step that writes to a network drive via a UNC path, but no matter what I do, I run into the error "Could not access network location":
...
0
votes
0
answers
335
views
Windows OpenSSH access of UNC path appears limited to read only?
I have a windows machine (AWS instance) that can visit and mount a shared network drive (samba/linux).
When I am on the windows machine itself via RDP I can visit the path, mount it as a drive, make ...
0
votes
2
answers
220
views
In Python, how do I iterate a long path name through glob and read in all files in Windows?
I'm trying to write a Python script where I use glob to get a list of file paths, and then read them through pd.read_csv() to make one big data frame. This script works great on a Mac. However, I was ...
0
votes
0
answers
126
views
How do I set up access to a DFS location using its UNC through a virtual directory in IIS?
I have inherited this old WebForms site that I am attempting to migrate to Windows Server 2022 on VMWare because the server it is currently running on is being retired.
The web site has links to a ...
0
votes
0
answers
403
views
Access a UNC path with .NET Core Web API
I have an endpoint that access a remote folder (UNC path) with some images. Locally, I have been able to do it and get the image, but if the Web Api is published in IIS, the return says my credentials ...
0
votes
1
answer
47
views
file transfer bewteen two windows machine,but the files will be deleted immediately
Two Windows A and B There is a directory D on top of A, which can be accessed by B. There are always 25M files generated under directory D, which will be deleted in about 100-200ms. How can all the ...