Cannot find who has file openHow can I access a networked drive via the Web?adding and opening an .xls or excel file to solution results to cannot find fileFunction to open .pdf file not opening fileThe office open XML file cannot be open because there are problems with the contentHow to find last opened EXCEL.EXE opening time?“Cannot find column [Firstname].”Check how many users are using application on network?Cannot find the code for this operationCannot open pdf files in vb.netCheck who has file open on network drive

The relationship of noch nicht and the passive voice

Why are there two bearded faces wearing red hats on my stealth bomber icon?

Why are two-stroke engines nearly unheard of in aviation?

All numbers in a 5x5 Minesweeper grid

Cemented carbide swords - worth it?

Intuitive methods for representation of Cartesian Coordinates in terms of Spherical Coordinates as basis

How to ask a man to not take up more than one seat on public transport while avoiding conflict?

Should the pagination be reset when changing the order?

Is “卧草” a proper Chinese word?

Removing rows containing NA in every column

Lead Amalgam as a Material for a Sword

Convert dictionaries with list of values into a dataframe

How could artificial intelligence harm us?

How should I avoid someone patenting technology in my paper/poster?

Simulate a 1D Game-of-Life-ish Model

Is it safe to unplug a blinking USB drive after 'safely' ejecting it?

What was the deeper meaning of Hermione wanting the cloak?

What are the end bytes of *.docx file format

Is there any reason nowadays to use a neon indicator lamp instead of a LED?

Make Interviewee Comfortable in Potentially Intimate Environment

Exam design: give maximum score per question or not?

Can Brexit be undone in an emergency?

Why does Canada require a minimum rate of climb for ultralights of 300 ft/min?

What is the rail connection between Paris Charles de Gaulle Airport and Gare de Lyon like?



Cannot find who has file open


How can I access a networked drive via the Web?adding and opening an .xls or excel file to solution results to cannot find fileFunction to open .pdf file not opening fileThe office open XML file cannot be open because there are problems with the contentHow to find last opened EXCEL.EXE opening time?“Cannot find column [Firstname].”Check how many users are using application on network?Cannot find the code for this operationCannot open pdf files in vb.netCheck who has file open on network drive






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I have this code that find who has a file opened. The files are on network drives that use our old username as authenication. Our username use to be john.doe, it is now a number 12345. The code does not find a username. Is there something I'm overlooking or need to do to find out who has the file opened? Curious if and when we are on the actual new network that host the username 12345, that we will be able to find see the username 12345. The error message i do get is:



"The trust relationship between this workstation and the primary domain failed"



Public Shared Function GetFileOwner(ByVal strFileName)
Try
Dim objSD As Object = Nothing
Dim objWMIService = GetObject("winmgmts:")
Dim objFileSecuritySettings =
objWMIService.Get("Win32_LogicalFileSecuritySetting='" & strFileName & "'")
Dim intRetVal = objFileSecuritySettings.GetSecurityDescriptor(objSD)

If intRetVal = 0 Then
GetFileOwner = objSD.Owner.Name
Else
GetFileOwner = "Unknown"
End If
Catch ex As Exception
MsgBox("Error :" & Date.Today.ToString & " " & ex.Message)
GetFileOwner = "Unknown"
End Try
End Function









