<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Tool to display shares with users accessing it in Operating System - Microsoft</title>
    <link>https://community.hpe.com/t5/operating-system-microsoft/tool-to-display-shares-with-users-accessing-it/m-p/3533725#M6122</link>
    <description>Hi Ivan,&lt;BR /&gt;&lt;BR /&gt;I am assuming you are on NT4 becuase as Joseph says you can do this easily in W2K and later.&lt;BR /&gt;&lt;BR /&gt;I have found Dameware NT Utils to be an excellent package that will do what you need plus a whole host of other useful featuers as well&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.dameware.com/products/dntu/" target="_blank"&gt;http://www.dameware.com/products/dntu/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;They have a trial version so you can see if it fits your needs before parting with any money.&lt;BR /&gt;&lt;BR /&gt;cheers&lt;BR /&gt;Guy</description>
    <pubDate>Fri, 06 May 2005 06:02:11 GMT</pubDate>
    <dc:creator>Guy Humphreys</dc:creator>
    <dc:date>2005-05-06T06:02:11Z</dc:date>
    <item>
      <title>Tool to display shares with users accessing it</title>
      <link>https://community.hpe.com/t5/operating-system-microsoft/tool-to-display-shares-with-users-accessing-it/m-p/3533723#M6120</link>
      <description>Dear experts!&lt;BR /&gt;&lt;BR /&gt; I want to know is there any tool that could display open files on the server with user who accessed it AND with share what was used to access the file. If you go to the “Computer Management\System Tools\Shared Folders\Open Files”, you find all the same, but without information about share used.&lt;BR /&gt; OR if there is a tool that could list all shares WITH user names who connected to it – it solve the problem too.&lt;BR /&gt; &lt;BR /&gt;The problem is: We have several shares like:&lt;BR /&gt;     C:\data&lt;BR /&gt;     C:\data\app1&lt;BR /&gt;     C:\data\app2&lt;BR /&gt;&lt;BR /&gt;So, using Computer Management, its impossible to find WHICH share is exactly used, because in Shares we can see only the number of connected users and in Open Files we can see the files that are used BUT its unknown to which share user is connected.&lt;BR /&gt;&lt;BR /&gt;Thank you very much in adva</description>
      <pubDate>Thu, 28 Apr 2005 01:22:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-microsoft/tool-to-display-shares-with-users-accessing-it/m-p/3533723#M6120</guid>
      <dc:creator>Ivan Efimenko</dc:creator>
      <dc:date>2005-04-28T01:22:16Z</dc:date>
    </item>
    <item>
      <title>Re: Tool to display shares with users accessing it</title>
      <link>https://community.hpe.com/t5/operating-system-microsoft/tool-to-display-shares-with-users-accessing-it/m-p/3533724#M6121</link>
      <description>hi ivan,&lt;BR /&gt;&lt;BR /&gt;which OS version r u on? i believe from windows 2000 onwards, there is a "Accessed By" column in Open Files which tells u which user is accessing what file.&lt;BR /&gt;&lt;BR /&gt;regards.</description>
      <pubDate>Thu, 28 Apr 2005 04:52:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-microsoft/tool-to-display-shares-with-users-accessing-it/m-p/3533724#M6121</guid>
      <dc:creator>Joseph Loo</dc:creator>
      <dc:date>2005-04-28T04:52:16Z</dc:date>
    </item>
    <item>
      <title>Re: Tool to display shares with users accessing it</title>
      <link>https://community.hpe.com/t5/operating-system-microsoft/tool-to-display-shares-with-users-accessing-it/m-p/3533725#M6122</link>
      <description>Hi Ivan,&lt;BR /&gt;&lt;BR /&gt;I am assuming you are on NT4 becuase as Joseph says you can do this easily in W2K and later.&lt;BR /&gt;&lt;BR /&gt;I have found Dameware NT Utils to be an excellent package that will do what you need plus a whole host of other useful featuers as well&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.dameware.com/products/dntu/" target="_blank"&gt;http://www.dameware.com/products/dntu/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;They have a trial version so you can see if it fits your needs before parting with any money.&lt;BR /&gt;&lt;BR /&gt;cheers&lt;BR /&gt;Guy</description>
      <pubDate>Fri, 06 May 2005 06:02:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-microsoft/tool-to-display-shares-with-users-accessing-it/m-p/3533725#M6122</guid>
      <dc:creator>Guy Humphreys</dc:creator>
      <dc:date>2005-05-06T06:02:11Z</dc:date>
    </item>
    <item>
      <title>Re: Tool to display shares with users accessing it</title>
      <link>https://community.hpe.com/t5/operating-system-microsoft/tool-to-display-shares-with-users-accessing-it/m-p/3533726#M6123</link>
      <description>Quick and dirty script (get_shares.cmd)&lt;BR /&gt;&lt;BR /&gt;REM ..: Script will list out the shares to a file, then parse each share to show WHO is attached.&lt;BR /&gt;echo ------------------------------------------------------ &amp;gt; cur_users.txt&lt;BR /&gt;date /t &amp;gt;&amp;gt; cur_users.txt&lt;BR /&gt;echo ------------------------------------------------------ &amp;gt;&amp;gt; cur_users.txt&lt;BR /&gt;&lt;BR /&gt;net share &amp;gt; cur_shares.txt&lt;BR /&gt;for /f %%i in (cur_shares.txt) do (&lt;BR /&gt; net share %%i &amp;gt;&amp;gt; cur_users.txt&lt;BR /&gt; echo -------------------------------------------------------- &amp;gt;&amp;gt; cur_users.txt&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Jon</description>
      <pubDate>Fri, 06 May 2005 16:07:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-microsoft/tool-to-display-shares-with-users-accessing-it/m-p/3533726#M6123</guid>
      <dc:creator>Jon Finley</dc:creator>
      <dc:date>2005-05-06T16:07:29Z</dc:date>
    </item>
  </channel>
</rss>

