System library

Overview

Overview

You can control the system using the features provided by the System library.

Create and delete files, run and close files, create, copy, paste, and delete directories, and create linkages to the database to control the system operation.

The features provided by the System library are as follows:

Use Designer or File Explorer to refer to the samples of the System library.

• On Designer: Menu > Help > Sample > Sample > System

• On File Explorer: C:\Users\user\AppData\Roaming\Brity RPA Designer\samples\System


[System sample project names and related activity cards]

DBLibrary: DBConnection, GetDBData, UpdateDBData, SendDBCommand

Edit Registry: GetRegistryValue, SetRegistryValue

Manage Directory: CopyDrectory, CreateDirectory, DeleteDirectory, GetDrectoryList, IsDirectoryExist

Manage File: CloseFile, CopyFile, CreateFile, DeleteFile, ExecuteFile, GetFileList, IsFileExist, IsFileLock, MoveFile, ReadTextFile, Rename, WaitFileCreation, WaitFileDelete, WaitFileUnlock, WriteTextFile, ZipUnzip

Utilize Clipboard: ClipboardToFile, GetClipboard, SetClipboard

Other Samples: Copy(Ctrl+C), Cut(Ctrl+X), ExecuteCmd, GetSpecialFolder, InputBox, MessageBox, Paste(Ctrl+V), Screenshot(Alt+PrtSc), SelectAll(Ctrl+A), TimeStamp

Common Properties

Common Properties

COMMAND

Card properties

Properties

Type

Required

Unit

Auto-setting

Description

Command

Text

Y

-

N

Enter the command to execute.

Arguments

Text

N

-

N

Enter the argument necessary for the execution command.

Encoding

Combination box

N

-

N

Select the text encoding method.


※ Encoding types

- Default, Unicode, BigEndianUnicode, ASCII, UTF8, UTF32, UTF7

Text

Text

Y

-

N

Enter the string to be entered in a text document.

DataFormat

Combination box

Y

ms

Y

Select Text or Image for the data type to save the clipboard content.

BeforeDelay(ms)

Number

N

ms

Y

Enter the delay time before executing an event. (1 second = 1,000 milliseconds)

AfterDelay(ms)

Number

N

-

Y

Enter the delay time after executing an event. (1 second = 1,000 milliseconds)

Path

Text

Y

-

N

Enter the path of the target file.

Input

Text

Y

-

N

Enter value to save on the clipboard.

ScrFilePath

Text

Y

-

N

Enter the path for the source file.

DescFilePath

Text

Y

-

N

Enter the path for the new file.

ScrDirPath

Text

Y

-

N

Enter the path for the source directory.

DestDirPath

Text

Y

-

N

Enter the path for a new directory.

NewName

Text

Y

-

N

Enter the new filename.

Overwrite

Toggle button

N

-

Y

Select whether to overwrite the file if a file with the same name already exists.

MakeDirectory

Toggle button

N

-

Y

Select whether to decompress after creating a folder called ‘compressed file name’ under the target folder to be decompressed.

Timeout(Sec)

Number

Y

sec

Y

Enter the delay time until the event ends.

Timeout(ms)

Number

Y

ms

Y

Enter the delay time until the event ends.

File Size(KB)

Number

Y

KB

N

Set the minimum size for the target file. When the file size becomes equal to or larger than the set size, it will be regarded that the file has been created.

FullScreen

Toggle button

N

-

N

Select whether to capture the entire screen.

BaseKey

Combination box

N

-

Y

Select the registry root key.


※ Root key types

- ClassesRoot, CurrentUser, LocalMachines, Users, CurrentConfig

KeyName

Text

Y

-

N

Enter name of the registry key.

ValueName

Text

Y

-

N

Enter registry key value.

Value

Text

Y

-

N

Enter registry data value.

SourceType

Combination box

Y

-

N

Select TABLE or VIEW as the data source type.

Source

Combination box

N

-

N

Select the data source.

MaxMegaBytes

Number

Y

Byte

N

Set the size limit when compressing.

DirectoryOrFile

Button

N

-

Y

Select whether to compress Directory or File.

MORE OPTIONS

MORE OPTIONS properties

Properties

Type

Required

Unit

Auto-setting

Description

On Error

Combination box

N

-

N

Specify an action to carry out when an error occurs at the time of execution.

- If not specified: Output errors and exit the task.

- --Ignore--: Ignore the error.

- --Retry--: Try the activity one more time.

- --Goto--: Try the scenario for the specified time if the activity fails.

- _Event: Select an event created within the project.

DESCRIPTION

Card properties

Properties

Type

Required

Unit

Auto-setting

Description

DESCRIPTION

Text

N

-

N

Enter the description for the activity card.

The description entered in the DESCRIPTION field is used as the description of the activity. A representative value will be displayed in the absence of the DESCRIPTION input.

CreateFile

CreateFile

Overview

This activity card creates a file in the specified path.

Application procedures

