Questions tagged [fileshare]

252 questions
0
votes
0 answers

Is there a reliable way to get file sharing between macOS Mojave systems running?

Subject says it all. I have two 10.14.6 macOS Mojave systems, both early 2019 Macs but I am failing to get the home directories of users on one shared and available to those same users on the other. Only one thing works, from one system I can get…
gctwnl
  • 217
  • 1
  • 8
0
votes
1 answer

Unable to mount file share on Linux VM

I have two Linux Azure VMs (Redhat 7.4) that need share a common location for processing files. The VMs are located in Australia East. I also have a Storage Account that's in Australia East and have created a file share in the Storage Account. I…
GarlicBread
  • 1,671
  • 8
  • 26
  • 49
0
votes
1 answer

Connect to Sqlite DB in Azure File Share

Anyone have an idea how to read/write in Sqlite db stored in the azure file share. I'm using C# and EF provider to work with Sqlite's db. The problem is that the EF provider needs a file path to connect with the db; I know mounting the file share as…
0
votes
1 answer

Get Azure File Storage Directory Stats - API

I am trying to get the size used for a Directory/ Sub-Directories in an azure file share storage account. I can get this information using the Azure Storage Explorer with Directory Stats button on the right hand top of the screen. However, I could…
0
votes
0 answers

Powershell Help: Add "Domain Admins" to NTFS Full Control Permission to all File Shares?

I am trying to the Domain Admins group to all the file shares on our server with Full Control NTFS permissions, but it seems to lock up and cant proceed at the "$Acl.SetAccessRule($Ar)" line. This is the code that I have so far: $shares =…
Gamblers
  • 41
  • 4
0
votes
0 answers

Powershell: Add "Domain Admins" Group to ALL Fileshares on Server

I am currently trying to add a group called "Domain Admins" to all fileshares, we have over 300. I would like to automate this so I don't have to do this manually for each one, and would then like to remove the local administrator group from each…
Gamblers
  • 41
  • 4
0
votes
0 answers

Azure File Upload from Local Machine

Looking for step by step guide on how to automate upload of .CSV files from my local machine to Azure BLOB/FileShare. Thanks!!
0
votes
1 answer

Azure file share mapped drive with multiple usernames

I have created an azure file share and I was able to create mapped drive on my system , but I need to share different folders to different users currently I have only one username which is the storage name provided by azure
you mhmd
  • 95
  • 1
  • 11
0
votes
1 answer

Containers start failed when mouting volume to Azure Files

I have a container on Azure. When the container starts, it will run a script to modify some configuration files under /var/lib/myservice/conf/. I also want to mount an Azure Files volume in this container with volume mount path is…
ktcl
  • 365
  • 6
  • 23
0
votes
3 answers

Auto save and close workbook (in a share) if Screen/Workstation is Locked

Something which we encounter on a daily basis at work is when a member of the team opens Excel Workbook from a network share to update the workbook and forget to save and close the file after he is finished. The issue arise when the user locks his…
jovicks
  • 87
  • 8
0
votes
0 answers

Is it possible to setup an IIS website with Vagrant and Windows?

Using Vagrant, I have a fileshare setup with SMB from host-to-guest (h2g) between a virtual machine running on Microsoft's Hyper-V Hypervisor, and Windows Operating Systems on both, host & guest machines. Inside my virtual machine, I can access my…
Joel Murphy
  • 2,472
  • 3
  • 29
  • 47
0
votes
1 answer

Create multiple file share dynamically under existing storage account

I am learning kubernetes(AKS), I am playing around azure. I have a scenario where I need to create multiple file share in azure storage account and I am able to create with set of commands but the twist is I need to create those dynamically as per…
0
votes
1 answer

Export all the Windows share folders with Share and NTFS permissions

I'm looking to export all the Windows Share(Excluding system Shares like (C$, D%, etc) with Share and NTFS permissions into an Excel file. I wrote this code and need help to add NTFS permissions to and then export it to a nice human-readable excel…
Anit
  • 3
  • 3
0
votes
1 answer

Some question about the place to store and the cost of Files Share Snapshot

I have some questions about the Azure Files Share snapshot, if you know something about that, please let me know. Thanks. 1, Where are the snapshots stored? Will it cost the storage capacity and how about the cost of creates and delete snapshots? 2,…
Arthur
  • 103
  • 11
0
votes
1 answer

How do I download the end of a file from azure file share

This code always returns an empty string CloudFile cFile = fShare.getFile(subDir, rootDir, logFileName, AzureConstants.PATH); if (cFile.Exists()) { using (var ms = new MemoryStream()) { …