' Check BssCfgManip.htm in your SSH Server installation directory for the correct COM object name for your installation. ' The VBScript instance executing this script needs to run elevated, as administrator, to access SSH Server settings. Set cfg = CreateObject("BssCfg726.BssCfg726") cfg.LockServerSettings() cfg.LoadServerSettings() For Each account in cfg.settings.access.winAccounts WScript.Echo("Processing " & account.winAccount) account.xfer.inheritMountPoints = false account.xfer.mountPointsEx.Clear() account.xfer.mountPointsEx.new.realRootPath = account.term.initDir account.xfer.mountPointsEx.NewCommit() Next cfg.SaveServerSettings() cfg.UnlockServerSettings()