You can only create text format files, such as the TXT, XML, or HTML files. You cannot create file formats that require specific apps, such as Excel or Word.

  1. In the Path field, enter the path and file name to create a file.

  2. Set the OverWrite property to select whether to overwrite any existing file with the same name in the path.

Card properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

Y

COMMAND

-

-

-

-

Common property of the System library.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Create a Notepad file named “IPA Test.txt” in the specified path and delete it.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

DeleteFile, IsFileExist

ExecuteFile

ExecuteFile

Overview

This activity card executes the specified file.

Application procedures

The app specified in the system is launched according to the extension of the specified file, and the PID of the launched app is returned.

  1. in the [Output] Output field, enter the variable to store the PID of the launched app.

  2. In the Timeout field, enter the delay time until the target file is opened.

  3. In the Path field, enter the path and file name to run a file.

Card properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

Y

COMMAND

-

-

-

-

Common property of the System library.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Create a Notepad file named “IPA Test.txt” in the specified path and open it.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

DeleteFile, IsFileExist

CloseFile

CloseFile

Overview

This activity card closes a file that is currently executed.

Application procedures

Execute a file with the ExecuteFile activity card and close the executed file using the PID that has been returned.

In the [Input] PID field, enter the PID of the file to close.

Card properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

N

[Input] PID

Variable

Y

-

N

Enter the PID of the file to close.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Create a Notepad file named “IPA Test.txt” in the specified path, open it, and close it.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

CreateFile, ExecuteFile

CopyFile

CopyFile

Overview

This activity card copies the specified file.

Application procedures

  1. In the SrcFilePath field, enter the path and file name of the source file to copy.

  2. In the DescFilePath field, enter the new path and file name to save the copied file.

  3. Set the Overwrite property to select whether to overwrite any existing file with the same name in the path.

Card properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

Y

COMMAND

-

-

-

-

Common property of the System library.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Create a Notepad file named “IPA Test.txt” in the specified path. Then, copy it and save it in the newly specified path as “IPA Test_Copy.txt.”

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

CreateFile, CloseFile, DeleteFile

DeleteFile

DeleteFile

Overview

This activity card deletes the specified file.

Application procedures

In the Path field, enter the path and file name to delete.

Card properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

Y

COMMAND

-

-

-

-

Common property of the System library.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Delete the Notepad file named “IPA Test.txt” in the specified path.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

CreateFile, CloseFile, CopyFile

IsFileExist

IsFileExist

Overview

This activity card checks whether the specified file exists.

Application procedures

  1. In the [Output] Output field, enter the variable to store the value of a verification result.

  2. In the Path field, enter the path and file name of the Excel document to verify the existence.

Card properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

N

[Output] Output

Variable

Y

-

Y

“True” is returned if the matching file exists. “False” is returned otherwise.

Y

COMMAND

-

-

-

-

Common property of the System library.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Verify if the Notepad file, “IPA Test.txt,” exists and output the verification result in a message box.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

IsDirectoryExist

ReadTextFile

ReadTextFile

Overview

This activity card reads a text file and fetches the text string.

Application procedures

  1. In the [Output] Output field, enter the variable to store the read text.

  2. Set the Encoding property to select the text encoding type.

  3. In the Path field, enter the path and file name to read.

Card properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

N

[Output] Output

Variable

Y

-

Y

Enter the variable to store the text string that is read from the file. (Default: RESULT)

Y

COMMAND

-

-

-

-

Common property of the System library.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Read the text in the Notepad file, “IPA Test.txt,” and save it to the “readTextFile” variable. The text read from the file can be utilized for subsequent processes.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

WriteTextFile

WriteTextFile

WriteTextFile

Overview

This activity card writes a text string in a text file and saves it.

Application procedures

  1. Set the Encoding property to select the text encoding type.

  2. In the Text field, enter the text string to write.

  3. In the Path field, enter the path and file name of the file to write the text string in.

  4. Set the Overwrite property to select whether to overwrite any existing file with the same name in the path.

Card properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

Y

COMMAND

-

-

-

-

Common property of the System library.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Create a Notepad file named “IPA Test.txt” in the specified path and open it. Then, enter the text, “WriteTextFile Test,” in the file and close the file. The text written in the file can be utilized for subsequent processes.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

ReadTextFile

CreateDirectory

CreateDirectory

Overview

This activity card creates a new directory in the specified path.

Application procedures

In the Path field, enter the path to create a new directory.

Card properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

Y

COMMAND

-

-

-

-

Common property of the System library.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Create a new directory, “C:\\IPA Test.”

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

DeleteDirectory

IsDirectoryExist

IsDirectoryExist

Overview

This activity card verifies whether the specified directory exists.

Application procedures

  1. In the [Output] Output field, enter the variable to store the value of a verification result.

  2. In the Path field, enter the path to verify the existence.

Card properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

N

[Output] Output

Variable

Y

-

Y

“True” is returned if the matching directory exists. “False” is returned otherwise.

