Premium Essay

Comp 230

In:

Submitted By emmex
Words 967
Pages 4
week 1 Student Name | | Class | | Date | |
Windows CLI Commands Lab Key

NOTE: Please use Carriage Returns and Page Breaks as needed to prevent box contents from extending across page boundaries.

Task 1: Displaying IP Configuration Settings
Open the Windows Command Prompt using the desktop or the Taskbar icon. Maximize the size of the CLI. Use the ipconfig /all command to determine the following IP configuration settings for “Wired” Ethernet NIC:

IP Address: | 192.168.100.10 | Subnet Mask: | 255.255.255.0 | Default Gateway: | 192.168.100.1 | MAC (Physical) Address | 00-0C-29-10-F6-6B |

Copy and paste the specified ipconfig /all command output from the Windows CLI into the Task 1 box provided below. (Note: Answers will vary between students.)

Task 1 ipconfig /all Command Output C:\Scripts>ipconfig/allWindows IP Configuration Host Name . . . . . . . . . . . . : vlab-PC1 Primary Dns Suffix . . . . . . . : Node Type . . . . . . . . . . . . : Hybrid IP Routing Enabled. . . . . . . . : No WINS Proxy Enabled. . . . . . . . : NoEthernet adapter Wired: Connection-specific DNS Suffix . : Description . . . . . . . . . . . : vmxnet3 Ethernet Adapter #2 Physical Address. . . . . . . . . : 00-0C-29-10-F6-6B DHCP Enabled. . . . . . . . . . . : No Autoconfiguration Enabled . . . . : Yes Link-local IPv6 Address . . . . . : fe80::59be:448c:8a92:9d84%15(Preferred) IPv4 Address. . . . . . . . . . . : 192.168.100.10(Preferred) Subnet Mask . . . . . . . . . . . : 255.255.255.0 Default Gateway . . . . . . . . . : 192.168.100.1 DHCPv6 IAID . . . . . . . . . . . : 352324649 DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-14-EE-13-98-00-0C-29-DB-1B-7E DNS Servers . . . . . . . . . . . : fec0:0:0:ffff::1%1 fec0:0:0:ffff::2%1 fec0:0:0:ffff::3%1

Similar Documents

Premium Essay

Comp 230

...This course introduces basic programming concepts, logic, and scripting language tools used to automate basic system administrator processes. Critical thinking, logic, and troubleshooting are emphasized. Database applications are also introduced, helping students develop basic skills in using a typical database. Security topics are discussed. I am looking for someone on a weekly basis to login in to my online class and work on assignments, and discussion posts. Also a ilab, and short quizes multiple choice. There is also a course project: Your company is currently planning to automate many different system administration tasks. Your manager has asked you to research a system administration task and implement it using VBScript. In addition, your manager would like to see both a proposal that describes the system administration task and a complete VBScript solution with sample output runs. During the first 6 weeks of this course, you will be introduced to a variety of topics in VBScript. These topics include the following. VBScript Introduction: Variables, Constants, and Data Types VBScript Output Methods, VBScript Input Methods VBScript Decision-Making Statements VBScript Loop Structures and Arrays VBScript Procedures and Functions VBScript File Input/Output Methods The Course Project is worth 170 points and is comprised of the following deliverables. Week 3: Outline (30 points) Week 6: Complete proposal (140 points) The following...

Words: 343 - Pages: 2

Free Essay

Comp 230 Week 5

