Options

Which automations to use, how to find the appropriate one.

Hello everyone,
can you write me how I can find out which automation I should to use? For instance I woluld like to check free disk space but I do not know how to find the suitable automation. I'm searching the internet to find an automation list with description but no seccess.

Thank you for your hints.

Answers

  • Options
    KTA8KTA8 Member Posts: 389
    You could try to find info about donet system.io
  • Options
    Slawek_GuzekSlawek_Guzek Member Posts: 1,690
    In Classic Client look at Windows Script Host Object Model

    Slawek
    Slawek Guzek
    Dynamics NAV, MS SQL Server, Wherescape RED;
    PRINCE2 Practitioner - License GR657010572SG
    GDPR Certified Data Protection Officer - PECB License DPCDPO1025070-2018-03
  • Options
    RockWithNAVRockWithNAV Member Posts: 1,139
    There's nothing a direct answer to your question but always go for searching .NET instead of Automation, if you want to gain knowledge on this you have to somehow gain over C# Assemblies Namespaces and classes.
  • Options
    ftorneroftornero Member Posts: 522
    You can use this:
    Name	DataType	Subtype	Length
    Folders	Automation	'Windows Script Host Object Model'.FileSystemObject	
    Drive	Automation	'Windows Script Host Object Model'.Drive	
    
    
    CREATE(Folders);
    Drive := Folders.GetDrive('C:');
    MESSAGE('Free space %1', Drive.AvailableSpace);
    
    

    Regards.
Sign In or Register to comment.