Y

COMMAND

-

-

-

-

Common property of the System library.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Verify if the “C:\\IPA Test” directory exists and output the verification result in a message box. If the directory exists, it can be utilized for subsequent processes.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

IsFileExist

CopyDirectory

CopyDirectory

Overview

This activity card copies the specified directory.

Application procedures

  1. In the SrcDirPath field, enter the path for the source directory to copy.

  2. In the DescDirPath field, enter a new path to save the copied directory.

  3. Set the Overwrite property to select whether to overwrite any existing directory with the same name in the specified path.

Card properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

Y

COMMAND

-

-

-

-

Common property of the System library.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Copy a directory created in the specified path and save it to the new path.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

CreateFile, CloseFile, DeleteFile

DeleteDirectory

DeleteDirectory

Overview

This activity card deletes the specified directory.

Application procedures

  1. In the Path field, enter the path for the directory to delete.

Card properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

Y

COMMAND

-

-

-

-

Common property of the System library.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Delete the specified directory, “C:\\IPA Test\\DeleteDir_Test2.”

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

CreateDirectory, CopyDirectory

GetFileList

GetFileList

Overview

This activity card fetches the file list of a specified directory.

Application procedures

  1. In the [Output] Output field, enter the variable to store the fetched file list.

  2. In the Path field, enter the path for the directory to fetch the file list.

Card output properties

Property

Type

Additional comments

Description

Example

Output

One-dimensional array

String

A list of file paths within the selected "Path" is returned.

['C:\\Users\\Desktop\\Brity RPA BOT.lnk', 'C:\\Users\\Desktop\\Brity RPA Designer.lnk']

Card input properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

Y

COMMAND

-

-

-

-

Common property of the System library.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Fetch the list of files in the “C:\\” directory and output it in a message box.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

GetDirectoryList

GetDirectoryList

GetDirectoryList

Overview

This activity card fetches the sub-directory list of a specified directory.

Application procedures

  1. In the [Output] Output field, enter the variable to store the fetched directory list.

  2. In the Path field, enter the path for the parent directory to fetch the directory list.

Card output properties

Property

Type

Additional comments

Description

Example

Output

One-dimensional array

String

A list of subfolder paths of the selected "Path" is returned.

['C:\\Program Files', 'C:\\Program Files (x86)']

Card input properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

Y

COMMAND

-

-

-

-

Common property of the System library.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Fetch the list of subordinate directories under the “C:\\” directory and output it in a message box.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

GetFileList

InputBox

InputBox

Overview

This activity card displays an input box on the screen for a user input.

Application procedures

This activity card is available only in Designer.

  1. In the [Output] Variable field, enter the variable to store the input value.

  2. In the DefaultValue field, enter the value to display in the input box.

Card properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

N

[Output] Variable

Variable

Y

-

Y

Enter the variable to store the input value. (Default: RESULT)

N

DefaultValue

Text

N

-

N

Enter the value to display on the InputBox within single quotation marks.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Create a Notepad file named “IPA Test.txt” in the specified path and store the text input by the user in the “this.inputBox” variable. On Designer, this activity card receives text input by the user to utilize it for subsequent processes.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Remarks

The InputBox activity card can be run only in Designer. However, this feature can be used for debugging a scenario.

Related/Similar activities

MessageBox

MessageBox

MessageBox

Overview

This activity card displays a message box on the screen.

Application procedures

This activity card is available only in Designer.

In the Arguments field, enter the value to display in the message box.

Card properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

N

Arguments

Text

N

-

Y

Enter value to be displayed in the message box. (Default: RESULT)

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Output the text string (variable) input received with the InputBox activity card in a message box.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Remarks

Outputs using the MessageBox activity card are available only in Designer. However, this feature can be used for debugging a scenario.

Related/Similar activities

MessageBox

GetClipboard

GetClipboard

Overview

This activity card fetches the value saved in the system clipboard.

Application procedures

In the [Output] Output field, enter the variable to store the value fetched from the clipboard.

Card properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

N

[Output] Output

Variable

Y

-

Y

Enter the variable to store the value read from the clipboard. (Default: RESULT)

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

On the Google website, fetch the specific boundary data of the Google logo image obtained by utilizing the GetImageBounds activity card and save it on the clipboard. This activity card fetches the value stored on the clipboard for subsequent processes.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

SetClipboard

SetClipboard

SetClipboard

Overview

This activity card saves the input value to the system clipboard.

Application procedures

The saved value can be used for the pasting feature because this activity card works identically to the “Ctrl+C” shortcut combination on the keyboard.

  1. In the Input field, enter the value to store on the clipboard.

Card properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

Y

COMMAND

-

-

-

-

Common property of the System library.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Copy the text on the specific location of the Paint app screen on the clipboard, and then paste it in Notepad. This activity card fetches the value stored on the clipboard for subsequent processes.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

GetClipboard

ClipboardToFile

