Questions tagged [microsoft-distributed-file-system]

For programming questions about Microsoft's Distributed File System (DFS). (For questions about depth-first search, use the [depth-first-search] tag.)

176 questions
0
votes
1 answer

Can't manage DFS namespace after retiring namespace server

In DFS Management, when we try to manage one of the namespaces, the error is: \\mydomain.com\mynamespace: The namespace cannot be queried. The specified domain either does not exist or could not be contacted. When I use dfsdiag /testdfsintegrity…
0
votes
1 answer

How can I create an href link to target a DFS location?

I have a need on an intranet project to create hyperlinks which target files on a DFS location. Now there was a time when for example file://c:\directory\filname.txt would work fine but now I need to use locations like…
Richard
  • 21,728
  • 13
  • 62
  • 101
0
votes
1 answer

Getting NERR_DfsNoSuchVolume (Error code:2662) while checking DFS share path

I have an exe (C# application) which runs with a service account and tried to get the DSF link for a file share. Share exists and accessible. i have another similar exe running with the same service account and running fine where as my exe is not…
0
votes
1 answer

How to remove read-only mode from excel file using interop.excel in C#

I have a doubt about the excel sheet. When I apply the formula column. If my code throws any exceptions/errors then my excel file is set as a read-only mode. So, here I want my file remains in read-write mode. Please, help me to solve this problem.
Arihant Jain
  • 11
  • 1
  • 4
0
votes
2 answers

Customize output Get-fsrmQuota report

When I run this command Get-FsrmQuota -path "F:\prod\..." | Select Path, @{ Name="Usage_GB";Expression={$([math]::Round(($_.Usage / 1GB),2))}}, @{ Name="Size_GB";Expression={$([math]::Round(($_.S ize / 1GB),2))}} | Sort-Object Path I get the…
0
votes
1 answer

DFS Folders Odd Behavior with .NET Framework

Having an odd behavior with Namespace folders in .NET 4. We have a service account running on a server. Service account has access to the folder. Intermittently, we'll get messages from applications that say a folder doesn't exist. If we use the…
Ctznkane525
  • 7,297
  • 3
  • 16
  • 40
0
votes
1 answer

How to load a DFS table of DolphinDB into Python client with Orca?

I am trying to replace pandas with Orca in my project for a better performance. But I don't know How to load data from a DolphinDB DFS table, which I have already created and imported data into on DolphinDB Server. I load the table in this way in…
0
votes
1 answer

Python - What's different with "append(List)" and "append(List[ : ])"?

Here is the answer for LeetCode 39 problem, and I found it on github. class Solution(object): def combinationSum(self, candidates, target): self.resList = [] candidates = sorted(candidates) self.dfs(candidates, [], target, 0) return…
0
votes
2 answers

How do I run New-DfsnRoot remotely

I am trying to build a Windows Server 2019 DFS remotely. My client PC is Windows 10. First I create a folder and a share remotely. All is okay. Then I do this from my client PC $cimSession = New-CimSession -ComputerName "dfs.MYDOMAIN" New-DfsnRoot…
0
votes
0 answers

SSRS OLEDB CSV source not working unless share has full control to Everyone. Excel works on a share with Read Only access though

I have a report that uses a CSV file as a datasource. In Visual Studio, I can point it at the file on a share and it works. When I deploy it to the SSRS server though, it brings back an error: The Microsoft Access database engine cannot open or…
0
votes
1 answer

My DFS can't handle simple graph [Python]

Below is my code for DFS[Depth first search], and my code could handle complicated graph, but failed to handle simple graph like the graph i gave, so my Question is that how to work it out? I am doing it recursively. Any kind of help is appreciated.…
0
votes
1 answer

Python DFS recursive function retaining values from previous call

I'm sorry if the title is misleading, but I could not put it in any other way. I am trying to implement bfs and dfs in order to remember some concepts, but and odd behavior is going on with the recursive versions of the codes. This is what is…
0
votes
2 answers

Depth first search current implementation problem when I try to run it

I'm here trying to share my depth first-search (DFS) implementation. I'm trying to learn how can it traverse in a graph that is undirected, meaning that not all nodes are making into one graph, but two different ones. I was looking for the small…
0
votes
1 answer

Cannot Setup DFS namespace on EC2 instance

I have an EC2 instance which I have domain joined using the AWS microsoft Active Directory. I installed the DFS namespace and DFS replication roles in server management. But now when I go to Add new namespace I get an error saying: "Cannot…
0
votes
0 answers

How to fix Shared filesystem configuration in wso2 am 2.6 active-active all-in-one implement

I have 2 servers of wso2 api-m with deployment of active-active all in one. I am using link for configuring. In part 4 and 5, I use DFS instead of rsync and shared path : 'wso2-am-2.6.0\repository\deployment\server' in both servers in both…