...Student Name | | Class | | Date | | VBScript Modular Lab Report :Run PC_Tests.vbs echo off :start cls echo Computer System Analysis echo. & echo. echo [1] Check System Information echo [2] Check System Memory echo [3] Check Operating System Version echo [4] Check Printers Status echo [5] Check Logical Drive Information echo [x] Exit Program" echo. set /p choice="Enter the Number of your Choice .... " if %choice% equ x exit if %choice% equ X exit cscript //nologo Mod1_PCTests.vbs %choice% echo. pause goto start '========================================= ' Menu Driven Computer / Network Tests ' This VBScript program is run using the PC_Tests.cmd Batch Script Set args = WScript.Arguments WScript.Echo vbCrLf ' Select case from Mod1_PCTests.cmd and call subs. Select Case args.Item(0) Case "1" Call System_Information Case "2" Call System_Memeory_Size Case "3" Call OS_Version Case "4" Call Printers_Status Case "5" Call Logical_HDD_Information Case Else WScript.Echo chr(7) & chr(7) & "Error, Choices are 1,2,3,4,5 or x!!" ' Error check. End Select ' System Information subroutine. Sub System_Information Set WshShell = WScript.CreateObject("WScript.Shell") WScript.Echo "The computer name is ............ " & _ WshShell.ExpandEnvironmentStrings("%COMPUTERNAME%") WScript.Echo "The Num of CPUs is .............. " & _ WshShell.ExpandEnvironmentStrings("%NUMBER_OF_PROCESSORS%") WScript.Echo "The Processor Architecture...

Words: 2479 - Pages: 10

Premium Essay

Comp 230 Week 4 Lab

...Student Name | | Class | COMP 230 | Date | 06/01/2015 | VBScript IP Array Report In the space provided below, copy and paste your IP_Array.vbs Program Code. If it doesn’t fit, use the next page for the continuation of your sourcecode program. ' VBScript: IP_Array.vbs ' Written by: Cornelius Harrell ' Date: 06/28/2015 ' Class: COMP230 ' Professor: Mir Daryabigi ' =================================== ' This initialize a 2-dimension array ' of IP Address. The first index +100 ' is the room# and the second index+1 ' is the computer# in the room. Dim ipAddress (5,3) ipAddress(0,0)="192.168.10.11" ipAddress(0,1)="192.168.10.12" ipAddress(0,2)="192.168.10.13" ipAddress(0,3)="192.168.10.14" ipAddress(1,0)="192.168.10.19" ipAddress(1,1)="192.168.10.20" ipAddress(1,2)="192.168.10.21" ipAddress(1,3)="192.168.10.22" ipAddress(2,0)="192.168.10.27" ipAddress(2,1)="192.168.10.28" ipAddress(2,2)="192.168.10.29" ipAddress(2,3)="192.168.10.30" ipAddress(3,0)="192.168.10.35" ipAddress(3,1)="192.168.10.36" ipAddress(3,2)="192.168.10.37" ipAddress(3,3)="192.168.10.38" ipAddress(4,0)="192.168.10.43" ipAddress(4,1)="192.168.10.44" ipAddress(4,2)="192.168.10.45" ipAddress(4,3)="192.168.10.46" ipAddress(5,0)="192.168.10.51" ipAddress(5,1)="192.168.10.52" pAddress(5,2)="192.168.10.53" ipAddress(5,3)="192.168.10.54" ' Define program variables roomStr="" compStr="" roomNum=0 compNum=0 ans = "" Do WScript...

Words: 1270 - Pages: 6

Premium Essay

Comp 230 Week 6 Lab Doc

...VBScript IP File Lab Objectives In this lab, students will complete the following objectives. * Create a VBScript program using NotePad++. * Write a two-dimensional array of IP addresses to a text file. * Read the IP Addresses text file into a script. * Append new Room/PC/IP address data to the text file. * Use the object Scripting.FileSystemObject. Lab Diagram During your session you will have access to the following lab configuration. Connecting to your lab For this lab, we will only need to connect to Vlab-PC1. * Vlab-PC1 To start simply click on the named Workstation from the device list (located on the left hand side of the screen) and click Power on in the tools bar. In some cases the devices may power on automatically. During the boot up process an activity indicator will be displayed in the name tab. * Black—Powered Off * Orange—Working on your request * Green—Ready to access If the remote console is not displayed automatically in the main window (or popup) click the Connect icon located in the tools bar to start your session. If the remote console does not appear please try the following option. * Switch between the HTML 5 and Java client versions in the tools bar. In the event this does not resolve your connectivity problems, please visit our Help/Support pages for additional resolution options. Task 1: Create the IP_FileWrite.vbs Program Note: All captures must be text only—DO NOT capture the NotePad++...