ClipboardToFile

Overview

This activity card saves the image or text content on the clipboard as a file.

Application procedures

  1. In the DataFormat field, select the data type to store on the clipboard.

  2. In the Path field, enter the path and file name to save the content on the clipboard.

Card properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

Y

COMMAND

-

-

-

-

Common property of the System library.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Store the content of the Notepad app screen on the clipboard and save it in the specified file format.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

GetClipboard, SetClipboard

GetSpecialFolder

GetSpecialFolder

Overview

This activity card fetches the paths for the default system folders provided by Windows.

Application procedures

  1. In the [Output] Output field, enter the variable to store the fetched path for the system folder.

  2. Set the FolderType property to select the system folder type.

Card output properties

Property

Type

Additional comments

Description

Example

Output

String

-

The imported system folder path is returned.

'C:\Users\SDS\Desktop\'

Card input properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

N

FolderType

Combination box

Y

-

Y

Select system folder format.


※ Folder types

- MyDocuments, ApplicationData, Desktop, Temp, InternetCache, StartMenu, ProgramFiles, Windows, System

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Read a system folder path and return it as the value for the “RESULT” variable. Then, save the content on the clipboard as a file (RESULT+test_RPA.txt) in the specified path.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Remarks

The default Windows system folders are used.

Related/Similar activities

GetFileList, GetDirectoryList, GetClipboard, GetRegistryValue

Screenshot(Alt+PrtSc)

Screenshot(Alt+PrtSc)

Overview

This activity card captures the screen that is currently focused on.

Application procedures

Ensure that the screen to capture has been focused.

  1. Use other activity cards (OpenApp, ChromeOpen, etc.) to compose a screen to capture.

  2. In the BeforeDelay(ms) and AfterDelay(ms) fields, enter the delay time before and after the screen capture event.

  3. In the Path field, enter the path and file name to save the captured screen.

  4. Set the FullScreen property to specify whether to capture the entire screen.

Card properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

Y

COMMAND

-

-

-

-

Common property of the System library.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Capture the launched Notepad app screen (Screenshot / Alt+PrtSc) and save the captured image as “C:\IPA ScreenShotTest.png.”

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

ExecuteFile

Copy(Ctrl+C)

Copy(Ctrl+C)

Overview

This activity card copies the specified file. This feature works identically to the “Ctrl+C” shortcut combination on the keyboard.

Application procedures

Ensure that specific text or files have been focused on.

  1. On the screen set the focus on specific text or files.

  2. In the BeforeDelay(ms) and AfterDelay(ms) fields, enter the delay time before and after the “copy” event.

Card properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

Y

COMMAND

-

-

-

-

Common property of the System library.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Open a new Notepad document and enter “Ctrl+C Test.” Then, copy the text (Ctrl+C) and paste it (Ctrl+V) on the app screen.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

SelectAll(CTRL+A), Paste(CTRL+V), Cut(CTRL+X)

Cut(Ctrl+X)

Cut(Ctrl+X)

Overview

This activity card cuts the target text or files that are currently focused on. This feature works identically to the “Ctrl+X” shortcut combination on the keyboard.

Application procedures

Ensure that specific text or files have been focused on.

  1. On the screen, set the focus on specific text or files.

  2. In the BeforeDelay(ms) and AfterDelay(ms) fields, enter the delay time before and after the “cut” event.

Card properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

Y

COMMAND

-

-

-

-

Common property of the System library.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Open a new Notepad document and enter “Ctrl+X Test.” Then, select all text (Ctrl+A), cut the selection (Ctrl+X), and paste it (Ctrl+V) on the app screen.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

SelectAll(CTRL+A), Paste(CTRL+V), Cut(CTRL+C)

Paste(Ctrl+V)

Paste(Ctrl+V)

Overview

This activity card pastes the data to a window that is currently focused on. This feature works identically to the “Ctrl+V” shortcut combination on the keyboard.

Application procedures

Ensure that the target window has been focused on.

  1. Set the focus on the target window.

  2. In the BeforeDelay(ms) and AfterDelay(ms) fields, enter the delay time before and after the “paste” event.

Card properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

Y

COMMAND

-

-

-

-

Common property of the System library.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Open a new Notepad document and enter “Ctrl+V Test.” Then, select all text (Ctrl+A), cut the selection (Ctrl+X), and paste it (Ctrl+V) on the app screen.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

SelectAll(CTRL+A), Copy(CTRL+C), Cut(CTRL+X)

SelectAll(Ctrl+A)

SelectAll(Ctrl+A)

Overview

This activity selects all entries in a window that is currently focused on. This feature works identically to the “Ctrl+A” shortcut combination on the keyboard.

Application procedures

Ensure that the target window has been focused on.

  1. Set the focus on the target window.

  2. In the BeforeDelay(ms) and AfterDelay(ms) fields, enter the delay time before and after the “select all” event.

Card properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

Y

COMMAND

-

-

-

