hi all,
i know open a specific session of samurize with the .vbs(from Tadis i guess,no??):
Set WshShell = WScript.CreateObject("WScript.Shell")
set oShell = CreateObject("Shell.Application")
strSamPath = WshShell.RegRead ("HKCUSoftwareSerious SamurizeGeneralDirPath")
SAMURIZE_DIRECTORY = strSamPath
KillClient
Wscript.sleep (100)
Set oExec = WshShell.Exec(SAMURIZE_DIRECTORY & "Client.exe " & """session name""")
Set oExec = Nothing
Set WshShell = Nothing
Function KillClient
Dim objWMIService, colProcessList, objProcess, PID
Set objWMIService = GetObject("winmgmts:.rootcimv2")
Set colProcessList = objWMIService.ExecQuery("select * from Win32_Process where CommandLine LIKE '%Client.exe%" & "session name" & "%'")
For Each objProcess in colProcessList
PID = objProcess.ProcessID
killPID(PID)
Next
End Function
Function killPID(PID)
Dim WshShell
Set WshShell = CreateObject("wscript.shell")
WshShell.run "taskkill /PID " & PID, 0
End Function
but i wish to close any specific samurize session with a buttons or shortcut. 
how can i make it?
thanks
Aqua-Soft Forums