Words: 2335 - Pages: 10

Free Essay

Comp 230(Introduction to Scripting and Database) Week 1 - 7 Quizzes Devry

...COMP 230(Introduction to Scripting and Database) Week 1 - 7 Quizzes DeVry IF You Want To Purchase A+ Work Then Click The Link Below , Instant Download http://www.acehomework.com/COMP-230-Introduction-to-Scripting-and-Database-Week-1-7-Quiz-578758444.htm?categoryId=-1 If You Face Any Problem E- Mail Us At JohnMate1122@gmail.com COMP 230 Week 1 Quiz 1. Question: (TCO 1) Which one of the following Windows net commands are NOT used to control services with the net ServiceName? 2. Question: (TCO 1) Which of the following Windows commands will shutdown and restart your computer in 2 minutes? 3. Question: (TCO 1) Which of the following Windows commands will shutdown and restart the computerFileServer in 2 minutes? 4. Question: (TCO 1) Which Windows shutdown-command switch is used to shutdown and turn off a local or remote computer? 5. Question: (TCO 1) From the Start/Run dialog, the command used to open the 32-bit Windows command prompt is _____. 6. Question: (TCO 1) The Windows CLI shell command used to display all of the environmental variables and their values is _____. COMP 230 Week 2 Quiz 1. Question: (TCO 2) ____ data items may involve displaying numbers or text to the screen. 2. Question: (TCO 2) The process of walking through a program's logic on paper before actually writing the program is called ____. 3. Question: (TCO 2) What is the problem with the following statement? 60 + 5 = grade 4. Question: (TCO 2) What is the problem with the...

Words: 998 - Pages: 4

Free Essay

Administrator

...Your company is currently planning to automate many different system administration tasks. Your manager has asked you to research a system administration task and implement it using VBScript. In addition, your manager would like to see both a proposal that describes the system administration task and a complete VBScript solution with sample output runs. During the first 6 weeks of this course, you will be introduced to a variety of topics in VBScript. These topics include the following. VBScript Introduction: Variables, Constants, and Data Types VBScript Output Methods, VBScript Input Methods VBScript Decision-Making Statements VBScript Loop Structures and Arrays VBScript Procedures and Functions VBScript File Input/Output Methods The Course Project is worth 170 points and is comprised of the following deliverables. Week 3: Outline (30 points) Week 6: Complete proposal (140 points) The following is a list of guidelines for your Course Project, due in Week 6. The complete proposal should include the following. Introduction Description of program (script) Source Code with detailed comments Source Code should contain a minimum 5 out of 6 topics learned during this session. Explain the output along with screenshots of the output Conclusion All DeVry University policies are in effect, including the plagiarism policy. Use each week’s lecture, reading assignments, labs, and discussions...

Words: 262 - Pages: 2

Free Essay

The Workers' Compensation Claim Process

...The Workers' Compensation Claim Process University of Phoenix Claims Preparation II HCR/230 August 21, 2011 The Workers' Compensation Claim Process In this paper we will go over a few components of the workers’ compensation claim process. Such as the overall description of the workers compensation claims process, the responsibilities of the employee, employer, physician, and insurance carrier and what are the implications of unrestricted access to a patient’s medical records. When you are injured on the job, you need to apply for workers’ compensation. These settlements are to help provide you with money for medical bills and missed pay. The purpose or design for workers’ compensation is to support you while you can’t work, because of a work related injury. “In most states, workers compensation state laws contain exclusive remedy provisions. This means that your only remedy is to file workmen’s comp settlements. You may not sue your employer for injuries. Therefore, it is essential to understand how to file a workers compensation report to protect your ability to recover for job related injuries (ExpertHub.com, 2011, p. 1)”. The responsibility of reporting an on work site accident or injury should be reported by the employee within 24 hrs. If the injury does not have a specific start date, such as carpal tunnel then the statute of limitations begins running from the time when you should have reasonably known about the injury. The responsibility of the employer...

Words: 857 - Pages: 4

Free Essay