-

Common property of the System library.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Open a new Notepad document and enter “Ctrl+V Test.” Then, select all text (Ctrl+A), cut the selection (Ctrl+X), and paste it (Ctrl+V) on the app screen.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

Paste(CTRL+V), Copy(CTRL+C), Cut(CTRL+X)

ExecuteCmd

ExecuteCmd

Overview

This activity card executes a program command in the background and returns the execution result. This feature will not be visible when it is executed.

Application procedures

  1. In the [Output] Output field, enter the variable to store the execution result of the target program.

  2. In the Command field, enter the command to execute.

Card properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

Y

COMMAND

-

-

-

-

Common property of the System library.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Execute the "dir” command in the background. Then, return the result to the “cmdVar1” variable and output it in a message box. The returned value becomes the standard output string generated when carrying out a command.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Remarks

The resulting value may not be returned if not enough time has been specified for the “Timeout (ms)” property.

Related/Similar activities

ExecuteFile

TimeStamp

TimeStamp

Overview

This activity card returns the elapsed time from the specified time to the current time in milliseconds.

Application procedures

  1. In the [Output] Output field, enter the variable to store the elapsed time.

  2. In the BaseTime field, enter the time to start calculating the elapsed time.

Card output properties

Property

Type

Additional comments

Description

Example

Output

String

-

The elapsed time from "BaseTime" is returned.

'1012'

Card input properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

Y

BaseTime

Text

Y

-

Y

Enter the start time to calculate elapsed time. (Default: 0)

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Open the Notepad app and perform text input and cut and paste the text. Then, output the elapsed time in a message box. This feature can be used to process elapsed time.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

MessageBox

GetRegistryValue

GetRegistryValue

Overview

This activity card fetches the key value of the specified registry path.

Application procedures

  1. In the [Output] Output field, enter the variable to store the registry key value.

  2. Set the BaseKey property to select the registry root key.

  3. In the KeyName field, enter the registry name.

  4. In the ValueName field, enter the registry key value.

Card output properties

Property

Type

Additional comments

Description

Example

Output

Object

It is determined by the value of the selected registry.예) string, DWORD, QWORD, ...

Returns the value of the selected registry path.※ Path: the value of (ValueName) in (BaseKey)\(KeyName)

'C:\Program Files\7-Zip\123\'

Card input properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

Y

COMMAND

-

-

-

-

Common property of the System library.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Read the registry value at the specified path, return it to the “getRegistryValue” variable, and then output it in a message box.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

SetRegistryValue

SetRegistryValue

SetRegistryValue

Overview

This activity card enters a key value in the specified registry path.

Application procedures

  1. Set the BaseKey property to select the registry root key.

  2. Set the ValueKind property to select the registry key type.

  3. In the KeyName field, enter the registry name.

  4. In the ValueName field, enter the registry key value.

  5. In the Value field, enter the registry data value.

Card properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

N

ValueKind

Combination box

N

-

Y

Select a registry key type.


※ Key types

- String, ExpendString, Binary, DWord, MultiString, QWord

Y

COMMAND

-

-

-

-

Common property of the System library.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Enter the registry key value in the specified registry path.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

GetRegistryValue

MoveFile

MoveFile

Overview

This activity card moves a file to another directory.

Application procedures

  1. In the SrcFilePath field, enter the path and file name of the source file to move.

  2. In the DescFilePath field, enter a new path to save the moved file.

  3. Set the Overwrite property to select whether to overwrite any existing file with the same name in the path.

Card properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

Y

COMMAND

-

-

-

-

Common property of the System library.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Create a folder and a file, move the file to the specified folder, and delete the source folder.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

CopyFile, DeleteFile, CloseFile

RenameFile

RenameFile

Overview

This activity card renames the specified file.

Application procedures

  1. In the NewName field, enter the new name for the file.

  2. In the SrcFilePath field, enter the path and file name of the target file to rename.

Card properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

Y

COMMAND

-

-

-

-

Common property of the System library.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Create a new file and rename the file.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

CreateFile

DBConnection

DBConnection

Overview

This activity card creates a connection to a database, such as MsSQL or Oracle.

Application procedures

The ODBC driver must be installed for the connect to a database.

  1. In the [Output] DataSource field, enter the variable to store the data source information.

  2. In the [Output] Connection field, enter the variable to store the connection information.

  3. Set the DSN property to select a DSN to connect.

  4. Set the SourceType property to select the data source type.

  5. Set the Source property to select the data source.

Card properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

N

[Output] Connection

Variable

Y

-

N

Enter the variable to store the connection information.

N

[Output] DataSource

Variable

Y

-

N

Enter the variable to store the data source information.

N

DSN

Combination box

Y

-

N

Select the DNS to connect to.


※ DSN types

- Excel Files, MS Access Database

N

UID

Text

N

-

N

Enter the user ID.

N

PWD

Other

N

-

N

Enter the password.

Y

[DATASOURCE] SourceType

