User Guide
Welcome to AdmiNUS!
Thank you for choosing AdmiNUS as your go-to contact management tool. Designed specifically for NUS Club Administrators. AdmiNUS aims to make your contact management experience easy and efficient. Whether you prefer the speed of typing commands or the clarity of a user-friendly GUI, AdmiNUS has you covered.
Why Choose AdmiNUS?
AdmiNUS streamlines contact management by combining the speed of CLI commands with an intuitive GUI. It is especially useful for NUS Club Administrator who need to manage contacts efficiently for events, vendors, and participants.
What AdmiNUS Offers:
-
Add, edit, delete, and search student and company contacts easily.
-
Track contacts by categories (e.g., students, companies) and tags.
-
Seamlessly switch between CLI and GUI for versatile interaction.
-
Import and export contact data via CSV files to facilitate data sharing.
The application is designed to optimize workflows for users managing events, coordinating groups, and ensuring smooth communication.
Example Use Case
Suppose you are organising an NUS event with over 200 participants, including student volunteers and vendors. With AdmiNUS, adding, editing, and filtering contacts is quick and straightforward. For example, to add a student:
student n/John Doe id/A0123456X p/98765432 e/johnd@example.com a/123 Clementi Rd, #02-01 t/volunteer
This command adds John Doe instantly, tagged as a volunteer. You can then use filtertag volunteer
to find all volunteers, saving time compared to traditional methods.
AdmiNUS helps you stay organised and efficient, allowing you to focus on running successful events.
Who Benefits from AdmiNUS?
AdmiNUS is designed primarily for NUS Club Administrators who need an efficient way to manage member and participant lists. The tool helps streamline contact organisation, track participants effectively, and ensures smooth event coordination, making it an essential resource for those responsible for handling large contact databases.
Table of Contents
- Quick Start
- Features
- Glossary
- FAQ
- Known issues
- Command summary
Quick start
-
Ensure you have Java
17
or above installed in your Computer. Download it here. -
Download the latest
.jar
file from here. -
Copy the file to the folder you want to use as the home folder for your AdmiNUS.
-
Open a command terminal, and run the following commands:
-
cd your_file_path_to_folder
which takes you to the folder you put the jar file in. -
java -jar AdmiNUS.jar
command to run the application.
A GUI similar to the below should appear in a few seconds. Note how the app contains some sample data.
-
-
Type the command into the command box, which is indicated by
Enter command here...
, and pressEnter
to execute it. e.g. typinghelp
and pressingEnter
will open the help window.
Some example commands you can try:-
list
: Lists all contacts. -
student n/John Doe id/A0123456Z p/98765432 e/johnd@example.com a/John street, block 123, #01-01
: Adds a student namedJohn Doe
to the AdmiNUS. -
delete 3
: Deletes the 3rd contact shown in the current list. -
clear
: Deletes all contacts. -
exit
: Exits the app.
-
-
Refer to the Features below for details of each command.
Features
đź”” Notes about the command format:
-
Words in
UPPER_CASE
are the parameters to be supplied by the user.
e.g. inadd n/NAME
,NAME
is a parameter which can be used asadd n/John Doe
. -
Items in square brackets are optional.
e.gn/NAME [t/TAG]
can be used asn/John Doe t/friend
or asn/John Doe
. -
Items with
…
​ after them can be used from zero times to multiple times.
e.g.[t/TAG]…​
can be used as:-
Â
(i.e. 0 times), -
t/paid
(i.e. 1 times), -
t/paid t/Computing
(i.e. 2 times), or -
t/paid t/Computing t/year2 t/CS2103T t/SWE
(i.e. 5 times) etc.
-
-
Parameters can be in any order.
e.g. if the command specifiesn/NAME p/PHONE_NUMBER
,p/PHONE_NUMBER n/NAME
is also acceptable. -
Extraneous parameters for commands that do not take in parameters (such as
help
,list
,exit
andclear
) will be ignored.
e.g. if the command specifieshelp 123
, it will be interpreted ashelp
. -
If you are using a PDF version of this document, be careful when copying and pasting commands that span multiple lines as space characters surrounding line-breaks may be omitted when copied over to the application.
Basic Commands
Viewing help: help
Shows a message explaining the various commands available.
Format: help
Expected message:
Showing list of possible commands on the right.
Link to the user guide: helpwindow
Pops up a window, where there is a link to the user guide for the user to easily access.
Format: helpwindow
Expected message:
For more information, please head to the user guide.
Listing all contacts: list
Shows a list of all persons in AdmiNUS.
Format: list
Expected message:
Listed all persons
Viewing a contact: view
Shows the details of a contact.
Format: view INDEX
Expected message:
Displayed person: (Details of person)
Example:
-
view 1
shows the details of the first contact in the list.
Clearing all entries: clear
Clears all entries from AdmiNUS.
Format: clear
Expected message:
Contact list has been cleared!
Exiting the program: exit
Exits the program.
Format: exit
Contact Management
Adding a student: student
Adds a student to AdmiNUS.
Format:
student n/NAME id/STUDENT_ID p/PHONE_NUMBER e/EMAIL a/ADDRESS [t/TAG]…​
Expected Message:
New student added: (details of the student added)
Parameter Name | Description | Constraint | Required |
---|---|---|---|
n/NAME |
Name of the student | Can include alphanumeric characters, spaces, and the / character for common name formats like s/o or d/o, but must not include parameter-like sequences (e.g., n/ ) |
Compulsory |
id/STUDENT_ID |
Student ID issued by NUS | Must be 9 characters long, beginning with the letter A , followed by 7 digits, and ending with any uppercase letter (e.g., A1234567Z ) |
Compulsory |
p/PHONE_NUMBER |
Contact number | Must be only numbers and at least 3 digits long | Compulsory |
e/EMAIL |
Email address | In the format local-part@domain and must adhere to the following constraints: 1) The local part should only contain alphanumeric characters and select special characters, but cannot start or end with them. 2) The domain must consist of labels separated by periods, each ending with at least two letters and containing only alphanumeric characters or hyphens. (e.g., example.com) |
Compulsory |
a/ADDRESS |
Physical address | Can take any value, but must not include parameter-like sequences (e.g., n/ )) |
Compulsory |
t/TAG |
Tag to categorize contact | Must be alphanumeric characters and no spaces (case sensitive) | Optional |
đź”” Notes: Each student is uniquely identified by their Student ID, meaning you cannot add multiple students with the same Student ID.
/
for valid formats, using parameter-like sequences (e.g., n/
, p/
) within the name and address fields will result in an error.
Examples:
-
student n/John Doe id/A0123456X p/98765432 e/johnd@example.com a/John street, block 123, #01-01
adds a student named John Doe to AdmiNUS.
Adding a company: company
Adds a company to AdmiNUS.
Format:
company n/NAME i/INDUSTRY p/PHONE_NUMBER e/EMAIL a/ADDRESS [t/TAG]…​
Expected Message:
New company added: (details of the company added)
Parameter Name | Description | Constraint | Required |
---|---|---|---|
n/NAME |
Name of the company | Can include alphanumeric characters, spaces, and the / character but must not include parameter-like sequences (e.g., n/ ) |
Compulsory |
i/INDUSTRY |
Industry type (e.g., Security, Education) | Include only alphanumerical characters and spaces (case-sensitive) | Compulsory |
p/PHONE_NUMBER |
Contact number | Must be only numbers and at least 3 digits long | Compulsory |
e/EMAIL |
Email address | In the format local-part@domain and must adhere to the following constraints: 1) The local part should only contain alphanumeric characters and select special characters, but cannot start or end with them. 2) The domain must consist of labels separated by periods, each ending with at least two letters and containing only alphanumeric characters or hyphens. (e.g., example.com) |
Compulsory |
a/ADDRESS |
Physical address | Can take any value, but must not include parameter-like sequences (e.g., n/ )) |
Compulsory |
t/TAG |
Tag to categorise contact | Must be alphanumeric characters and no spaces (case-sensitive) | Optional |
đź”” Notes: Each company is uniquely identified by a combination of its name and industry, meaning you cannot add multiple companies with the same name and the same industry. However, companies with the same name but different industries are allowed.
Examples:
-
Company name:
Tesla
, Industry:Automotives
and Company name:Tesla
, Industry:Education
is acceptable. -
Company name:
Tesla
, Industry:Automotives
and Company name:Tesla
, Industry:Automotives
is NOT acceptable.
Examples:
-
company n/Newgate Prison i/Security e/newgateprison@example.com a/Newgate Prison p/1234567 t/prison t/facility
adds a company name Newgate Prison to AdmiNUS.
Editing a contact: edit
Edits an existing contact in AdmiNUS.
Format:
edit INDEX [n/NAME] [id/STUDENT_ID] [i/INDUSTRY] [p/PHONE] [e/EMAIL] [a/ADDRESS] [t/TAG]…​
Expected Message:
Edited Person: (details of the updated contact)
Parameter Name | Description | Constraint | Required |
---|---|---|---|
INDEX |
Index number of the contact to edit | Positive integer only (e.g., 1, 2, 3) | Compulsory |
n/NAME |
Updated name of the contact | Can include alphanumeric characters, spaces, and the / character but must not include parameter-like sequences (e.g., n/ ) |
Optional |
id/STUDENT_ID |
Updated student ID (for students only) | Must be 9 characters long, beginning with the letter A , followed by 7 digits, and ending with any uppercase letter (e.g., A1234567Z ) |
Optional |
i/INDUSTRY |
Updated industry type (for companies only) | Include only alphanumerical characters and spaces (case-sensitive) | Optional |
p/PHONE_NUMBER |
Updated phone number | Must be only numbers and at least 3 digits long | Optional |
e/EMAIL |
Updated email address | In the format local-part@domain and must adhere to the following constraints: 1) The local part should only contain alphanumeric characters and select special characters, but cannot start or end with them. 2) The domain must consist of labels separated by periods, each ending with at least two letters and containing only alphanumeric characters or hyphens. (e.g., example.com) |
Optional |
a/ADDRESS |
Updated physical address | Can take any value, but must not include parameter-like sequences (e.g., n/ ) |
Optional |
t/TAG |
Updated tag (replaces existing tags) | Must be alphanumeric characters and no spaces (case-sensitive) | Optional |
đź”” Notes:
-
The index refers to the index number shown in the displayed person list.
-
At least one of the optional fields must be provided.
-
For student contact, editing industry field is prohibited.
-
For company contact, editing student id field is prohibited.
-
Existing values will be updated to the input values.
-
When editing tags, the existing tags of the person will be removed i.e adding of tags is not cumulative.
Examples:
-
edit 1 p/91234567 e/johndoe@example.com
edits the phone number and email address of the 1st contact to be91234567
andjohndoe@example.com
respectively. -
edit 2 n/Betsy Crower t/
edits the name of the 2nd person to beBetsy Crower
and clears all existing tags.
t/
without
specifying any tags after it. Deleting contact(s): delete
Deletes the contact(s) at the specified indices or all contacts currently shown in the list from AdmiNUS.
Format 1: delete INDEX [MORE_INDEX]…​
Expected Message:
Deleted Contacts:
(list of contact(s) specified at INDEX and MORE_INDEX if present)
Parameter Name | Description | Constraint | Required |
---|---|---|---|
INDEX |
Index number of the contact to delete | Positive integer only (e.g., 1, 2, 3) | Compulsory |
MORE_INDEX |
Additional index numbers of contacts to delete (separate by spaces) | Positive integer only (e.g., 1, 2, 3) | Optional |
Format 2: delete all
Expected Message:
Deleted Contacts:
(list of all contacts shown in the list)
đź”” Notes:
-
Split the indices by spaces.
-
The index refers to the index number shown in the displayed contact list.
-
delete all
deletes all contacts currently shown in the list, not all contacts in the database.
Examples:
-
list
followed bydelete 2 3
deletes the 2nd and 3rd contacts in AdmiNUS given that there are more than 3 contacts in the list. -
find Betsy
followed bydelete all
deletes all contacts in the results of thefind
command.
oneYearMembership
tag, simply use filtertag oneYearMembership
followed by delete all
⚠️ Important: Behaviour of delete Command with Repeated Indices
When using the delete command with the same index repeated multiple times (e.g., delete 2 2
), the command processes each deletion sequentially:
- The first instance deletes the contact at the specified index (e.g., index 2).
- The second instance attempts to delete the contact now at index 2 after the first deletion, which may have shifted from its original position (e.g., originally at index 3).
Example Scenario:
- If the command
delete 2 2
is entered and the contact at index 2 is deleted successfully:- The app will then delete the new contact at index 2 after the first deletion.
- If there are not enough contacts remaining to fulfill the repeated deletion (e.g., only two contacts were present initially), the app will display a message indicating that the index is invalid for the second attempt.
Note: When an index becomes invalid after the initial deletion, the app will display an invalid index message instead of the expected success message for the contact that was deleted in the earlier step.
Advanced Commands
Locating persons by name: find
Finds persons whose names contain any of the given keywords.
Format: find KEYWORD [MORE_KEYWORDS]…​
Parameter Name | Description | Constraint | Required |
---|---|---|---|
KEYWORD |
Keyword of the contact’s name to search | Can take any values | Compulsory |
MORE_KEYWORD |
Additional keyword to search (separate by spaces) | Can take any values | Optional |
Expected Message:
(Number of) persons listed!
đź”” Notes:
-
The search is case-insensitive. For example,
hans
will matchHans
. -
The order of the keywords does not matter. e.g.
Hans Bo
will matchBo Hans
. -
Only the name is searched.
-
Only full words will be matched e.g.
Han
will not matchHans
. -
Persons matching at least one keyword will be returned (i.e.
OR
search).
e.g.Hans Bo
will returnHans Gruber
,Bo Yang
.
Examples:
-
find John
returnsjohn
andJohn Doe
-
find alex david
returnsAlex Yeoh
,David Allen
Filtering contacts by tags: filtertag
Finds contacts whose tags are the same as the specified keyword.
Format: filtertag KEYWORD [MORE_KEYWORD]…​
Parameter Name | Description | Required |
---|---|---|
KEYWORD |
Keyword of the tag’s name to filter through the list of contacts. | Compulsory |
MORE_KEYWORD |
More keywords to filter | Optional |
Expected Message:
(Number of) persons listed!
đź”” Notes:
-
The filter is case-insensitive. For example,
partner
will matchPartnEr
. -
Only full words will be matched e.g.
partner
will not matchpartners
. -
Contacts matching at least one tag will be returned (i.e.
OR
search).
e.g.filtertag paid year2
finds all contacts who have tags saved aspaid
oryear2
.
Examples:
-
filtertag paid
finds contacts who have tags saved aspaid
.
Tracking contacts by category: track
Tracks and lists all contacts who are in the category of the specified keyword.
Format: track CATEGORY​
Expected message:
Listed all persons under category: CATEGORY
(tracked list size number) persons listed!
Parameter Name | Description | Constraint | Required |
---|---|---|---|
CATEGORY |
Either student or company to filter | Must be from the predefined list of categories (student or company) | Compulsory |
đź”” Notes:
-
CATEGORY
is case-insensitive. For example,student
will matchStudent
. -
Only full words will be matched e.g.
student
will not matchstudents
.
Examples:
-
track student
finds contacts with categorystudent
. -
track company
finds contacts with categorycompany
.
Adding tag(s) to contact: tag
Adds additional specified tag(s) to the specified contact or all contacts in the list provided no duplicate tags(s) are found in all contacts without overwriting existing tags.
Format 1: tag INDEX t/TAG [t/MORE_TAG]…​
Tagging operation applies to specified contact in the list.
Expected message:
Added tag(s): [TAG], [MORE_TAG(if present)]
to Person: (details of the person)
Parameter Name | Description | Constraint | Required |
---|---|---|---|
INDEX |
Index number of the contact to tag from the displayed person list | Positive integer only (e.g. 1, 2, 3) | Compulsory |
t/TAG |
Tag to add to the specified contact | Must be alphanumeric characters, non-empty, and cannot contain spaces | Compulsory |
t/MORE_TAG |
More tags to add | Must be alphanumeric characters, non-empty, and cannot contain spaces | Optional |
Format 2: tag all t/TAG [t/MORE_TAG]…​
Expected message:
Added tag(s): [TAG], [MORE_TAG(if present)] to all contacts.
Parameter Name | Description | Constraint | Required |
---|---|---|---|
t/TAG |
Tag to add to the specified contact | Must be alphanumeric characters, non-empty, and cannot contain spaces | Compulsory |
t/MORE_TAG |
More tags to add | Must be alphanumeric characters, non-empty, and cannot contain spaces | Optional |
đź”” Notes:
-
The index refers to the index number shown in the displayed contact list.
-
For both formats 1 and 2,
- The tag is case-insensitive. For example,
partner
will matchPartnEr
. - Only full words will be matched e.g.
partner
will not matchpartners
. - The added tags are displayed on the contact in alphabetical order.
e.g.t/partner t/education
will displayeducation
beforepartner
.
- The tag is case-insensitive. For example,
-
For format 2, tagging operation applies to all contacts currently shown in the list, not all contacts in the database.
⚠️ Important: Impact of tag duplicate detection when adding tags
Specified TAG
(and MORE_TAG
if present) are only added to all contacts currently shown in the list, if
no duplicate tag(s) are found in all contacts.
Examples:
-
tag 1 t/computerScience t/Y2
adds the tagscomputerScience
andY2
to the first contact in the list.
đź’ˇ Tips:
-
To tag all students with the
paid
tag, simply usetrack student
followed bytag all t/paid
. -
paid
tags are easily distinguishable! They will have a green background:- to indicate that a student has paid their membership fee, or
- to indicate that a company has paid the club sponsorship.
Expected outcome for the above tip on tag all
:
-
track student
-
tag all t/paid
Note: in this case, only all students are tagged with the paid tag.
Deleting tag(s) from contact: deletetag
Deletes the specified tag(s) from the specified contact or from all the contacts in the list provided they all have the specified tag(s).
Format 1: deletetag INDEX t/TAG [t/MORE_TAG]…​
Expected message:
Deleted Tags (TAG [MORE_TAG]) from Contact: (details of the updated contact)
Parameter Name | Description | Constraint | Required |
---|---|---|---|
INDEX |
Index number of the contact in the currently displayed list to delete tag from | Positive integer only (e.g. 1, 2, 3) | Compulsory |
t/TAG |
Tag to be deleted from the specified contact | Must be alphanumeric characters and no spaces (case-sensitive) | Compulsory |
t/MORE_TAG |
More tags to be deleted | Must be alphanumeric characters and no spaces (case-sensitive) | Optional |
Format 2: deletetag all t/TAG [t/MORE_TAG]…​
Expected message:
Deleted the tag(s) (TAG [MORE_TAG]) from all contacts in the list.
Parameter Name | Description | Constraint | Required |
---|---|---|---|
t/TAG |
Tag to be deleted from the specified contact | Must be alphanumeric characters and no spaces (case-sensitive) | Compulsory |
t/MORE_TAG |
More tags to be deleted | Must be alphanumeric characters and no spaces (case-sensitive) | Optional |
đź”” Notes:
-
The index refers to the index number shown in the displayed contact list.
-
deletetag all t/TAG
deletes the tagTAG
from all contacts currently shown in the list, not all contacts in the database. -
deletetag all t/TAG
only works when all contacts currently shown in the list have the tagTAG
, otherwise an error message is shown. -
For both formats 1 and 2,
- The tag is case-sensitive. For example,
partner
will not matchPartnEr
. - Only full words will be matched e.g.
partner
will not matchpartners
.
- The tag is case-sensitive. For example,
Examples:
-
deletetag 1 t/senior t/Y2
deletes thesenior
andY2
tags from the first contact in the list. -
deletetag all t/senior t/Y2
deletes thesenior
andY2
tags from all contacts in the list.
Y3
tags from contacts, simply use filtertag Y3
followed by deletetag all t/Y3
.
File Operations
Importing CSV Files: import
The import
command allows you to bring data from a CSV file into the application, enabling seamless population of your contacts database from external sources.
Format: import FILE_PATH
- Specifies the full path from the root directory.
-
Unix/Linux/Mac:
/home/user/data/hackers_2022.csv
-
Windows:
C:\\Users\\user\\data\\hackers_2022.csv
- Starts from the current working directory of the application.
- Example:
data/File.csv
or./data/hackers_2022.csv
- If the application runs in
/home/user/project
,import data/File.csv
points to/home/user/project/data/File.csv
.
đź“‚ Important Notes:
-
Windows paths use backslashes (e.g.,
C:\\Users\\username\\data\\File.csv
). -
Verify the file format is
.csv
and that you have read permissions.
Examples:
- Absolute:
import /home/user/data/hackers_2022.csv
- Relative:
import ./data/hackers_2022.csv
- The contents of an example CSV file.
- After executing the import command, the contents of the CSV file are being imported to AdmiNUS.
Troubleshooting:
- For errors such as “file not found,” confirm the path type (absolute vs. relative) and the file’s existence.
- Ensure the application has access rights to the specified directory.
- If you receive an error message indicating that the file is “corrupted or missing compulsory fields,” check the following:
- Ensure all required fields are present in each row of your CSV file (e.g., name, category, studentID or industry, phone, email, address).
- Confirm that each row follows the correct format, with entries for every compulsory field. Empty fields can trigger this error.
- Verify that the file is saved with a
.csv
extension and is structured as a valid CSV (comma-separated values), with columns corresponding to the required fields.
Exporting CSV Files: export
The export
command is used to save your current contacts database into a CSV file, enabling data sharing and backup.
Format: export FILE_PATH
- Specifies the full path, starting from the root directory.
-
Unix/Linux/Mac:
/home/user/data/output_data.csv
-
Windows:
C:\\Users\\user\\data\\output_data.csv
- Refers to paths relative to the current directory.
- Example:
./data/Output.csv
saves todata
in the current directory.
đź“‚ Important Notes:
-
Ensure that the directories exist before exporting. For Windows paths, use double backslashes (e.g.,
C:\\Users\\user\\data\\File.csv
). -
Files may be overwritten without warning.
Examples:
- Absolute:
export /home/user/data/output_data.csv
- Relative:
export ./data/Output.csv
Troubleshooting:
- If an error occurs during export (e.g., “access denied”), check your write permissions for the specified directory.
- Confirm the path ends with
.csv
to avoid format issues.
Saving the data
AdmiNUS data are saved in the hard disk automatically after any command that changes the data. There is no need to save manually.
Editing the data file
AdmiNUS data are saved automatically as a JSON file
[JAR file location]/data/addressbook.json
Advanced users are welcome to update data directly by editing that data file.