Essay

...December 2015 - FINAL EXAMINATION SCHEDULE Please verify the location of your exam below. CAREFULLY ensure that you note the correct room according to your LAST NAME ACCT Sec Title ACCT 351 001 Intermediate Financial Acct 1 ACCT 351 Time Prof. FROM Dec 21 6 pm Tsang Aaa - Zzz GYM main gym 20-30 002 Intermediate Financial Acct 1 Dec 21 6 pm Tsang Aaa - Zzz GYM main gym 20-30 ACCT 351 003 Intermediate Financial Acct 1 Dec 21 6 pm Tsang Aaa - Zzz GYM main gym 20-30 ACCT 352 001 Intermediate Financial Acct 2 Dec 21 9 am Cecere Aaa - Zzz ENGTR 0100 ACCT 354 001 Financial Statement Analysis Dec 22 2 pm Scott Aaa - Zzz GYM Fieldhouse 28-31 ACCT 354 002 Financial Statement Analysis Dec 22 2 pm Scott Aaa - Zzz GYM Fieldhouse 28-31 ACCT 361 001 Management Accounting Dec 11 2 pm Parent Aaa - Zzz GYM main gym 1-11 ACCT 361 002 Management Accounting Dec 11 2 pm Parent Aaa - Zzz GYM main gym 1-11 ACCT 361 003 Management Accounting Dec 11 2 pm Parent Aaa - Zzz GYM main gym 1-11 ACCT 362 001 Cost Accounting Dec 17 2 pm Levy Aaa - Zzz GYM Studio 1 1-3 ACCT 385 001 Principles of Taxation Dec 15 2 pm Goldsman Aaa - Zzz GYM BLEACHERS 1-5 ACCT 385 002 Principles of Taxation Dec 15 2 pm Goldsman Aaa - Zzz GYM BLEACHERS 1-5 ACCT 453 001 Advanced Financial Accountin Dec 14 9 am Scott Aaa - Zzz GYM main gym ACCT 463 001 Management Control Dec 11 2 pm Levy Aaa - Zzz GYM Studio 2...

Words: 17461 - Pages: 70

Free Essay

Vnu Catalog

...VINCENNES UNIVERSITY CATALOG Vol. LXIX August, 2010 No. 61 A COMPREHENSIVE TWO-YEAR COLLEGE OFFERING ASSOCIATE DEGREES IN THE LIBERAL ARTS, SCIENCES, EDUCATION, ENGINEERING, AND TECHNOLOGY AND OFFERING BACCALAUREATE DEGREES IN SPECIALIZED AREAS Accreditation The North Central Association of Colleges and Schools 30 North LaSalle Street, Suite 2400, Chicago, IL 60602 (312) 263-0456 www.ncacihe.org FAX 312-263-7462 Accreditation Review Council on Education in Surgical Technology and Surgical Assisting American Bar Association American Board of Funeral Service Education American Health Information Management Association Association of Collegiate Business Schools and Programs Commission on Accreditation of Allied Health Educational Programs Commission on Accreditation in Physical Therapy Education Federal Aviation Administration Higher Education Coordinating Board of the State of Washington Indiana State Board of Nursing Joint Review Committee on Education In Radiologic Technology National Alliance of Concurrent Enrollment Partnerships National Association of Schools of Art and Design National Association of Schools of Theatre National League for Nursing Accrediting Commission Printing Industries of America, Inc. Approved for Veterans Membership The American Association of Community Colleges Aviation Technician Education Council The Council of North Central Two Year Colleges The Higher Education Transfer Alliance The National Academic Advising Association The North Central Association...

Words: 107322 - Pages: 430

Premium Essay

Csec Eng B

...yMacmillan Study Companions Sharon R. Wilson-Strann POETRY FOR THE CSEC® ENGLISH B EXAMINATION Second edition Prescribed list for 2012–2017 CSEC® is a registered trademark of the Caribbean Examinations Council (CXC) POETRY FOR THE CSEC® ENGLISH B EXAMINATION is an independent publication and has not been authorised, sponsored, or otherwise approved by CXC. CSEC Study Comp Poetry 2nd Ed_2011.indd i 9/6/11 4:31 PM Macmillan Education Between Towns Road, Oxford OX4 3PP A division of Macmillan Publishers Limited Companies and representatives throughout the world www.macmillan-caribbean.com ISBN: 978-0-230-41802-8 Text © Sharon R. Wilson-Strann 2011 Design and illustration © Macmillan Publishers Limited 2011 First published 2008 This edition published 2011 All rights reserved; no part of this publication may be reproduced, stored in a retrieval system, transmitted in any form or by any means, electronic, mechanical, photocopying, recording, or otherwise, without the prior written permission of the publishers. These materials may contain links for third party websites. We have no control over, and are not responsible for, the contents of such third party websites. Please use care when accessing them. Designed by Mike Brain Graphic Design Ltd Typeset by E Clicks Enterprise, Malaysia Cover design by Clare Webber Cover photo by Jenny Palmer The author and publishers are grateful for permission to reprint the following copyright material: Bloodaxe Books for the poem...

Words: 3558 - Pages: 15

Free Essay

Odontogenic Tumours

...Odontogenic Tumours Odontogenic tumours are generally considered rare in all species. However, precise epidemiological data are not available for the dog and cat. One of the main reasons for this is the continuing confusion regarding the true nature of some of these lesions. In many surveys the so-called epulides, which are localized swellings on the gingival margin and which constitute a variety of pathological entities, are either grouped together or excluded. Recent findings indicate that many epulides are odontogenic tumours. Another reason is the fact that many clinicians do not routinely submit epulides for histopathological examination, thereby introducing bias in the studies based on archival material. An accurate assessment of the nature of the condition is a prerequisite for therapeutic decision-making. It is therefore important to understand the biology of odontogenic tumours. CLASSIFICATIONS Odontogenic tumours have traditionally been classified based on the presence or absence of the phenomenon of induction. To understand the classification based on induction, it is important to consider the reciprocal interactions of epithelial and mesenchymal tissues during odontogenesis. The epithelial dental lamina invaginates to form the enamel organ. The inner enamel organ epithelium consists of the pre-ameloblasts. The mesenchymal odontoblast precursors migrate to the basement membrane and eventually make contact with the pre-ameloblasts. The pre-ameloblasts then induce...

Words: 1348 - Pages: 6

Free Essay

Religion and Murder

...Rebecca Stewart Jennifer Wheetley Cook English Comp II, Thematic Analysis 12 July 2014 Religion & Murder in 19th Century American Fiction The recurring theme in “The Black Cat” by Edgar Allan Poe and “A Rose for Emily” by William Faulkner is religion. “The Black Cat” is about a man who is at a crossroads between the religion he knows and the new scientific theories of the day. “A Rose for Emily” is about a woman caught between her Episcopalian beliefs and the Baptist beliefs of the community she lives in. Both stories use isolation and murder to illustrate the main character’s struggle with religion. However, while Faulkner’s Emily is dealing with outside isolation of her beliefs, Poe’s narrative is an internal struggle with religion versus scientific theory. According to Laura J. Getty, author of "Faulkner's A rose for Emily," “A Rose for Emily” immediately addresses the recurring theme of religion by referencing the carved rose on the confessional booth Emily visits. The Episcopalian Emily visits a confessional while her Baptist neighbors do not (Getty 232). Faulkner further refers to religion by explaining “When we saw her again her hair was cut short, making her look like a girl, with a vague resemblance to the angels in colored church windows—sort of tragic and serene” (par 29). Emily’s struggle with the townspeople’s Baptist beliefs and her Episcopalian background maintain the religious theme. The ladies of the town coerce the Baptist minister to intervene...

Words: 1004 - Pages: 5

Premium Essay

Store 24

...Case 2 Store 24 Maastricht University, School of Business and Economics Course: Management Control EBC 4154 Introduction Most of the executives of Store24, a New England based convenience store, were gathered for an important meeting to discuss a way to increase store level employees retention. Some of the suggestions were to increase wages and bonuses, training enhancements or career development programs. However, top management lacked sufficient information available that would explained the relationship between manager and crew tenure on store level financial performance. Hence, the purpose of this paper is to shed light on the “employee tenure-store level performance” relationship as well as to discover how managerial skill, service quality and profit are related. 1. The Relationship between Employee Tenure and Operating Performance Before exploring the relationship between store level financial performance and other relevant site factors, it is essential to establish a measure for store level performance. Internal analysis collected sales and profit data for 75 stores. Based on Appendix A, one can conclude that these variables are highly correlated and significant (i.e. r = 0,924, p-value = 0,000) Ultimately, profit is used as a proxy for store level performance, since it takes into account both, the costs as well as the revenues of making the sales. Despite the lack of objective evidence on the importance of employee tenure, Store24 has awarded managers...

Words: 2836 - Pages: 12

Premium Essay

Admission

...Does your career plan include a world of lifelong success? Program of Professional Studies THE CERTIFIED GENERAL ACCOUNTANTS ASSOCIATION OF BRITISH COLUMBIA We see more than numbers. Choose a career that places you on the path to lifelong success. It’s all about opportunity. Accounting professionals can work in any sector, anywhere in the world. And when you choose CGA, you’ll gain the leadership, problem-solving and technical skills that are sought after by organizations in the private, public and not-for-profit sectors. The CGA Program of Professional Studies gives you the tools to succeed in business, no matter where your career takes you. You’ll enter the workforce with the applied knowledge and demonstrated expertise that employers want, including specialized technical knowledge, sectorspecific competencies, problem-solving skills and the ethical integrity to lead. CGA’s competency-based curriculum is simply your best way to prepare for a rewarding career in financial management. Flexible study options and the freedom to choose the career you want CGA is all about choice. You choose the professional-studies path and real-world experience that best match your career goals and interests. We give you the skills and freedom to work in any type of organization, in any industry, at any level of management. With a CGA designation, your opportunities—both professional and personal, at home and around the world—are limitless. Take your place as a highly respected...

Words: 4906 - Pages: 20

Free Essay

Comp230 W2 Lab

...Student Name | xx | Class | COMP-230 | Date | 9-2012 | VBScript IPO VBox Lab Report ' VBScript: NameAge.vbs ' Written by: xx ' Date: 9-2012 ' Class: Comp230 ' Professor:xx ' Create name and age variables name = "" ageStr = "" ' Promt User for Name and Age WScript.StdOut.Write("Please Enter your Full Name ") name = WScript.StdIn.ReadLine() Wscript.StdOut.WriteLine() 'Skip 1 Line WScript.StdOut.WriteLine("Please Enter your age ") ageStr = WScript.StdIn.ReadLine() ageStr10 = CStr( CInt(ageStr)+10 ) ' Display Name and age Value WScript.StdOut.WriteBlankLines(2) 'Skip 2 Lines WScript.StdOut.WriteLine("Your Name is " & vbtab & vbtab & name) WScript.StdOut.WriteLine("Your Age is " & vbtab & vbtab & ageStr) WScript.StdOut.WriteLine("Your Age in 10 years is ......" & _ AgeStr10 & vbcrlf) WScript.StdOut.WriteLine("End of Program") ' VBScript: NameAge.vbs ' Written by: xx ' Date: 9-2012 ' Class: Comp230 ' Professor:xx ' Create name and age variables name = "" ageStr = "" ' Promt User for Name and Age WScript.StdOut.Write("Please Enter your Full Name ") name = WScript.StdIn.ReadLine() Wscript.StdOut.WriteLine() 'Skip 1 Line WScript.StdOut.WriteLine("Please Enter your age ") ageStr = WScript.StdIn.ReadLine() ageStr10 = CStr( CInt(ageStr)+10 ) ' Display Name and age Value WScript.StdOut.WriteBlankLines(2) 'Skip 2 Lines WScript.StdOut.WriteLine("Your Name is " & vbtab & vbtab & name) WScript...

Words: 1091 - Pages: 5