IDomainStations.Add

Syntax

Add(Name: String): IStation;

Parameters

Name. Workstation name.

Description

The Add method adds a workstation to the collection.

Example

To execute the example, add a link to the Metabase system assembly.

Sub UserProc;
Var
    MB: IMetabase;
    MS: IMetabaseSecurity;
    User: IMetabaseUser;
    DS: IDomainStations;
    Lic: Object;
Begin
    MB := MetabaseClass.Active;
    
// Check out license to work with security manager
    Lic := MB.RequestLicense(UiLicenseFeatureType.Adm);
    MS := MB.Security;
    
// Get parameters of the specified user 
    User := MS.ResolveName("USER"As IMetabaseUser;
    DS := User.StationIPs;
    
// Add an IP address from which access will be allowed for user
    DS.Add("10.0.0.111");
    
// Save changes
    MS.Apply;
    
// Check in license
    Lic := Null;
End Sub UserProc;

After executing the example the access fro the USER user will be allowed only from IP address 10.0.0.111. By default the user is allowed to access the system from any working stations, IP and MAC addresses.

See also:

IDomainStations