Disconnect Open Files and Folders /Shares

Description: There is normal issue that we write some automation scripts and during that phase if there is something like clean some folders in some location and populate with latest files. Generic Scenario: During Source control, Clean adn Get Latest, we will encounter this issue.
There might be other scenarios where we want to do check and un-map the opened files, folders or shares.

Following is the code in vbScript for getting to know the information using GetObject
a. Get to know the sessions that are opened on the server

Set objConnection = GetObject(“WinNT://MyKusumaServer01/lanmanserver”)
Set colSessions = objConnection.Sessions

For Each objSession in colSessions
Wscript.Echo “Computer: ” & objSession.Computer
Wscript.Echo “Connected Time: ” & objSession.ConnectTime
Wscript.Echo “Idle Time: ” & objSession.IdleTime
Wscript.Echo “Name: ” & objSession.Name
Wscript.Echo “User: ” & objSession.User
Wscript.Echo
Next

b. Get to know the Files/Folder/Shares Opened
Wscript.Echo “Re-opening the fileService “
Set oFileService = GetObject(“WinNT://MyKusumaServer01/lanmanserver,fileservice”)

For Each oResource In oFileService.Resources
WScript.Echo oResource.Path & “:opened by the User->” & OResource.User & “->” & OResource.Name
Next

apart from that if we want to Verify and disconnect, follow this statement provided by Win OS

Following statement is the solution:

Query:
openfiles.exe /query /fo list /v
openfiles.exe /query /s MyKusumaServer02 /fo list /v
openfiles.exe /query /s MyKusumaServer02 /fo table /v

you can as well sent to csv file. update table to csv

Disconnect connected:
read/write Mode: openfiles.exe /disconnect /o read/write
AllModes: openfiles.exe /disconnect /o *
On other Server: openfiles.exe /disconnect /s MyKusumaServer02 /o *

Want to check specific folders/Path and disconnect only those sessions
Get this list and pipe to some temp file:
     openfiles.exe /query /s MyKusumaServer02 /fo table /v
Read the file and get the paths matching your search
    Get the IDs for the sessions
   openfiles.exe /disconnect /ID

Above statements will not close the folder totally, but it will un-map the particular connection and kills the respective thread or process.

Leave a Reply