share|improve this question
































    0















    I have this code that find who has a file opened. The files are on network drives that use our old username as authenication. Our username use to be john.doe, it is now a number 12345. The code does not find a username. Is there something I'm overlooking or need to do to find out who has the file opened? Curious if and when we are on the actual new network that host the username 12345, that we will be able to find see the username 12345. The error message i do get is:



    "The trust relationship between this workstation and the primary domain failed"



    Public Shared Function GetFileOwner(ByVal strFileName)
    Try
    Dim objSD As Object = Nothing
    Dim objWMIService = GetObject("winmgmts:")
    Dim objFileSecuritySettings =
    objWMIService.Get("Win32_LogicalFileSecuritySetting='" & strFileName & "'")
    Dim intRetVal = objFileSecuritySettings.GetSecurityDescriptor(objSD)

    If intRetVal = 0 Then
    GetFileOwner = objSD.Owner.Name
    Else
    GetFileOwner = "Unknown"
    End If
    Catch ex As Exception
    MsgBox("Error :" & Date.Today.ToString & " " & ex.Message)
    GetFileOwner = "Unknown"
    End Try
    End Function









    share|improve this question




























      0












      0








      0








      I have this code that find who has a file opened. The files are on network drives that use our old username as authenication. Our username use to be john.doe, it is now a number 12345. The code does not find a username. Is there something I'm overlooking or need to do to find out who has the file opened? Curious if and when we are on the actual new network that host the username 12345, that we will be able to find see the username 12345. The error message i do get is:



      "The trust relationship between this workstation and the primary domain failed"



      Public Shared Function GetFileOwner(ByVal strFileName)
      Try
      Dim objSD As Object = Nothing
      Dim objWMIService = GetObject("winmgmts:")
      Dim objFileSecuritySettings =
      objWMIService.Get("Win32_LogicalFileSecuritySetting='" & strFileName & "'")
      Dim intRetVal = objFileSecuritySettings.GetSecurityDescriptor(objSD)

      If intRetVal = 0 Then
      GetFileOwner = objSD.Owner.Name
      Else
      GetFileOwner = "Unknown"
      End If
      Catch ex As Exception
      MsgBox("Error :" & Date.Today.ToString & " " & ex.Message)
      GetFileOwner = "Unknown"
      End Try
      End Function









      share|improve this question
















      I have this code that find who has a file opened. The files are on network drives that use our old username as authenication. Our username use to be john.doe, it is now a number 12345. The code does not find a username. Is there something I'm overlooking or need to do to find out who has the file opened? Curious if and when we are on the actual new network that host the username 12345, that we will be able to find see the username 12345. The error message i do get is:



      "The trust relationship between this workstation and the primary domain failed"



      Public Shared Function GetFileOwner(ByVal strFileName)
      Try
      Dim objSD As Object = Nothing
      Dim objWMIService = GetObject("winmgmts:")
      Dim objFileSecuritySettings =
      objWMIService.Get("Win32_LogicalFileSecuritySetting='" & strFileName & "'")
      Dim intRetVal = objFileSecuritySettings.GetSecurityDescriptor(objSD)

      If intRetVal = 0 Then
      GetFileOwner = objSD.Owner.Name
      Else
      GetFileOwner = "Unknown"
      End If
      Catch ex As Exception
      MsgBox("Error :" & Date.Today.ToString & " " & ex.Message)
      GetFileOwner = "Unknown"
      End Try
      End Function






      vb.net






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 28 at 14:48







      AnotherPerson

















      asked Mar 28 at 14:13









      AnotherPersonAnotherPerson

      106 bronze badges




      106 bronze badges

























          1 Answer
          1






          active

          oldest

          votes


















          0
















          Do you know that this option is available on your server? You can easily do this..



          Open the Computer Management snap-in on your file server (or connect to the server remotely from the management console running on your computer) and go to System Tools -> Shared Folders -> Open files. The list of files opened on the remote server is displayed on the right side of the window.



          Many times i tried to access my server on the domain and it gave me that error, domains hate custom made apps :)






          share|improve this answer

























          • I don't have that permission to access server infor.

            – AnotherPerson
            Apr 12 at 13:07










          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );














          draft saved

          draft discarded
















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55399762%2fcannot-find-who-has-file-open%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0
















          Do you know that this option is available on your server? You can easily do this..



          Open the Computer Management snap-in on your file server (or connect to the server remotely from the management console running on your computer) and go to System Tools -> Shared Folders -> Open files. The list of files opened on the remote server is displayed on the right side of the window.



          Many times i tried to access my server on the domain and it gave me that error, domains hate custom made apps :)






          share|improve this answer

























          • I don't have that permission to access server infor.

            – AnotherPerson
            Apr 12 at 13:07















          0
















          Do you know that this option is available on your server? You can easily do this..



          Open the Computer Management snap-in on your file server (or connect to the server remotely from the management console running on your computer) and go to System Tools -> Shared Folders -> Open files. The list of files opened on the remote server is displayed on the right side of the window.



          Many times i tried to access my server on the domain and it gave me that error, domains hate custom made apps :)






          share|improve this answer

























          • I don't have that permission to access server infor.

            – AnotherPerson
            Apr 12 at 13:07













          0














          0










          0









          Do you know that this option is available on your server? You can easily do this..



          Open the Computer Management snap-in on your file server (or connect to the server remotely from the management console running on your computer) and go to System Tools -> Shared Folders -> Open files. The list of files opened on the remote server is displayed on the right side of the window.



          Many times i tried to access my server on the domain and it gave me that error, domains hate custom made apps :)






          share|improve this answer













          Do you know that this option is available on your server? You can easily do this..



          Open the Computer Management snap-in on your file server (or connect to the server remotely from the management console running on your computer) and go to System Tools -> Shared Folders -> Open files. The list of files opened on the remote server is displayed on the right side of the window.



          Many times i tried to access my server on the domain and it gave me that error, domains hate custom made apps :)







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 30 at 6:44









          DevconDevcon

          3811 silver badge8 bronze badges




          3811 silver badge8 bronze badges















          • I don't have that permission to access server infor.

            – AnotherPerson
            Apr 12 at 13:07

















          • I don't have that permission to access server infor.

            – AnotherPerson
            Apr 12 at 13:07
















          I don't have that permission to access server infor.

          – AnotherPerson
          Apr 12 at 13:07





          I don't have that permission to access server infor.

          – AnotherPerson
          Apr 12 at 13:07








          Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.







          Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.




















          draft saved

          draft discarded















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55399762%2fcannot-find-who-has-file-open%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript