4) Communication, Scripting, & Remote Access Flashcards

1
Q

Professionalism: Language/Attitude/Listing/Timely/Distractions

A

Use proper language & avoid jargon, acronyms, & slang

Maintain a positive attitude/project confidence

Actively listen (take notes) & avoid interrupting customer

Be on time, if late, contact customer

Avoid distractions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Professionalism: Cultural Sensitivity

A

Use appropriate professional titles when applicable.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Professionalism: Difficult Customers/Situations

A

Do not argue with customers and/or be defensive.
Avoid dismissing customer problems.
Avoid being judgmental.
Clarify customer statements (open-ended questions)
Don’t disclose experiences via social media

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Professionalism: Meeting Expectations/Timeline

A

Offer different repair/replacement options if possible

Provide proper documentation of services

Follow up with customer to verify satisfaction

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Scripting Files: bat, ps1, vbs, sh, py, js

A

.bat = Batch file (scripts for Windows command line)

.ps1 = Power Shell Script (for sysadmins)
Uses cmdlets (command-lets)

.vbs = Visual Basic Script
General purpose scripting in Windows
Back-end web server scripting
Scripting inside Microsoft Office apps

.sh = Unix/Linux shell script
#! = shebang / hash-bang
Signifies the beginning of script

.py = Python script
General-purpose scripting language
Broad appeal & support

.js = Javascript
Scripting inside a web browser
Interactivity to HTML/CSS

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Scripting: Environment Variables

A

Describes the OS environment
Scripts use these to make decisions

Location of the Windows installation
The search path
Name of the computer
Drive letter, path of directory

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Scripting: Comment Syntax

A

Annotating code

Powershell/Python/Unix = #
Javscript = // (single line) | /* (multi-line)
Batch files = REM (older) | : : (newer)
Visual Basic = ‘ (single quote)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Scripting: Basic Script Constructs

A
Basic loops
Perform a process over & over
Loop a certain number of times
Loop until something happens
For, While

Variables
Associate a name with an area of memory
x = 1 | y = x + 7 | Therefore, y = 8
Greeting = “Hello & Welcome”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Scripting: Basic Data Types

A
Integers
Whole numbers (no fractions)
x = 42

Strings
Storing text information
name = “Kevin”

Floating Point
Numbers with decimal points
pi = 3.14

Boolean
Evaluates to either true or false

How well did you know this?
1
Not at all
2
3
4
5
Perfectly