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 www.it-ebooks.info PowerShell and WMI www.it-ebooks.info www.it-ebooks.info PowerShell and WMI RICHARD SIDDAWAY MANNING Shelter Island www.it-ebooks.info 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 www.it-ebooks.info To my parents, June and Ron Without your help, support, and encouragement I’d never have been able to do this www.it-ebooks.info www.it-ebooks.info 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 www.it-ebooks.info 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 www.it-ebooks.info 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 www.it-ebooks.info 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 www.it-ebooks.info 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 www.it-ebooks.info 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 www.it-ebooks.info 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 www.it-ebooks.info 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
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]
  • 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]
  • " 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]
  • Keeping up by Paul Howard (NCTCUG)
    www.nctcug.org March/April 2003 Volume 26 Issue 2 Keeping Up By Paul Howard (NCTCUG) You Need Adobe Acrobat Reader !! There’s something about human nature that makes us presume that everyone’s experience is like our own. Put three folks in a room, and six arguments can probably be easily generated. As I pursue my webmastering duties for the two computer clubs and the local professional organization I volunteer for, I find myself guilty of presuming that everyone’s got Adobe Acrobat Reader is a vital program for a PC configured like mine. computer users today, and is invaluable for web users, because a great many documents are ar- After building a web page to help folks get to a chived on the web in PDF format. Many soft- meeting, with the directions and maps included as ware packages no longer come with printed Adobe Acrobat PDF (portable document format) manuals. Whether this is wise, saving trees, if files, I found out that the world is sometimes differ- you will, it has made Acrobat Reader almost ent than that I see through my computer’s screen. ubiquitous, since it comes on many distribution (Continued on page 14) e I n s id Understanding CD-R & CD-RW Technology Part 2: CD-R And CD-RW Software..................................page 2 It’s Income Tax Time: Use Your Computer? .................................page 6 More On Tax Software ...................................................................page 7 Microslop Haikus............................................................................page 8 Preparing Your Computer For A New Operating System..............page 9 Buying A DVD Recorder .............................................................page 13 Selections From The Deals Guy...................................................page 12 Page 2 The NCTCUG Journal March/April 2003 Understanding CD-R & CD-RW Technology Part 2: CD-R And CD-RW Software By John C.
    [Show full text]
  • Aisbackup Manual
    Contents 1 Introduction .......................................................................................................... 1-3 1.1 Definitions. ..................................................................................................1-4 1.1.1 Backup Job.............................................................................................1-4 1.1.2 Backup Contents File..............................................................................1-5 1.1.3 <Database Location> Folder...................................................................1-5 1.1.4 Backup Destination.................................................................................1-5 1.1.5 Session (Backup Session). .....................................................................1-5 1.1.6 Log File...................................................................................................1-5 1.1.7 Summary Log File...................................................................................1-6 AISBackup 1.1.8 Emergency System Backup....................................................................1-6 1.1.9 Optical Disc Writer Options.....................................................................1-6 1.2 How AISBackup performs a backup. ...........................................................1-9 1.2.1 Introduction.............................................................................................1-9 Manual 1.3 Cue Card...................................................................................................1-11
    [Show full text]
  • Reference Sites on The
    The Knowledge Base Document Table of Contents SITES ON THE NET .................................................................................................................................................. 7 REFERENCE ................................................................................................................................................................... 7 My virtual reference Desk. ................................................................................................................................... 7 Martindale’s Reference Desk. .............................................................................................................................. 7 Suite 101. .............................................................................................................................................................. 7 LIBRARIES .................................................................................................................................................................... 8 Libweb ................................................................................................................................................................... 8 The Australian Libraries Gateway ....................................................................................................................... 8 Internet Public Library Reference Center ............................................................................................................ 8 WRITING AND GRAMMAR ..............................................................................................................................................
    [Show full text]
  • Getting Started Ubuntu
    Getting Started withUbuntu 16.04 Copyright © 2010–2016 by The Ubuntu Manual Team. Some rights reserved. c b a This work is licensed under the Creative Commons Attribution–Share Alike 3.0 License. To view a copy of this license, see Appendix A, visit http://creativecommons.org/licenses/by-sa/3.0/, or send a letter to Creative Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA. Getting Started with Ubuntu 16.04 can be downloaded for free from http:// ubuntu-manual.org/ or purchased from http://ubuntu-manual.org/buy/ gswu1604/en_US. A printed copy of this book can be ordered for the price of printing and delivery. We permit and even encourage you to distribute a copy of this book to colleagues, friends, family, and anyone else who might be interested. http://ubuntu-manual.org Revision number: 125 Revision date: 2016-05-03 22:38:45 +0200 Contents Prologue 5 Welcome 5 Ubuntu Philosophy 5 A brief history of Ubuntu 6 Is Ubuntu right for you? 7 Contact details 8 About the team 8 Conventions used in this book 8 1 Installation 9 Getting Ubuntu 9 Trying out Ubuntu 10 Installing Ubuntu—Getting started 11 Finishing Installation 16 2 The Ubuntu Desktop 19 Understanding the Ubuntu desktop 19 Unity 19 The Launcher 21 The Dash 21 Workspaces 24 Managing windows 24 Unity’s keyboard shortcuts 26 Browsing files on your computer 26 Files file manager 27 Searching for files and folders on your computer 29 Customizing your desktop 30 Accessibility 32 Session options 33 Getting help 34 3 Working with Ubuntu 37 All the applications you
    [Show full text]