Module 38 (Driving Around on Windows)

Slides:



Advertisements
Similar presentations
1 Configuring Web services (Week 15, Monday 4/17/2006) © Abdou Illia, Spring 2006.
Advertisements

“DOS is dead, (long live the command line)“ Source for most of this material: –
Chapter 5 Accessing Files and Directories. How Directories Get Created OS installation: usr, dev, etc, export, kernel and others places to store installation.
Command Console Tutorial BCIS 3680 Enterprise Programming.
Linux Shell. 2 Linux Command-Line Interface ■ Linux shells: A shell is a command interpreter that allows you to type commands from the keyboard to interact.
Ch 101 Introduction to Batch Files. Ch 102 Overview Will learn to create batch files to automate a sequence of commands to accomplish various tasks.
George Vordenbaum Systems Content Developer Global Support Automation Microsoft Corporation Exploring Windows XP Boot Options and Recovery Console George.
UNIX command line. In this module you will learn: What is the computer shell What is the command line interface (or Terminal) What is the filesystem tree.
Lesson 7-Creating and Changing Directories. Overview Using directories to create order. Managing files in directories. Using pathnames to manage files.
Tutorial 11 Installing, Updating, and Configuring Software
Understanding the Boot Process and Command Line
Ch 21 Command Syntax Using the DIR Command with Parameters and Wildcards.
®® Microsoft Windows 7 for Power Users Tutorial 13 Using the Command-Line Environment.
Operating Systems JEOPARDY Computer Repair GeneralConcepts OS Tasks MoreConcepts Using the OS Misc
Section 3.1: Operating Systems Concepts 1. A Computer Model An operating system has to deal with the fact that a computer is made up of a CPU, random.
By Rashid Khan Lesson 10-From Here to There: Remote Installation of the Windows XP Professional Client.
Booting Ubuntu Linux Live CSCI 130 – Fall 2008 Action Lab Dr. W. Jones.
1 Using Silent Install Scripts to Deploy Software to MS Windows PCs. Larry Carpenter, P.E. CAx Administrator / FE Analyst Siemens Healthcare Molecular.
UNIX Commands. Why UNIX Commands Are Noninteractive Command may take input from the output of another command (filters). May be scheduled to run at specific.
14 Step-by-Step Instructions for an Upgrade Installation n Prepare for the installation Verify that all devices and applications are Windows 2000 compatible.
Chapter 1 : The Linux System Part 2 Lecture 2 11/14/
Shell Advanced Features. Module 8 Shell Advanced Features ♦ Introduction In Linux systems, the shells are often referred to as command line interfaces.
IST 222 Day 3. Homework for Today Take up homework and go over Go to Microsoft website and check out their hardware compatibility list.
Dissecting the Windows CE Build Process James Y. Wilson Principal Engineer, Windows Embedded MVP CalAmp, Inc. James Y. Wilson Principal Engineer, Windows.
Introduction to Programming Using C An Introduction to Operating Systems.
Shell Interface Shell Interface Functions Data. Graphical Interface Graphical Interface Command-line Interface Command-line Interface Experiments Private.
File and Folder CLI Commands 12/24/ Agenda Overview of OS functions and the SHELL Internal v External Commands Command History Making & Modifying.
THE C PROGRAMMING ENVIRONMENT. Four parts of C environment  Main menu  Editor status line and edit window  Compiler message window  “Hot Keys” quick.
Configuration your environment Many user-configurable Unix programs (such as your shell) read configuration files when they start up. These configuration.
A Mini UNIX Tutorial. What’s UNIX?  An operating system run on many servers/workstations  Invented by AT&T Bell Labs in late 60’s  There are many different.
IST 222 Day 6. DOS Naming Conventions A filename contains up to 8 characters, a separating period, and a file extension of up to three characters This.
A+ Guide to Managing and Maintaining Your PC, 7e Chapter 2 Introducing Operating Systems.
2Operating Systems  Program that runs on a computer  Manages hardware resources  Allows for execution of programs  Acts as an intermediary between.
What type of project? I tried three type of project and the only one I managed to obtain the results I wanted was this one. It is more flexible and much.
Systems Administration (Windows) BIT3111 – Lecture 5 (Introduction to Windows OS)
Yep, you need to know this
Development Environment Basics
Python Lesson 12 Mr. Kalmes.
Chapter 11 Command-Line Master Class
Command Line Basics.
Bash Introduction (adapted from chapters 1 and 2 of bash Cookbook by Albing, Vossing, & Newham) CPTE 440 John Beckett.
Network Tools and Utilities
Linux file system "On a UNIX system, everything is a file;
Introduction to Operating Systems
Overview – SOE Sudo September 2016.
The Linux Operating System
Introduction to Programming the WWW I
Shell Script Assignment 1.
Python Lesson 12 Mr. Kalmes.
Chapter 3 Software Interfaces.
Lab 1 introduction, debrief
INTRODUCTION TO UNIX: The Shell Command Interface
Command Syntax Chapter 2 Using the DIR Command with
Operating Systems Review
CONFIGURING HARDWARE DEVICE & START UP PROCESS
Exploring the UNIX File System and File Security
(Chapter 2) John Carelli, Instructor Kutztown University
Interactive I/O Input from keyboard Must prompt user User friendly
Shells, Help, and Paths.
Chapter Overview Operating System Basics
Introduction Paul Flynn
Operating System Fundamentals
CSE 303 Concepts and Tools for Software Development
Periodic Processes Chapter 9.
Command prompt OS Command Prompt (cmd.exe), the command-line interpreter on Windows operating systems + R Open the Run dialog box. Peymer Anatoly.
Module 6 Working with Files and Directories
OPERATING SYSTEM B-TECH III YEAR I SEM BRANCH :ECE
DOS Commands Damian Gordon.
Basic Dynamic Analysis VMs and Sandboxes
Building a Full-Product Installer Using p2
Presentation transcript:

Module 38 (Driving Around on Windows) At the end of this Module, you should know where you can find a Windows XP iso to install in your VM application. (Install one!) You'll also know a little bit about dealing with Windows through the command line interface and why it's necessary for you to know how to do so. Module 38

But I don't Have A Windows VM! Go to http://www.eng.ufl.edu/msdnaa/ Module 38

Where to Go? Look for Operating Systems Module 38

What to Get? Get the XP iso and install it in your VM app. Module 38

Why Do I need to Use the Dreaded Command Line? When you have a shell through nc or metasploit, you don't see the display. What happens if you execute any of these commands cls edit runas Module 38

Driving Around in Windows Look at environment variables: set Find the current user (usually) set username If the username is not set, how can we find it? cd c:\windows\temp &REM get to temp dir dir &REM see what's in it echo >foo &REM create a file dir /q foo &REM /q shows owner Module 38

The all-important SystemRoot The System installation directory is stored in the environment variable SystemRoot. Inspect it as follows: set SystemRoot The OS may not be installed in the default location on drive C:. Don't get fooled! Use sysem variables in a command by enclosing them in percent signs: echo %systemroot% cd %systemroot% Module 38

Know How to Drive dir Know about the option to the dir command: See all files in a directory tree dir /b /s c:\ /b calls for bare output, i.e., no headers. /s says to recurse into subdirectories (appears on other commands such as attrib) Module 38

Registry Keys are Key! You can interact with the registry from the command line with the reg command. Query reg query [KeyName] Add values reg add [Keyname] /v [ValueName] /t [type] /d [Data] Export settings reg export [KeyName] [filename] Import settings reg import [filename] Module 38

Find out About the Local Network Arp Scan: arp -a Check out the network configuration ipconfig /all Display current network usage: netstat -na Module 38