Combination box

Y

-

N

Select the data source type.


※ Data source types

- TABLE, VIEW

Y

[DATASOURCE] Source

Combination box

Y

-

N

Select the data source.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Connect to a database and store the connection information and the data source information in variables.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

GetDBData, UpdateDBData, SendDBCommand

GetDBData

GetDBData

Overview

This activity card fetches data within the specific field of the connected DB.

Application procedures

  1. In the [Output] Output field, enter the variable to store the fetched field data.

  2. In the [Input] Connection field, enter the variable for the connection information of the database to connect.

  3. In the [Input] DataSource field, enter the variable for the data source of the connected database.

  4. Set the UseSource property to specify whether to use the data source.

Card properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

N

[Output] Output

Variable

Y

-

N

Specify the variable to store the fetched field data.

N

[Input] DataSource

Variable

Y

-

N

Specify the data source variable for the DB to be fetched.

N

[Input] Connection

Variable

Y

-

N

Specify the variable for the connection information of the connected DB.

N

UseSource

Toggle button

N

-

Y

Specify whether to use the data source.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Fetch the data in the specific field of the connected DB and store it in a variable.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

DBConnection, UpdateDBData, SendDBCommand

UpdateDBData

UpdateDBData

Overview

This activity card updates specific field of the connected DB.

Application procedures

  1. In the [Output] Output field, enter the variable to store the result of the data update.

  2. In the [Input] Input field, enter the target field to update.

  3. In the [Input] Connection field, enter the variable for the connection information of the database to update.

  4. In the [Input] DataSource field, enter the variable for the data source of the database to update.

Card properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

N

[Output] Output

Variable

Y

-

N

Enter the variable to store the result of field data update.

N

[Input] Input

Variable

Y

-

N

Enter the target field to update.

N

[Input] Connection

Variable

Y

-

N

Enter the variable for the connection information of the database to update.

N

[Input] DataSource

Variable

Y

-

N

Enter the variable for the data source of the database to update.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Update the specific field of the connected database with new data.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

DBConnection, GetDBData, SendDBCommand

SendDBCommand

SendDBCommand

Overview

This activity card executes a specific query on the connected database.

Application procedures

Ensure that the connection to the database has been established using the DBConnection activity card.

  1. In the [Output] Output field, enter the variable to store the result of the executed query.

  2. In the [Input] Connection field, enter the variable for the database to connect.

  3. In the Command field, enter the query command that will be executed on the connected database.

Card properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

N

[Output] Output

Variable

Y

-

N

Enter the variable to store the result of executed query.

N

[Input] Connection

Variable

Y

-

N

Select DB to execute query.

N

Command

Text

Y

-

N

Enter a command to execute query within single quotation marks.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Execute a query to view the table information on the connected database. Then, store the searched result in the “data3” and output it in a message box.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

DBConnection, GetDBData, UpdateDBData

Zip

Zip

Overview

This activity card compresses a specified folder or file.

Application procedures

  1. In the SrcFilePath field, enter the path of the file to compress.

  2. In the SrcDirPath field, enter the source folder to compress.

  3. In the DestDirPath field, enter the path to save the compressed file.

  4. Set the DirectoryOrFile property whether the compressed target is a folder or a file

  5. If the compression target is a file, set whether to include the parent directory name in the IncludeDirectoryPath property

  6. Set the MaxMegaBytes property to specify the size limit for the file compression.

Card properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

Y

COMMAND

-

-

-

-

Common property of the System library.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Compress the “C:\\IPA_SAMPLE” folder.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

UnZip

UnZip

UnZip

Overview

This activity card decompresses the specific compressed file.

Application procedures

  1. In the SrcDirPath field, enter the path for the compressed file to decompress.

  2. In the DestDirPath field, enter the target path to decompress the compressed file.

Card properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

Y

COMMAND

-

-

-

-

Common property of the System library.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Decompress the “IPA_SAMPLE.zip” file in the “C:\\” directory into the “C:\\IPA_SAMPLE” directory.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

Zip

IsFileLock

IsFileLock

Overview

This activity card verifies whether the specified file is currently locked after being executed in another process.

Application procedures

  1. In the [Output] Output field, enter the variable to store the result of the lock status verification.

  2. In the Path field, enter the path for the file to verify the lock (execution) status.

Card properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

N

[Output] Output

Variable

Y

-

Y

Enter the variable to store the result of the lock (execution) status verification. (Default: RESULT)

“True” is returned if the file is currently being executed. “False” is returned otherwise.

Y

COMMAND

-

-

-

-

Common property of the System library.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Create a new Excel file, verify if the file is currently being executed, and then output the verification result in a message box.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

IsFileExist, WaitFileUnlock

WaitFileUnLock

WaitFileUnLock

Overview

This activity card waits for the specified, currently running file to close.

Application procedures

  1. In the Timeout(Sec) field, enter the delay time to wait.

  2. In the Path field, enter the path and name of the file to wait for the closing.

