Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

How to retrieve a list of shared folders shared using a script


Author: Nirmal Sharma MVP

View products that this article applies to.

SUMMARY

The following knowledgebase will explain the methods you can use to check the shared folders shared on local and remote computer.

↑ Back to the top


MORE INFORMATION

To check on local computer:
 
You can use the following methods:
 
  1. Connecting to Remote Registry Service
  2. Using a script
 
The first method is easy but includes a lot of efforts. You can navigate to the following location in registry after connecting to remote registry:
 
HKLM\System\CurrentcontrolSet\Services\Lanmanserver\Shares
 
The above registry key includes the list of shared folders in right pane.
 
To check on a Remote Computer:
 
You can use the below script to check the list of shared folders on a remote computer:
 
@echo off
 
Srvlist=C:\Temp\Srvlist.txt
 
Echo Computer Name, Shared Folders Lists >> Result.csv
 
SET Share_name=
 
For /F “Tokens=*” %%a In (%srvlist%) Do (
 
Set Comp_name=%%a
 
Set RegQry=”\\%%a\HKLM\System\CurrentcontrolSet\Services\Lanmanserver\Shares”
 
REG.exe Query %RegQry% > CheckCC.txt
 
FOR /f “Skip=4 Tokens=1” %%b in (CheckCC.txt) DO (
 
            SET Share_name=%%b
 
Echo %Share_name% >> Result.csv
 
)
 
)
 
The above script will check remote computer for each registry entry in the right pane fto check the share name and the results will be saved in a CSV format file.

↑ Back to the top


Community solutions content disclaimer

Microsoft corporation and/or its respective suppliers make no representations about the suitability, reliability, or accuracy of the information and related graphics contained herein. All such information and related graphics are provided "as is" without warranty of any kind. Microsoft and/or its respective suppliers hereby disclaim all warranties and conditions with regard to this information and related graphics, including all implied warranties and conditions of merchantability, fitness for a particular purpose, workmanlike effort, title and non-infringement. You specifically agree that in no event shall Microsoft and/or its suppliers be liable for any direct, indirect, punitive, incidental, special, consequential damages or any damages whatsoever including, without limitation, damages for loss of use, data or profits, arising out of or in any way connected with the use of or inability to use the information and related graphics contained herein, whether based on contract, tort, negligence, strict liability or otherwise, even if Microsoft or any of its suppliers has been advised of the possibility of damages.

↑ Back to the top


Keywords: kbpubmvp, kbpubtypecca, kbhowto, KB556023

↑ Back to the top

Article Info
Article ID : 556023
Revision : 3
Created on : 4/20/2018
Published on : 4/20/2018
Exists online : False
Views : 294