Powershell and WMI

Total Page:16

File Type:pdf, Size:1020Kb

Powershell and WMI Covers 150 practical techniques Richard Siddaway FOREWORD BY Ed Wilson MANNING PowerShell and WMI PowerShell and WMI RICHARD SIDDAWAY MANNING Shelter Island For online information and ordering of this and other Manning books, please visit www.manning.com. The publisher offers discounts on this book when ordered in quantity. For more information, please contact Special Sales Department Manning Publications Co. 20 Baldwin Road PO Box 261 Shelter Island, NY 11964 Email: [email protected] ©2012 by Manning Publications Co. All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by means electronic, mechanical, photocopying, or otherwise, without prior written permission of the publisher. Many of the designations used by manufacturers and sellers to distinguish their products are claimed as trademarks. Where those designations appear in the book, and Manning Publications was aware of a trademark claim, the designations have been printed in initial caps or all caps. Recognizing the importance of preserving what has been written, it is Manning’s policy to have the books we publish printed on acid-free paper, and we exert our best efforts to that end. Recognizing also our responsibility to conserve the resources of our planet, Manning books are printed on paper that is at least 15 percent recycled and processed without the use of elemental chlorine. Manning Publications Co. Development editor: Jeff Bleiel 20 Baldwin Road Technical proofreaders: Aleksandar Nikolic PO Box 261 Copyeditor: Andy Carroll Shelter Island, NY 11964 Proofreader: Melody Dolab Typesetter: Gordan Salinovic Cover designer: Marija Tudor ISBN 9781617290114 Printed in the United States of America 1 2 3 4 5 6 7 8 9 10 – MAL – 17 16 15 14 13 12 To my parents, June and Ron Without your help, support, and encouragement I’d never have been able to do this brief contents PART 1 TOOLS OF THE TRADE 1 1 ■ Solving administrative challenges 3 2 ■ Using PowerShell 24 3 ■ WMI in depth 62 4 ■ Best practices and optimization 101 PART 2 WMI IN THE ENTERPRISE...............................................135 5 ■ System documentation 137 6 ■ Disk systems 171 7 ■ Registry administration 200 8 ■ Filesystem administration 224 9 ■ Services and processes 251 10 ■ Printers 271 11 ■ Configuring network adapters 289 12 ■ Managing IIS 316 13 ■ Configuring a server 339 14 ■ Users and security 359 vii viii BRIEF CONTENTS 15 ■ Logs, jobs, and performance 381 16 ■ Administering Hyper-V with PowerShell and WMI 399 PART 3 THE FUTURE: POWERSHELL V3 AND WMI ........................421 17 ■ WMI over WSMAN 423 18 ■ Your own WMI cmdlets 441 19 ■ CIM cmdlets and sessions 459 contents foreword xix preface xxi acknowledgments xxiii about this book xxv about the author xxxiii about the cover illustration xxxiv PART 1 TOOLS OF THE TRADE..............................................1 Solving administrative challenges 3 1 1.1 Administrative challenges 4 Too many machines 5 ■ Too many changes 6 ■ Complexity and understanding 7 1.2 Automation: the way forward 7 1.3 PowerShell overview 10 PowerShell scope 11 ■ PowerShell and .NET 12 ■ Breaking the curve 13 1.4 WMI overview 14 What is WMI? 14 ■ Is WMI really too hard? 16 1.5 Automation with WMI and PowerShell 16 ix x CONTENTS 1.6 Putting PowerShell and WMI to work 19 Example 1: Shutting down a data center 20 ■ Example 2: Auditing hundreds of machines 21 1.7 Summary 23 Using PowerShell 24 2 2.1 PowerShell in a nutshell 26 2.2 Cmdlets 26 Utility cmdlets 27 ■ Where-Object 28 ■ Foreach-Object 30 ■ Aliases 30 2.3 Pipeline 32 2.4 .NET for administrators 34 Objects 34 ■ PowerShell objects 34 ■ Creating .NET objects 34 Creating your own objects 35 2.5 PowerShell scripting language 37 Loops 38 ■ Branching 40 ■ Input and output 41 2.6 Finding help 42 Get-Help 43 ■ Get-Command 44 ■ Get-Member 45 ■ PowerShell community 46 2.7 Code reuse 47 Editors 48 ■ Scripts 49 ■ Functions 50 ■ Modules 53 2.8 PowerShell remoting 55 Remoting by cmdlet 55 ■ PowerShell remote sessions 57 2.9 PowerShell jobs 58 2.10 Summary 60 WMI in depth 62 3 3.1 The structure of WMI 63 Providers 65 ■ Namespaces 66 ■ Classes 69 3.2 Methods and properties 76 Methods 76 ■ Class properties 79 ■ System properties 80 ■ Key properties 81 3.3 Documenting WMI 82 3.4 WMI cmdlets and accelerators 84 Cmdlets 84 ■ Type accelerators 87 3.5 Using WQL 89 Keywords 89 ■ Operators 90 CONTENTS xi 3.6 WMI references and associators 94 3.7 WMI events 96 3.8 Summary 99 Best practices and optimization 101 4 4.1 Security 103 Using internet code 103 ■ Code security 105 ■ Access to code 106 4.2 Optimizing PowerShell code 107 Data input 107 ■ String substitution 111 4.3 Calculated fields, types, and formatting 113 Calculated fields 114 ■ Type files 116 ■ Format files 118 4.4 Debugging and error handling 120 Debugging 121 ■ Error handling 123 ■ WMI return codes 125 4.5 Getting the most from WMI 126 Issues with learning to use WMI 127 ■ WMI configuration settings 128 ■ Authentication 129 ■ Data filtering 131 Data conversions 131 4.6 Summary 134 PART 2 WMI IN THE ENTERPRISE .....................................135 System documentation 137 5 5.1 System hardware and configuration 139 TECHNIQUE 1Get computer system information 140 TECHNIQUE 2Get computer type 142 TECHNIQUE 3 Get domain role 144 TECHNIQUE 4 Get processor information 145 TECHNIQUE 5 Get BIOS information 146 TECHNIQUE 6Get memory configuration 148 5.2 Peripherals 150 TECHNIQUE 7 Get display settings 151 TECHNIQUE 8Get input devices 152 TECHNIQUE 9 Get ports 153 5.3 Power supplies 154 TECHNIQUE 10 Get battery details 155 TECHNIQUE 11 Get battery status 156 TECHNIQUE 12 Test power source 157 TECHNIQUE 13 Get power plans 158 xii CONTENTS 5.4 Operating system 160 TECHNIQUE 14Get operating system version 160 TECHNIQUE 15Discover hotfixes 163 TECHNIQUE 16Get boot configuration 164 TECHNIQUE 17Find recovery configuration 165 TECHNIQUE 18Test system time 167 5.5 Software 168 TECHNIQUE 19Discover installed software 168 5.6 Summary 169 Disk systems 171 6 6.1 Physical disks 172 TECHNIQUE 20 Discover disk controllers 174 TECHNIQUE 21Physical drive information 175 TECHNIQUE 22Link partitions to disk drives 177 TECHNIQUE 23Enumerating disk partitions 179 TECHNIQUE 24Link partitions to logical disks 180 6.2 Logical disks 181 TECHNIQUE 25 Logical disk information 181 TECHNIQUE 26 Root directory data 182 TECHNIQUE 27 Mount points 184 6.3 Volumes 185 TECHNIQUE 28Enumerate volume information 185 TECHNIQUE 29Using volume change events 187 6.4 Managing disks 191 TECHNIQUE 30Formatting a disk 192 TECHNIQUE 31 Performing Chkdsk 194 TECHNIQUE 32Analyzing and removing fragmentation 195 6.5 CD drives 197 TECHNIQUE 33 Enumerating CD drives 198 6.6 Summary 199 Registry administration 200 7 7.1 Accessing the registry 201 TECHNIQUE 34 Test registry size 202 TECHNIQUE 35Discovering registry data types 203 7.2 Reading the registry 206 TECHNIQUE 36Reading registry keys 206 TECHNIQUE 37Reading registry values 208 TECHNIQUE 38Enumerating keys and values 209 CONTENTS xiii 7.3 Creating and modifying registry keys and values 211 TECHNIQUE 39Creating registry keys 211 TECHNIQUE 40 Setting registry values 212 7.4 Deleting registry keys 214 TECHNIQUE 41 Deleting registry values 214 TECHNIQUE 42 Deleting registry keys 215 7.5 Registry access rights 216 TECHNIQUE 43 Reading access rights 216 TECHNIQUE 44Taking ownership of a registry key 219 7.6 Registry events 221 TECHNIQUE 45 Monitoring registry events 221 7.7 Summary 223 Filesystem administration 224 8 8.1 Working with files 226 TECHNIQUE 46 Finding files 227 TECHNIQUE 47Performing actions on files 230 TECHNIQUE 48Compressing files 232 8.2 Folder administration 234 TECHNIQUE 49 Discovering the files in a folder 235 TECHNIQUE 50 Discovering folders with specific attributes 237 TECHNIQUE 51Decoding the access mask 239 8.3 Listing, creating, and modifying shares 240 TECHNIQUE 52Listing shares 241 TECHNIQUE 53Creating shares 242 TECHNIQUE 54Modifying shares 243 8.4 Filesystem events 244 TECHNIQUE 55Working with filesystem events 244 8.5 Page file management 248 8.6 Summary 249 Services and processes 251 9 9.1 Services 252 TECHNIQUE 56Listing services 254 TECHNIQUE 57Configuring services 255 TECHNIQUE 58 Discovering the service load order 257 9.2 Processes 259 TECHNIQUE 59Listing process owners 260 TECHNIQUE 60Creating a process 261 TECHNIQUE 61Terminating a process 263 xiv CONTENTS 9.3 Process-related events 265 TECHNIQUE 62Investigating an event 266 TECHNIQUE 63Monitoring processes 268 9.4 Summary 270 Printers 271 10 10.1 Printer configuration 272 TECHNIQUE 64Discovering printers 272 TECHNIQUE 65 Testing printer capabilities 274 TECHNIQUE 66 Discovering printer ports 276 TECHNIQUE 67 Discovering printer drivers 277 10.2 Printer status 279 TECHNIQUE 68 Testing printer status 279 TECHNIQUE 69 Listing print jobs 280 10.3 Managing printers 282 TECHNIQUE 70Setting a default printer 282 TECHNIQUE 71 Printing a test page 284 TECHNIQUE 72 Controlling printers 285 TECHNIQUE 73 Renaming a printer 287 10.4 Summary 288 Configuring network adapters 289 11 11.1 Discovering network adapters 291 TECHNIQUE 74Identifying network adapters 291 TECHNIQUE 75Discovering adapter configurations 294 TECHNIQUE 76 Listing an adapter’s network protocols 296 TECHNIQUE 77Listing network connections 298 11.2 Configuring network adapters 300 TECHNIQUE 78Enabling network adapters 300 TECHNIQUE 79Disabling network adapters 301 TECHNIQUE 80Renaming network adapters 302 11.3 Enabling and setting network addresses 304 TECHNIQUE
Recommended publications
  • Blaster® CD-RW 4224
    Blaster ® CD-RW 4224 CD-RW The Smart Way to Create CDs Blaster® CD-RW 4224 lets you do it all – distribute large graphics and database files with clients, send copies of your vacation photos to friends and family, put all your favorite songs on one CD, or share the latest independent MP3 music with your friends. With easy-to-use software, simply drag-and-drop your files to a blank CD or copy the whole disc, and you're ready to go. Store up to 650MB of data or over 74 minutes of audio on each CD, write CD-Rs at 4X and CD-RWs at 2X speeds, and read CD-ROMs at up to 24X. Blaster CD-RW looks, installs, and works like a CD-ROM, so not only can you create CDs, you can play audio CDs, run popular applications, or read other CD-R and CD-RW discs. For the smart way to create CDs that you can use everywhere, Blaster CD-RW is the only answer. • Record and copy data directly to discs • Back-up and archive important CDs • Create music and MP3 compilations • Distribute and share files Specifications Features Creative® CD-RW 4224 Drive Record and copy data directly to discs • Maximum CD-ROM data transfer rate of Moving your data to a CD is just a click away ® 3,600KB/second (24X) with Blaster CD-RW. Copy a complete CD or 4224 select only the files you want to record, and • Maximum CD-RW data read transfer Blaster CD-RW does the rest.
    [Show full text]
  • Thinkstation Withdrawn Book
    Personal Systems Reference Lenovo® ThinkStation® Workstations 2008 to 2013 - withdrawn January 2014 - Version 449 ThinkStation S10 (left) ThinkStation D10 (right) lenovo.com Lenovo ThinkStation E20 Lenovo ThinkStation E20 with Intel HD Graphics with ThinkVision® L2440p (4420HB2) Lenovo ThinkStation E20 Lenovo ThinkStation E20 Lenovo ThinkStation Graphics Card Option Lenovo ThinkStation Graphics Card Option NVIDIA® Quadro® NVS 295 (45K1669) NVIDIA Quadro NVS 450 (57Y4398) ThinkStation® E20 (4222) - TopSeller (Windows 7) - withdrawn Personal Systems Reference (PSREF) Type- Slot x Memory Memory ECC Disk Pre-conf SATA 1394 Graphics ENERGY Win7 Avail model bay Processor GHz Cores DIMMs speed memory Disk(s) size RAID optical adptr adapter(s) STAR 5.0 preload Global date 2 4222-35U 4x5 G6950 2.80 2 1x2GB 1333MHz No 1x250GB 3.5" No DVD±RW No FX380 ES50 Pro64 No Feb 10 4222-36U 4x5 i3-530 2.93 2 2x2GB 1333MHz No 1x500GB 3.5" No DVD±RW No FX380 ES50 Pro64 No Feb 10 4222-37U 4x5 i5-650 3.20 2 2x2GB 1333MHz No 1x500GB 3.5" No DVD±RW No FX580 ES50 Pro64 No Feb 10 • Faster, more effi cient architecture with the latest Intel® workstation technology • True workstation-level performance at incredibly low price point • High Reliability with Independent Software Vendors (ISV) certifi ed applications and ECC memory support • These small and medium business (SMB) models are part of the US TopSeller ™ Program • These models have a 3-year limited warranty1 • These systems are Microsoft® Offi ce 2010 Product Key Ready (O10PKR) ® Processor Intel Pentium Processor
    [Show full text]
  • Active@ Livecd User Guide Copyright © 1999-2015, LSOFT TECHNOLOGIES INC
    Active@ LiveCD User Guide Copyright © 1999-2015, LSOFT TECHNOLOGIES INC. All rights reserved. No part of this documentation may be reproduced in any form or by any means or used to make any derivative work (such as translation, transformation, or adaptation) without written permission from LSOFT TECHNOLOGIES INC. LSOFT TECHNOLOGIES INC. reserves the right to revise this documentation and to make changes in content from time to time without obligation on the part of LSOFT TECHNOLOGIES INC. to provide notification of such revision or change. LSOFT TECHNOLOGIES INC. provides this documentation without warranty of any kind, either, implied or expressed, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose. LSOFT may make improvements or changes in the product(s) and/or the program(s) described in this documentation at any time. All technical data and computer software is commercial in nature and developed solely at private expense. As the User, or Installer/Administrator of this software, you agree not to remove or deface any portion of any legend provided on any licensed program or documentation contained in, or delivered to you in conjunction with, this User Guide. LSOFT.NET logo is a trademark of LSOFT TECHNOLOGIES INC. Other brand and product names may be registered trademarks or trademarks of their respective holders. 2 Active@ LiveCD User Guide Contents 1 Product Overview................................................................................................................ 4 1.1 About Active@ LiveCD .................................................................................................. 4 1.2 Requirements for Using Active@ Boot Disk .................................................................... 6 1.3 Downloading and Creating Active@ LiveCD.................................................................... 6 1.4 Booting from a CD, DVD or USB Media .........................................................................
    [Show full text]
  • A Cross-Platform Programmer's Calculator
    – Independent Work Report Fall, 2015 – A Cross-Platform Programmer’s Calculator Brian Rosenfeld Advisor: Robert Dondero Abstract This paper details the development of the first cross-platform programmer’s calculator. As users of programmer’s calculators, we wanted to address limitations of existing, platform-specific options in order to make a new, better calculator for us and others. And rather than develop for only one- platform, we wanted to make an application that could run on multiple ones, maximizing its reach and utility. From the start, we emphasized software-engineering and human-computer-interaction best practices, prioritizing portability, robustness, and usability. In this paper, we explain the decision to build a Google Chrome Application and illustrate how using the developer-preview Chrome Apps for Mobile Toolchain enabled us to build an application that could also run as native iOS and Android applications [18]. We discuss how we achieved support of signed and unsigned 8, 16, 32, and 64-bit integral types in JavaScript, a language with only one numerical type [15], and we demonstrate how we adapted the user interface for different devices. Lastly, we describe our usability testing and explain how we addressed learnability concerns in a second version. The end result is a user-friendly and versatile calculator that offers value to programmers, students, and educators alike. 1. Introduction This project originated from a conversation with Dr. Dondero in which I expressed an interest in software engineering, and he mentioned a need for a good programmer’s calculator. Dr. Dondero uses a programmer’s calculator while teaching Introduction to Programming Systems at Princeton (COS 217), and he had found that the pre-installed Mac OS X calculator did not handle all of his use cases.
    [Show full text]
  • Microsoft® C#® .NET Crash Course
    .NET Club University Of Cyprus presents: Microsoft ® C# ® .NET Crash Course Creating Windows Applications Introduction to C# .NET (Copyright © 2005-2011 Panayiotis Andreou) Course contents Overview of the Microsoft .NET Platform • Lesson 1: Creating a new Windows Application • Lesson 2: Introduction to Windows Forms • Lesson 3: Adding Controls to a Form • Lesson 4: Working with Controls • Lesson 5: Creating MDI Applications • Lesson 6: Introduction to Visual Basic • Lesson 7: Building Mobile Applications • Lesson 8: Deploying Applications 06/10/2011 C# .NET Crash Course 2 Course goals • Create a new Windows application • Create Windows Forms and add controls to them • Learn about different types of controls • Organize controls on a form • Create MDI (Multiple Document Interface) applications 06/10/2011 C# .NET Crash Course 3 Overview of the Microsoft .NET Platform What is the Microsoft .NET Platform Developer Clients Tools ASP.NET Web Databases Applications XML Web User .NET Services Experiences Framework 06/10/2011 C# .NET Crash Course 5 Core Technologies in the .NET Platform • .NET Framework • .NET Building Block Services • Visual Studio .NET • .NET Enterprise Servers 06/10/2011 C# .NET Crash Course 6 Components του .NET Framework Visual Basic ® C++ C# JScript ® … Common Language Specification ASP.NET: Web Services Windows and Web Forms Forms ADO.NET: Data and XML Base Class Library Common Language Runtime 06/10/2011 C# .NET Crash Course 7 Overview of C# .NET Syntax Comments Single-line comments are marked with (//) at the start //These are single-line comments Multiple-line comments are marked with /* * These are * multi-line comments */ 06/10/2011 C# .NET Crash Course 9 Variables Access Modifiers public The type or member can be accessed by any other code in the same assembly or another assembly that references it.
    [Show full text]
  • Quick Start Guide to Windows 10 Making Your Move to Windows 10 Quick and Simple Table of Contents
    Quick Start Guide to Windows 10 Making your move to Windows 10 quick and simple Table of Contents Understanding your desktop Security, privacy and scam protection Take a tour of the Windows 10 desktop. Learn how to be more Your security and privacy mean a lot to us. Windows 10 features a productive using the Windows Start menu, Taskbar and Action full security dashboard, with personal privacy settings and our most center. advanced safety measures yet. Setup and personalization Accessibility Make it yours! Windows 10 is all about you, from personalized Microsoft’s accessibility features make tasks easier for users with a backgrounds to custom language choices. Create a Microsoft disability. Enlarge screen text to make it easier to read and change account to unlock the full Microsoft universe of features. narration and dictation settings. Apps and programs Windows updates and upgrades Now that you’ve made yourself at home, it’s time to take Windows 10 provides regular updates to keep your device Windows 10 to the next level: adding apps. Whether you want secure and bring new features to you. Windows 7 users can find to tackle more tasks around the house or at work, or have fun resources to transition to Windows 10. playing games, it’s all here. Tips and tricks Additional resources Do more with Windows 10! Our tips and tricks will get you off and We’re here to help you make the most of Windows 10 from Day running in no time. 1 to Day 101—and beyond! Get to know these resources.
    [Show full text]
  • CD-ROM, CD-RW, Or DVD-ROM Drive
    Contents Chapter 1 Introduction . .1-1 Who Should Read This Guide?. .1-2 Using My Presario - Getting Started and Beyond . .1-2 Symbols and Graphics Used. .1-3 Computer Illustrations and Features . .1-3 Where Can I Find Information?. .1-4 Safety. 1-5 Safety and Comfort . 1-5 Chapter 2 Setting Up Your Computer . 2-1 Your Presario 5000 Series at a Glance . 2-2 What’s at the Front? (5000 Series) . 2-2 What’s at the Back? (5000 Series) . 2-2 Your Presario 7000 Series at a Glance . 2-3 What’s at the Front? (7000 Series) . 2-3 What’s at the Back? (7000 Series) . 2-3 Plug In and Go! . 2-4 Setting Up Your Computer . 2-4 MY PRESARIO—GETTING STARTED AND BEYOND CONTENTS i Registration . 2-5 Registering your PC . 2-5 Microsoft product registration key . 2-5 Printer Setup . .2-6 Setting Up Your Printer . .2-6 Connecting your TV to your Computer . 2-7 Networking Computers . 2-8 What is a Home Network? . 2-8 Setting Up a Network . .2-9 Installing the Network Protocols . 2-9 Mapping a Network Drive . 2-11 Securing Files . 2-11 Sharing Folders and Files . 2-12 Sharing a Printer . 2-12 Sharing Internet Access . 2-12 Chapter 3 Windows Basics . .3-1 Features of the Windows Desktop . 3-2 Viewing the Windows Desktop . 3-2 Using the Start Menu . 3-3 Help . 3-4 Accessing Online Help . 3-4 Chapter 4 Using Your Computer . 4-1 Keyboard Basics. .4-2 Getting to Know the Standard Keyboard Keys .
    [Show full text]
  • Paul Collins Status Name/Startup Item Command Comments X System32
    SYSINFO.ORG STARTUP LIST : 11th June 2006 (c) Paul Collins Status Name/Startup Item Command Comments X system32.exe Added by the AGOBOT-KU WORM! Note - has a blank entry under the Startup Item/Name field X pathex.exe Added by the MKMOOSE-A WORM! X svchost.exe Added by the DELF-UX TROJAN! Note - this is not the legitimate svchost.exe process which is always located in the System (9x/Me) or System32 (NT/2K/XP) folder and should not normally figure in Msconfig/Startup! This file is located in the Winnt or Windows folder X SystemBoot services.exe Added by the SOBER-Q TROJAN! Note - this is not the legitimate services.exe process which is always located in the System (9x/Me) or System32 (NT/2K/XP) folder and should not normally figure in Msconfig/Startup! This file is located in a HelpHelp subfolder of the Windows or Winnt folder X WinCheck services.exe Added by the SOBER-S WORM! Note - this is not the legitimate services.exe process which is always located in the System (9x/Me) or System32 (NT/2K/XP) folder and should not normally figure in Msconfig/Startup! This file is located in a "ConnectionStatusMicrosoft" subfolder of the Windows or Winnt folder X Windows services.exe Added by the SOBER.X WORM! Note - this is not the legitimate services.exe process which is always located in the System (9x/Me) or System32 (NT/2K/XP) folder and should not normally figure in Msconfig/Startup! This file is located in a "WinSecurity" subfolder of the Windows or Winnt folder X WinStart services.exe Added by the SOBER.O WORM! Note - this is not the legitimate
    [Show full text]
  • Storage Quest Optical Volume Manager
    StorageQuest Archive Manager Users Guide For Version 5.2.4 StorageQuest Archive Manager – Users Guide Copyright © 2017 StorageQuest Inc. All rights reserved. Specifications are subject to change without notice. StorageQuest logo, Any-to-Any, A2A Architecture are registered trademarks of StorageQuest Inc. in the U.S.A., Canada and other countries. All other brands or products are trademarks or registered trademarks of their respective holders and should be treated as such. 2 | P a g e StorageQuest Archive Manager – Users Guide Table of Contents Overview ....................................................................................................................................................... 6 System Requirements ................................................................................................................................... 6 Minimum Server Computer Requirements .............................................................................................. 6 Installation .................................................................................................................................................... 7 Prerequisites ............................................................................................................................................. 7 Installing the StorageQuest Archive Manager Software .......................................................................... 7 Installation Configuration ............................................................................................................................
    [Show full text]
  • Knowing Knoppix/Print Version - Wikibooks, Open Books for an Open World
    Knowing Knoppix/Print version - Wikibooks, open books for an open world Knowing Knoppix/Print version Knowing Knoppix The current, editable version of this book is available in Wikibooks, the open-content textbooks collection, at http://en.wikibooks.org/wiki/Knowing_Knoppix Permission is granted to copy, distribute, and/or modify this document under the terms of the Creative Commons Attribution-ShareAlike 3.0 License. Contents 1 Introducing Knoppix 1.1 Introducing Knoppix 1.1.1 What is Knoppix? 1.1.1.1 Linux that runs from CD 1.1.1.2 Can be installed on a Hard Disk or a USB key 1.1.1.3 How it works 1.1.1.4 Safe to run 1.1.1.5 Personal 1.1.1.6 Free 1.1.2 What you can do with Knoppix 1.1.2.1 Learn Linux 1.1.2.2 Rescue and test 1.1.2.3 Use and explore 1.1.2.4 Network 1.1.3 Where Knoppix comes from 1.1.4 Knoppix is Free Software 1.1.5 Limitations 1.1.5.1 No warranty 1.1.5.2 CD means slow 1.1.5.3 Not everything works 1 von 71 Knowing Knoppix/Print version - Wikibooks, open books for an open world 1.1.5.4 RAM intensive 1.1.6 What is included in Knoppix? 1.1.7 What is Linux? 1.1.7.1 A little history 1.1.7.1.1 How GNU grew 1.1.7.1.2 It's a GNU world! 2 Knoppix for the first time 2.1 Knoppix for the first time 2.1.1 Overview 2.1.2 Hardware requirements 2.1.3 Starting Knoppix 2.1.3.1 The first stage 2.1.3.2 The second stage 2.1.4 The first stage 2.1.4.1 Getting to the boot prompt 2.1.4.2 Help at the boot prompt 2.1.4.2.1 Quick help 2.1.5 The second stage 2.1.5.1 Starting Knoppix proper 2.1.5.2 Which keyboard/language? 2.1.5.3 Automatic hardware detection
    [Show full text]
  • Microsoft Windows 7 Foundation Training Manual
    Microsoft Windows 7 Foundation Training Manual. Table of Contents Section 1: Getting Started .............................................................................................................. 1 Lesson 1.1: The Basics of Windows 7.................................................................................................... 2 What’s New in Windows 7? .................................................................................................................................. 2 Windows 7 Versions ............................................................................................................................................. 6 Logging In ............................................................................................................................................................ 6 The Windows 7 Desktop ....................................................................................................................................... 8 Lesson 1.2: Interacting with the Computer ........................................................................................ 12 Pointing the Mouse ............................................................................................................................................ 12 Using Click and Double-Click ........................................................................................................................... 12 Using Click and Drag .......................................................................................................................................
    [Show full text]
  • " Who Controls the Vocabulary, Controls the Knowledge"
    Acronyms from Future-Based Consultancy & Solutions "Translation" of some Business, Finance, ICDT acronyms (including several SAP ones), initialims, tech term oddities and techronyms, loaded words and buzzwords to ease the reading of courses, books, magazines and papers: see "anacronym", "ASS" and many others ... (third main version since 1997) ( www.fbc-e.com , updated & corrected twice a month. Release 02-10-2009) " Who controls the vocabulary , 6170+ controls the knowledge " George ORWELL in "1984" Instruction To ease your researches , we are inviting you to use the " search " function within the Menu " edit " Pour faciliter vos recherches, utilisez la fonction " rechercher " disponible dans le menu " Edition " Information Underligned names are identifying authors, editors and / or copyrighted applications ©, ®, ™ FBWPA Free Business White Page Available (www.fbc-e.com ) Acronym Rose salmon is related to acronyms and assimilated terms and concepts. IL / InLin Internet Lingo also called " PC talk" Intelligence Light green color is related to intelligence, business intelligence ( BI , CI ) FBC>s Yellow color is related to FBC>s concepts and methodologies (more on www.fbc-e.com ) Finance Deep blue color is related to Finance and Accounting ( FI ) Note: BOLD acronyms KM Deep green color is related to Knowledge Management ( KM ) and texts are "translated" HR & R Lemon green color is related to HR and recruitment in the list. Mobility Light blue color is related to mobile communication ( MoMo ) Security Red color is related to security and risks management ( RM ) Note : US spelling Virtual Pink color is related to virtual / virtuality ( VR ) & ampersand $$$ temporary files Feel free to copy and distribute this "computer-babble *.001 Hayes JT Fax translator" provided that it is distributed only in its 0 Day FTP server supposed to be moved within original and unmodified state with our name, address, the next 24 hours to another IP .
    [Show full text]