Card properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

N

[Output] Output

Variable

Y

-

Y

“True” is returned if the file that matches the conditions set with the COMMAND properties is closed. “False” is returned otherwise.

Y

COMMAND

-

-

-

-

Common property of the System library.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Create a new Excel file, and open the file, and wait for the specified time until the file is closed. Then, verify if the file has been closed and output the result in a message box.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

WaitFileCreation, WaitFileDelete

WaitFileCreation

WaitFileCreation

Overview

This activity card waits until the specified file is created.

Application procedures

  1. In the Timeout(Sec) field, enter the delay time to wait.

  2. In the Path field, enter the path and name of the file to wait for the creation.

Card properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

N

[Output] Output

Variable

Y

-

Y

“True” is returned if the file that matches the conditions set with the COMMAND properties is created. “False” is returned otherwise.

Y

COMMAND

-

-

-

-

Common property of the System library.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Wait for the specified time until the new Excel file is created. Then, verify if the file has been created and output the result in a message box.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

WaitFileUnlock, WaitFileDelete

WaitFileDelete

WaitFileDelete

Overview

This activity card waits until the specified file is deleted.

Application procedures

  1. In the Timeout(Sec) field, enter the delay time to wait.

  2. In the Path field, enter the path and name of the file to wait for the deletion.

Card properties

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

N

[Output] Output

Variable

Y

-

Y

“True” is returned if the file that matches the conditions set with the COMMAND properties is deleted. “False” is returned otherwise.

Y

COMMAND

-

-

-

-

Common property of the System library.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Wait for the specified time until the new Excel file is deleted. Then, verify if the file has been deleted and output the result in a message box.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

WaitFileCreation, WaitFileUnLock

GetWindowsCredential

GetWindowsCredential

Overview

This activity card gets the Windows generic credentials.

Application procedures

  1. In the Target Credential field, enter the name of your Windows common credentials.

  2. In the Property Name field, select the property name for the target credential on.

Card properties

카드 속성

Common

Properties

Type

Required

unit

Auto-Setting

Description

N

[Output] Output

Variable

Y

-

Y

Enter a variable to store Windows credential information.

N

Target Credential

String

Y

-

-

Enter a name for the Windows Common Credential.

N

Property Name

Toggle button

Y

-

Y

Select the property name (Username, Password) to read.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Reads the email with the specified Windows credential information (user name, password) and prints the result to the message box.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

Related/Similar activities

IsWindowsCredentialExist, SetWindowsCredential, GetWindowsCredential, RemoveWindowsCredential

SetWindowsCredential

SetWindowsCredential

Overview

This activity card registers windows common credentials.

Application procedures

  1. In the Target Credential field, enter the name of your Windows common credential.

  2. In the Username field, enter the username for the target identity.

  3. In the Password field, enter the password for the target credential.

Card properties

Common

Properties

Type

Required

Unit

Auto-Setting

Description

N

Target Credential

String

Y

-

-

Enter a name for the Windows Common Credential.

N

Username

String

Y

-

-

Enter the user name of the credentials.

N

Password

String

Y

-

Y

Enter the password for the credentials.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Registers the specified Windows credential information (user name, password) to the system.

setwindowscred

Sample file

Used variables

Used properties

Related/Similar activities

RemoveWindowsCredential, IsWindowsCredentialExist, GetWindowsCredentialList, GetWindowsCredential

IsWindowsCredentialExist

IsWindowsCredentialExist

Overview

This activity card verifies that windows common credentials exists.

Application procedures

  1. In the [Output] field, enter the variable that stores whether Windows credential information exists in Output.

  2. In the Target Credential field, enter the name of your Windows common credential.

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

N

Output

String

Y

-

Y

Enter a variable for storing whether Windows credential information exists.

N

Target Credential

String

Y

-

-

Enter a name for the Windows Common Credential.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Reads whether the specified Windows credentials exist on the system and outputs them to a message box.

iswindowscredExist

Sample file

Used variables

Used properties

Related/Similar activities

GetWindowsCredentialList, RemoveWindowsCredential, GetWindowsCredential, SetWindowsCredential

GetWindowsCredentialList

GetWindowsCredentialList

Overview

This activity card gets a list of Windows common credentials.

Application procedures

  1. In the Output field, enter a variable to store the list of Windows credentials.

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

N

[Output] Output

Variable

Y

-

Y

Enter a variable to store the list of Windows credentials.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Read the list of Windows credential information and output it to the message box.

GetwindowsCredentiallist

Sample file

Used variables

Used properties

Related/Similar activities

GetWindowsCredential, RemoveWindowsCredential, SetWindowsCredential

RemoveWindowsCredential

RemoveWindowsCredential

Overview

This activity card deletes the Windows Common Credentials.

Application procedures

  1. In the Target Credential field, enter the name of the Windows credential you want to delete.

Card properties

Common

Properties

Type

Required

Unit

