Kinook Software Forum

Kinook Software Forum (https://www.kinook.com/Forum/index.php)
-   [VBP] General Discussion (https://www.kinook.com/Forum/forumdisplay.php?f=2)
-   -   Kill session (https://www.kinook.com/Forum/showthread.php?t=3983)

tan125 03-30-2009 08:48 AM

Kill session
 
Sometimes I get Access Denied errors when trying to move/rename/delete folders because there are open sessions on the folders or files in question. If I go to Computer Management|System Tools|Shared Folders and kill any relevant open sessions/files out there, that works fine; then I can do when I need to do. Is there a way to do this in VBP?

kinook 03-30-2009 09:15 AM

Searching on google for

computer management automate shared folders disconnect all sessions

The cached link for the second result

http://209.85.173.132/search?q=cache...=us&lr=lang_en

Suggests two possibilities.

VBScript (from a Run Script action):
Code:

Set objConnection = GetObject("WinNT://computername/LanmanServer")
Set colSessions = objConnection.Sessions

For Each objSession in colSessions
    colSessions.Remove(objSession.Name)
Next

or from a Run Program action:

net session \\computername /delete /y

http://www.ss64.com/nt/net_share.html


All times are GMT -5. The time now is 06:09 PM.


Copyright © 1999-2023 Kinook Software, Inc.