Glossary
- Absolute Path: A full path that specifies the exact location of a file or directory from the root of the file system.
- Case-Insensitive: A term used to describe a system where uppercase and lowercase letters are treated as the same. For example, Apple, apple, and APPLE would be considered equivalent values.
- Case-Sensitive: A term used to describe a system where uppercase and lowercase letters are treated as distinct. For example, Apple, apple, and APPLE would be considered different values.
- Category: A label that represents the type of contact (e.g., student, company) used for filtering and sorting contacts.
- CLI (Command Line Interface): A text-based user interface through which users interact with the application by typing commands.
- CSV (Comma-separated values): A text file format that uses commas to separate values, and newlines to separate records.
- Directory: A file system structure that contains references to other files and directories. It is commonly referred to as a folder and is used to organise files hierarchically within a file system.
- GUI (Graphical User Interface): The part of the application that users interact with, which includes graphical components like command boxes and task lists.
- JSON (JavaScript Object Notation): A lightweight data interchange format that is easy for humans to read and write and easy for machines to parse and generate. JSON represents data using key-value pairs and supports data types such as strings, numbers, arrays, objects, and booleans. It is widely used for transmitting structured data over network connections, particularly in web applications.
- NUS Club Administrator: An NUS club admin user responsible for managing contacts of students, companies, etc.
-
Parameter-like Sequence: A combination of a forward slash (
/
) and a single character that resembles the prefixes used in commands (e.g.,n/
,p/
,e/
). These are used to specify input fields in commands and should not appear in any text fields. - Path: A sequence of symbols and names that identifies the location of a file or folder within a computer’s file system. Paths can be absolute, starting from the root of the file system (e.g., /home/user/documents/file.txt), or relative, which are based on the current directory (e.g., documents/file.txt).
- Relative Path: A file path that is relative to the current working directory of the user or application.
- Student ID: The student ID associated with each student in NUS. It has the format AxxxxxxxX (e.g. A0123456Z).
- Tag: A keyword or label associated with a contact that allows for easy grouping and filtering.
Navigation Box
Back to Top
Back to Table of Contents
Back to Basic commands
Back to Contact management
Back to Advanced commands
Back to File operations
FAQ
Q: How do I transfer my data to another computer?
A: Install the app on the new computer, then replace its default data file with the data file from your previous AdmiNUS home folder. Alternatively, export your data to a CSV file from the original computer using the export command and import it on the new computer using the import command.
Q: How do I back up my AdmiNUS data?
A: The data is saved automatically in a JSON file located in the
[JAR file location]/data/addressbook.json
You can make a backup by copying this file to a safe location. Alternatively, you can export your data to a CSV file using the export command.
Q: Can I use AdmiNUS without Java installed on my computer?
A: No, AdmiNUS requires Java 17 or above to run. You need to ensure that the correct version of Java is installed before using the application.
Q: Is there a way to undo a deletion?
A: Currently, there is no built-in undo function. Once a contact is deleted using the delete
command, it cannot be recovered unless you have a backup of your data file.
Q: Why can’t I add a student with the same Student ID?
A: Each student in AdmiNUS must have a unique Student ID. If you try to add a student with an existing Student ID, the system will reject the new entry. Make sure to verify the ID before adding a new student.
Q: I get an error message saying “Invalid path” when importing a CSV. What should I do?
A: This error can occur if the file path you specified is incorrect or if the file doesn’t exist. Ensure you are using a valid absolute or relative path and that the file is present in the directory. If you are on Windows, remember to use double backslashes (\\
) in the file path.
Q: Can I edit the data file manually?
A: Yes, advanced users can manually edit the addressbook.json
file where data is saved. However, any incorrect modification may cause data loss or unexpected behavior in the application. Always make a backup before editing.
Q: Why are my tags disappearing when I edit a contact?
A: When editing a contact, if you use the t/
parameter without specifying new tags, all existing tags will be removed. To retain the tags, include all desired tags in the edit
command.
Q: What should I do if AdmiNUS opens off-screen after using multiple monitors?
A: This can happen if you move the application to a secondary screen and then disconnect that monitor. To resolve this, delete the preferences.json
file generated by AdmiNUS, and the app will reset its position to the primary screen.
Q: How do I efficiently delete multiple contacts?
A: You can use the delete INDEX [MORE_INDEX]…​
command to delete multiple contacts by specifying their indices. If you want to delete all contacts displayed after a filter operation, use delete all
. Be careful with this command as it cannot be undone.
Known issues
-
When using multiple screens, if you move the application to a secondary screen, and later switch to using only the primary screen, the GUI will open off-screen. The remedy is to delete the
preferences.json
file created by the application before running the application again. -
If you minimize the Help Window and then run the
help
command (or use theHelp
menu, or the keyboard shortcutF1
) again, the original Help Window will remain minimised, and no new Help Window will appear. The remedy is to manually restore the minimized Help Window. -
Entering parameter-like sequences in input fields: If a user enters text that resembles a parameter prefix (e.g.,
n/
,p/
,e/
) within an input field likeName
orAddress
, it may cause unexpected parsing errors or rejections. Ensure that parameter-like sequences are avoided within fields that do not expect them. -
Case Sensitivity of the Industry Field: The industry field is currently case-sensitive. This means that entries with different capitalisation (e.g.,
University
andUNiversity
) will be treated as separate and distinct values, even though they appear visually identical in the interface. This behavior can lead to unintended duplicates if users do not input industry names with consistent capitalisation.
Command summary
Action | Format | Example |
---|---|---|
Viewing help | help |
help |
Link to the user guide | helpwindow |
helpwindow |
Listing all contacts | list |
list |
Viewing a contact | view INDEX |
view 1 |
Clearing all entries | clear |
clear |
Exiting the program | exit |
exit |
Adding a student | student n/NAME id/STUDENT_ID p/PHONE_NUMBER e/EMAIL a/ADDRESS [t/TAG]…​ |
student n/James Ho id/A0123456X p/22224444 e/jamesho@example.com a/123, Clementi Rd, 1234665 t/friend t/colleague |
Adding a company | company n/NAME i/INDUSTRY p/PHONE_NUMBER e/EMAIL a/ADDRESS [t/TAG]…​ |
company n/Newgate Prison i/Security e/newgateprison@example.com a/Newgate Prison p/1234567 t/prison t/facility |
Editing a contact | edit INDEX [n/NAME] [id/STUDENT_ID] [i/INDUSTRY] [p/PHONE_NUMBER] [e/EMAIL] [a/ADDRESS] [t/TAG]…​ |
edit 2 n/James Lee e/jameslee@example.com |
Deleting contact(s) | -delete INDEX [MORE_INDEX]…​ - delete all
|
delete 3 or delete 2 4 or delete all
|
Locating persons by name | find KEYWORD [MORE_KEYWORDS]…​ |
find James Jake |
Filtering contacts by tag | filtertag KEYWORD [MORE_KEYWORDS]…​ |
filtertag bestie or filtertag bestie slay
|
Tracking contacts by category | track CATEGORY |
track student |
Adding tag(s) to contact | -tag INDEX t/TAG [t/MORE_TAG]…​ - tag all t/TAG [t/MORE_TAG]…​
|
tag 1 t/year2 t/computerScience or tag all t/year2 t/computerScience
|
Deleting tag(s) from contact | -deletetag INDEX t/TAG [t/MORE_TAG]…​ - deletetag all t/TAG [t/MORE_TAG]…​
|
deletetag 1 t/senior t/Y2 or deletetag all t/senior t/Y2
|
Importing CSV files | import FILE_PATH |
import C:\Users\user\data\File.csv or import data/File.csv
|
Exporting CSV files | export FILE_PATH |
export C:\Users\user\data\File.csv or export data/File.csv
|