Auto-setting

Description

N

Target Credential

String

Y

-

-

Enter the name of the Windows common credential you want to delete.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

Example of utilization

Registers the two specified Windows credentials and prints the list to a message box. Delete one of the two registered Windows credentials, Hannah, and then print the list to the message box.

RemovewindowsCred

Sample file

Used properties

Related/Similar activities

GetWindowsCredentialList, SetWindowsCredential, IsWindowsCredentialExist

Encrypt

Encrypt

Overview

Encrypt a plain string or file. If it is already encrypted, no further encryption is performed. Encrypting a file can take several minutes or more, depending on the size of the file.

Application procedures

  1. In the DataType field, select the type of data you want to encrypt.

  2. In the Crypto Password field, enter the password you want to use for encryption. You must use the same password for decryption.

  3. In the String field, enter a generic string you want to encrypt. Use when DataType is String.

  4. In the FilePath field, enter the path to the original file you want to encrypt. Use when DataType is File.

  5. Enter the destination file path in the Target FilePath field to save the encrypted result. Use when DataType is File.

Encryption rules

암호화 예시

Source Data Type

Source data

Result

Comments

String

Null

An error occurred


''

Encrypted strings


Plain strings

Encrypted strings


Encrypted strings

Encrypted strings

Same as the original data

File

Null

An error occurred


''

An error occurred


Common file paths

Encrypted file path


Encrypted file path

Encrypted file path

The contents of the result file and the source file are the same

Card properties

카드 속성

Common

Properties

Type

Required

Unit

Auto-setting

Description

N

[Output] Output

Variable

Y

-

Y

Enter the variable to store the encrypted result value.

If DataType is String, it returns an encrypted string.

If DataType is File, it returns the encrypted resulting file path.

N

DataType

ComboBox

N

-

Y

Select the type of data to be encrypted.

- String, File

N

Crypto Password

String

Y

-

N

Enter the password to be used for encryption. It is used for decryption.

It must be between 4 and 64 characters long.

N

String

String

Y

-

N

Enter the generic string you want to encrypt.

Appears if DataType is String.

N

FilePath

String

Y

-

N

Enter the generic source file path that you want to encrypt.

Appears if DataType is File.

N

Target FilePath

String

Y

-

N

Enter the destination file path to save the encrypted results. If the original file path is the same, it will be overwritten automatically.

Appears if DataType is File.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

If the DataType property is File, you can specify the source and destination files equally, and the source file will be replaced with an encrypted file.

Example of utilization

Encrypts the specified generic string and general file and displays the result as a user message box.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

연관/유사 액티비티

Decrypt

Decrypt

Decrypt

Overview

Decrypt an encrypted string or file. If it has already been decrypted, no further decryption is performed. Decrypting a file can take several minutes or more, depending on the file size.

Application procedures

  1. In the DataType field, select the type of data you want to decrypt

  2. In the Crypto Password field, enter the password you want to use for decryption. You must use the same password for encryption.

  3. In the String field, enter a regular string you want to decrypt. Use when DataType is String.

  4. In the FilePath field, enter the path to the original file you want to decrypt. Use when DataType is File.

  5. Enter the target file path to save the decrypted result in the Target FilePath field. Use when DataType is File.

복호화 규칙

암호화 예시

Source Data Type

Source data

Result

Comments

String

Null

An error occurred


''

''


Plain strings

Plain strings

Same as the original data

Encrypted strings

Decrypted string


File

Null

An error occurred


''

An error occurred


Common file paths

Common file paths

The contents of the result file and the source file are the same

Encrypted file path

Decrypted file path


Card properties

카드 속성

Common

Properties

Type

Required

Unit

Auto-setting

Description

N

[Output] Output

Variable

Y

-

Y

Enter a variable to store the decrypted result value.

If DataType is String, it returns a decrypted string.

If DataType is File, it returns the decrypted resulting file path.

N

DataType

ComboBox

N

-

Y

Select the type of data to decrypt

- String, File

N

Crypto Password

String

Y

-

N

Enter the password to be used for decryption. It must be the same password used for encryption.

It must be between 4 and 64 characters long.

N

String

String

Y

-

N

Enter the generic string you want to decrypt.

Appears if DataType is String.

N

FilePath

String

Y

-

N

Enter the encrypted source file path to decrypt.

Appears if DataType is File.

N

Target FilePath

String

Y

-

N

Enter the destination file path to save the decrypted results. If the original file path is the same, it will be overwritten automatically.

Appears if DataType is File.

Y

MORE OPTIONS

-

-

-

-

Common property of the System library.

Y

DESCRIPTION

-

-

-

-

Common property of the System library.

If the DataType property is File, you can specify the source and destination files equally, and the source file will be replaced with the decrypted file.

Example of utilization

Decrypts the specified encrypted string and file, and displays the result as a user message box.

Excel_NewExcel_1K

Sample file

Used variables

Used properties

연관/유사 액티비티

Encrypt