Cargando…

Getting started with PowerShell : learn the fundamentals of PowerShell to build reusable scripts and functions to automate administrative tasks with Windows /

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Shepard, Michael (Autor)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Birmingham, UK : Packt Publishing, 2015.
Colección:Community experience distilled.
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)

MARC

LEADER 00000cam a2200000Ii 4500
001 OR_ocn922007450
003 OCoLC
005 20231017213018.0
006 m o d
007 cr unu||||||||
008 150924s2015 enka o 001 0 eng d
040 |a UMI  |b eng  |e rda  |e pn  |c UMI  |d OCLCF  |d DEBBG  |d COO  |d YDXCP  |d IDEBK  |d EBLCP  |d OCLCQ  |d MERUC  |d OCLCQ  |d OCLCO  |d CEF  |d OCLCA  |d VT2  |d OCLCQ  |d OCLCO  |d UAB  |d UKAHL  |d OCLCQ  |d OCLCO  |d N$T  |d UKMGB  |d NJP  |d OCLCO  |d OCLCQ  |d OCLCO 
015 |a GBC1J1723  |2 bnb 
016 7 |a 018010498  |2 Uk 
019 |a 919682739  |a 942669539 
020 |a 1785284908 
020 |a 1783558504 
020 |a 9781783558506 
020 |a 9781472729071  |q (e-book) 
020 |a 1472729072  |q (e-book) 
020 |a 9781785284908  |q (electronic bk.) 
029 1 |a DEBBG  |b BV043020346 
029 1 |a DEBBG  |b BV043624966 
029 1 |a DEBSZ  |b 455699186 
029 1 |a GBVCP  |b 882744585 
029 1 |a UKMGB  |b 018010498 
035 |a (OCoLC)922007450  |z (OCoLC)919682739  |z (OCoLC)942669539 
037 |a CL0500000649  |b Safari Books Online 
050 4 |a QA76.73.W56 
082 0 4 |a 005.4469  |2 23 
049 |a UAMI 
100 1 |a Shepard, Michael,  |e author. 
245 1 0 |a Getting started with PowerShell :  |b learn the fundamentals of PowerShell to build reusable scripts and functions to automate administrative tasks with Windows /  |c Michael Shepard. 
246 3 0 |a Learn the fundamentals of PowerShell to build reusable scripts and functions to automate administrative tasks with Windows 
264 1 |a Birmingham, UK :  |b Packt Publishing,  |c 2015. 
300 |a 1 online resource (1 volume) :  |b illustrations 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
490 1 |a Community experience distilled 
588 0 |a Online resource; title from cover page (Safari, viewed September 21, 2015). 
500 |a Includes index. 
505 0 0 |t Cover --  |t Copyright --  |t Credits --  |t About the Author --  |t About the Reviewers --  |t www.PacktPub.com --  |t Table of Contents --  |t Preface --  |t Chapter 1: First Steps --  |t Determining the installed PowerShell version --  |t Using the registry to find the installed version --  |t Using PowerShell to find the installed version --  |t Installing/upgrading PowerShell --  |t Starting a PowerShell session --  |t PowerShell hosts --  |t 64-bit and 32-bit PowerShell --  |t PowerShell as an administrator --  |t Simple PowerShell commands --  |t PowerShell aliases --  |t Summary --  |t For further reading --  |t Chapter 2: Building Blocks --  |t What can you do? --  |t The scripter's secret weapon -- tab completion --  |t How does that work? --  |t Interpreting cmdlet syntax --  |t Summary --  |t For further reading --  |t Chapter 3: Objects and PowerShell --  |t Objects all the way down --  |t Digging into objects --  |t Types, classes, and objects --  |t What are members? --  |t The DOS DIR command --  |t The IPCONFIG command --  |t PowerShell for comparison --  |t The Get-Member cmdlet --  |t Where did these all come from? --  |t Summary --  |t For further reading --  |t Chapter 4: Life on the Assembly Line --  |t The pipeline as an assembly line --  |t This isn't your DOS or Linux pipeline --  |t Objects at your disposal --  |t Dealing with pipeline data --  |t The Sort-Object cmdlet --  |t The Where-Object cmdlet --  |t The Select-Object cmdlet --  |t Limiting the number of objects returned --  |t Limiting the properties of objects returned --  |t Retrieving the values of a single property --  |t The Measure-Object cmdlet --  |t The Group-Object cmdlet --  |t Putting them together --  |t Summary --  |t For further reading --  |t Chapter 5: Formatting Output --  |t When does formatting occur? --  |t The rules of automatic formatting --  |t Formatting files --  |t Formatting decisions are based on the first object --  |t Small objects go in a table --  |t Large objects go in a list --  |t Cmdlets that control formatting --  |t Format-Table and Format-List --  |t The dangers of formatting. 
505 8 0 |t Best practices of formatting --  |t Summary --  |t For further reading --  |t Chapter 6: Scripts --  |t Packaging commands --  |t Execution policy --  |t Types of scripts --  |t Scopes and scripts --  |t Parameters add flexibility --  |t Adding some logic --  |t Conditional logic (IF) --  |t Looping logic --  |t More logic --  |t Profiles --  |t Summary --  |t For further reading --  |t Chapter 7: Functions --  |t Another kind of container --  |t Comparing scripts and functions --  |t Executing and calling functions --  |t Naming conventions --  |t Comment-based help --  |t Parameters revisited --  |t Typed parameters --  |t Switches --  |t Default values for parameters --  |t Output --  |t Summary --  |t For further reading --  |t Chapter 8: Modules --  |t Packaging functions --  |t Script modules --  |t The Export-ModuleMember cmdlet --  |t Where do modules live? --  |t Removing a module --  |t PowerShell module autoloading --  |t The #Requires statement --  |t Removing a module -- take two --  |t Manifest modules --  |t Listing modules --  |t Summary --  |t Chapter 9: File I/O --  |t Reading and writing text files --  |t Writing text files --  |t Working with CSV files --  |t Output to CSV for quick reports --  |t The Invoke-Item cmdlet --  |t Import from CSV for quick objects --  |t PowerShell streams and redirection --  |t Other types of redirection operators --  |t The out-file cmdlet --  |t CLIXML -- a special type of XML --  |t Summary --  |t For further reading --  |t Chapter 10: WMI and CIM --  |t What is WMI? --  |t WMI organization --  |t Finding WMI classes --  |t Retrieving objects with Get-WMIObject --  |t Getting the right instance --  |t WQL syntax --  |t Calling methods --  |t WMI and CIM --  |t The CIM cmdlets --  |t CDXML modules --  |t Summary --  |t For further reading --  |t Chapter 11: Web Server Administration --  |t Installing IIS --  |t Detecting and installing IIS in Windows 8.1 --  |t Detecting and installing IIS in Server 2012R2 --  |t Verifying IIS --  |t The WebAdministration module --  |t Starting, stopping, and restarting IIS --  |t Creating virtual directories and web applications. 
505 8 0 |t Working with application pools --  |t Creating application pools --  |t Summary --  |t For further reading --  |t Next Steps --  |t Index. 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
630 0 0 |a Microsoft Windows (Computer file)  |x Automation. 
630 0 7 |a Microsoft Windows (Computer file)  |2 fast 
650 0 |a Windows PowerShell (Computer program language) 
650 0 |a Scripting languages (Computer science) 
650 6 |a Windows PowerShell (Langage de programmation) 
650 6 |a Langages de script (Informatique) 
650 7 |a COMPUTERS.  |x Operating Systems  |x Windows Server.  |2 bisacsh 
650 7 |a COMPUTERS.  |x Web  |x General.  |2 bisacsh 
650 7 |a Automation  |2 fast 
650 7 |a Scripting languages (Computer science)  |2 fast 
650 7 |a Windows PowerShell (Computer program language)  |2 fast 
776 0 8 |i Print version:  |a Shepard, Michael.  |t Getting started with PowerShell : learn the fundamentals of PowerShell to build reusable scripts and functions to automate administrative tasks with Windows.  |d Birmingham, England ; Mumbai, India : Packt Publishing, ©2015  |h viii, 160 pages  |k Community experience distilled.  |z 9781783558506 
830 0 |a Community experience distilled. 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781783558506/?ar  |z Texto completo (Requiere registro previo con correo institucional) 
938 |a Askews and Holts Library Services  |b ASKH  |n AH29175323 
938 |a EBL - Ebook Library  |b EBLB  |n EBL3564814 
938 |a ProQuest MyiLibrary Digital eBook Collection  |b IDEB  |n cis32457068 
938 |a YBP Library Services  |b YANK  |n 12591703 
938 |a EBSCOhost  |b EBSC  |n 1057671 
994 |a 92  |b IZTAP