SlideShare una empresa de Scribd logo
1 de 29
Windows PowerShellCrash Course forSharePoint Administrators Don JonesConcentrated Technology, LLChttp://concentratedtech.com
This slide deck was used in one of our many conference presentations. We hope you enjoy it, and invite you to use it within your own organization however you like. For more information on our company, including information on private classes and upcoming conference appearances, please visit our Web site, www.ConcentratedTech.com.  For links to newly-posted decks, follow us on Twitter:@concentrateddon or @concentratdgreg This work is copyright ©Concentrated Technology, LLC
CAUTION: DEMOS AHEAD This is a demonstration-intensive session (very few slides) I will capture a shell transcript and save all of my scripts You can download these (in a week or so) from ConcentratedTech.com (there’s a “Conference Materials” link in the menu)
Welcome to the Shell Why did Microsoft write PowerShell? Is this a replacement for Cmd.exe or VBScript? How much “scripting” do I need to learn? How long will PowerShell be around? What versions of Windows does it work with? What MS products are PowerShell-ed?
Command Quiz Change directories Make a directory Get a list of files and folders Display contents of a text file Move a file Copy a file Delete a file
Running Commands Run all the commands you’re used to, with almost exactly the same syntax (Ping, Ipconfig, etc) New “cmdlets” have a more consistent naming convention and more consistent parameters… but they’re just commands Use Help to read more; add –full or –examples for even more help; use wildcards to discover more commands and help topics
One Set of Commands The file system is a hierarchical data store What other data stores does Windows use? Why not treat them as “disk drives” so that you can use the same set of commands?
Extending the Shell PSSnapins (the old way) Get-PSSnapin –registered Add-PSSnapinname Get-Command –pssnapinname Modules (the new way) Get-Module –listavailable Import-Module name Get-Command –module name There’s only one shell – the “pre-made shells” are just pre-loading a snap-in or module for you
Piping Just like Dir | More Export-, Out-, Format-, ConvertTo- are all useful verbs for piping Tip: Format- cmdlets go at the end of the pipeline. What they produce is only useful to Out-File, Out-Printer, Out-Host.
Output Run Get-Process See the resulting table? The real table, in memory, is much bigger – PowerShell just doesn’t show it Pipe the table to Get-Member to see other available columns Or pipe it to Format-List * (since a list can hold more data than a table) You don’t have to pipe stuff to a file and then grep it; you can simply refer to columns by name
More Piping Sorting: Sort-Object (or “Sort”) Filtering: Where-Object (or “Where”) Grouping: Group-Object (or “Group”) Measuring: Measure-Object (or “Measure”) Use Format- cmdlets to specify the columns (called “properties”) that you’d prefer to see
Phys Ed Let’s see the pipeline work in real life. Volunteers needed. You may win a prize.
How Pipeline input works Get-Service generates what type of table (ok, these are really “objects” and not a “table in memory,” but it’s all just words) Get-Service | Get-Member So when you runGet-Service | Stop-Servicehow does Stop-Service know what to do with what you piped in?
Pipeline Input ByValue Look at the parameters of Stop-Service Do any of them accept pipeline input ByValue and accept the type of data being produced by Stop-Service?
Now Consider This “BITS”,”w32time” | Stop-Service Those are strings“BITS” | Get-Member Does Stop-Service accept anything of the type String ByValue from the pipeline? This would work too:Get-Content names.txt | Stop-Service World this work?Get-Process | Stop-ServiceHmmm…
Pipeline Input ByPropertyName If nothing will work ByValue, then the shell tries to match up input columns with parameter names ByPropertyName Let’s look atGet-Process | Get-Member Do any of those column names match up with parameter names of Stop-Service? Do the matching parameter names accept input from the pipeline ByPropertyName?
Debugging Pipeline Input Trace-Command-Name PipelineBinding-PSHost-expression { Get-Process | Stop-Service }
Fun trick! Import user info from a CSV and make new users out of them
Workarounds What about when pipelining won’t work? Get-WmiObject-class Win32_BIOS-computername (type names.txt) Get-WmiObject-class Win32_BIOS-computername (	Get-ADComputer –filter * |	Select –expand Name)
Remote Control Requires PSH v2 Run Enable-PSRemoting to enable(or via GPO) on machines that will accept incoming connections Communicates over HTTP(s); authenticates with Kerberos Help about_remote* for more help
1:1, 1:n Remoting Enter-PSSession –computernamexExit-PSSession Invoke-Command-scriptblock { command(s) }-computernamex,x,x,x Notes: PSComputerName property FilePath switch to do a whole script
More Options -credential -port -useSSL Etc Or create a persistent session using New-PSSession. Get the sessions with Get-PSSessionInvoke-Command –scr { whatever }-session (Get-PSSession)
Implicit Remoting Start a session (maybe save it in a $variable for ease of referring to it) Import a module in the remote session Import the remote session into the local shell – just the commands from that module, and add a noun prefix Execute remote commands as if they were local!
WMI Get-WmiObject-class whatever (e.g., “Win32_XXX”)-computername x,y,z-EA SilentlyContinue (why?)-Filter ”something” (why?) Let’s play with that…
Awesome Advanced Trick Format-Table can accept a special item called a hashtable or dictionary as a property in a property list The dictionary must contain two items N: The name of the column you want to create E: The value to go into the columnThis can even be an entirely new command!Use $_ to refer to whatever table row (object) is current Use to combine WMI info from two classes into a single output! Crazy syntax, but crazy useful!
NOW… let’s do some Q&A I’ve got more demos to show you, but want to make sure I address your questions Ask ‘em now! The remainder of the session will be additional demos Remember: Transcript will be downloadable; no need to copy down the syntax Ask for a “reminder card” if you want to download this stuff next week.
Final Notes… Please be sure to submit a session evaluation form! Download slides & materials from www.ConcentratedTech.com within one week! Blog, URLs, and other information is also available at www.ConcentratedTech.com for your reference Twitter me @concentrateddon More resources at www.ShellHub.com Thank you very much!
Your Feedback is Important Please fill out a session evaluation form. Thank you!
This slide deck was used in one of our many conference presentations. We hope you enjoy it, and invite you to use it within your own organization however you like. For more information on our company, including information on private classes and upcoming conference appearances, please visit our Web site, www.ConcentratedTech.com.  For links to newly-posted decks, follow us on Twitter:@concentrateddon or @concentratdgreg This work is copyright ©Concentrated Technology, LLC

Más contenido relacionado

La actualidad más candente

Automating Active Directory mgmt in PowerShell
Automating Active Directory mgmt in PowerShellAutomating Active Directory mgmt in PowerShell
Automating Active Directory mgmt in PowerShell
Concentrated Technology
 
PHP North-East - Automated Deployment
PHP North-East - Automated DeploymentPHP North-East - Automated Deployment
PHP North-East - Automated Deployment
Michael Peacock
 

La actualidad más candente (20)

Server Core2
Server Core2Server Core2
Server Core2
 
PS error handling and debugging
PS error handling and debuggingPS error handling and debugging
PS error handling and debugging
 
Supporting SQLserver
Supporting SQLserverSupporting SQLserver
Supporting SQLserver
 
Automating Active Directory mgmt in PowerShell
Automating Active Directory mgmt in PowerShellAutomating Active Directory mgmt in PowerShell
Automating Active Directory mgmt in PowerShell
 
Ideal Deployment In .NET World
Ideal Deployment In .NET WorldIdeal Deployment In .NET World
Ideal Deployment In .NET World
 
Session on Selenium Powertools by Unmesh Gundecha
Session on Selenium Powertools by Unmesh GundechaSession on Selenium Powertools by Unmesh Gundecha
Session on Selenium Powertools by Unmesh Gundecha
 
Session on Launching Selenium Grid and Running tests using docker compose and...
Session on Launching Selenium Grid and Running tests using docker compose and...Session on Launching Selenium Grid and Running tests using docker compose and...
Session on Launching Selenium Grid and Running tests using docker compose and...
 
Pantheon basics
Pantheon basicsPantheon basics
Pantheon basics
 
Features, Exportables & You
Features, Exportables & YouFeatures, Exportables & You
Features, Exportables & You
 
Automating Post Exploitation with PowerShell
Automating Post Exploitation with PowerShellAutomating Post Exploitation with PowerShell
Automating Post Exploitation with PowerShell
 
WordPress Security - 12 WordPress Security Fundamentals
WordPress Security - 12 WordPress Security FundamentalsWordPress Security - 12 WordPress Security Fundamentals
WordPress Security - 12 WordPress Security Fundamentals
 
There and Back Again (My DevOps journey) - DevOps Days Copenhagen 2018
There and Back Again (My DevOps journey) - DevOps Days Copenhagen 2018There and Back Again (My DevOps journey) - DevOps Days Copenhagen 2018
There and Back Again (My DevOps journey) - DevOps Days Copenhagen 2018
 
Kautilya: Teensy beyond shell
Kautilya: Teensy beyond shellKautilya: Teensy beyond shell
Kautilya: Teensy beyond shell
 
Implementing CI CD UiPath Using Jenkins Plugin
Implementing CI CD UiPath Using Jenkins PluginImplementing CI CD UiPath Using Jenkins Plugin
Implementing CI CD UiPath Using Jenkins Plugin
 
Hacked? Pray that the Attacker used PowerShell
Hacked? Pray that the Attacker used PowerShellHacked? Pray that the Attacker used PowerShell
Hacked? Pray that the Attacker used PowerShell
 
Chrome O.S.
Chrome O.S.Chrome O.S.
Chrome O.S.
 
My v mware solutions home lab
My v mware solutions home labMy v mware solutions home lab
My v mware solutions home lab
 
Windows Server and Fast CGI Technologies For PHP
Windows Server and Fast CGI Technologies For PHPWindows Server and Fast CGI Technologies For PHP
Windows Server and Fast CGI Technologies For PHP
 
PHP North-East - Automated Deployment
PHP North-East - Automated DeploymentPHP North-East - Automated Deployment
PHP North-East - Automated Deployment
 
How to Build a Pure Evil Magento Module
How to Build a Pure Evil Magento ModuleHow to Build a Pure Evil Magento Module
How to Build a Pure Evil Magento Module
 

Destacado

Ive got a powershell secret
Ive got a powershell secretIve got a powershell secret
Ive got a powershell secret
Chris Conte
 
Managing enterprise with PowerShell remoting
Managing enterprise with PowerShell remotingManaging enterprise with PowerShell remoting
Managing enterprise with PowerShell remoting
Concentrated Technology
 

Destacado (16)

No-script PowerShell v2
No-script PowerShell v2No-script PowerShell v2
No-script PowerShell v2
 
Ha & drs gotcha's
Ha & drs gotcha'sHa & drs gotcha's
Ha & drs gotcha's
 
Managing SQLserver
Managing SQLserverManaging SQLserver
Managing SQLserver
 
Combining output from multiple sources
Combining output from multiple sourcesCombining output from multiple sources
Combining output from multiple sources
 
Automating ad with powershell
Automating ad with powershellAutomating ad with powershell
Automating ad with powershell
 
PowerShell and the Future of Windows Automation
PowerShell and the Future of Windows AutomationPowerShell and the Future of Windows Automation
PowerShell and the Future of Windows Automation
 
PowerShell Functions
PowerShell FunctionsPowerShell Functions
PowerShell Functions
 
Best free tools for w d a
Best free tools for w d aBest free tools for w d a
Best free tools for w d a
 
PowerShell v4 Desired State Configuration
PowerShell v4 Desired State ConfigurationPowerShell v4 Desired State Configuration
PowerShell v4 Desired State Configuration
 
Meet Windows PowerShell
Meet Windows PowerShellMeet Windows PowerShell
Meet Windows PowerShell
 
Introduction to powershell
Introduction to powershellIntroduction to powershell
Introduction to powershell
 
Three cool cmdlets I wish PowerShell Had!
Three cool cmdlets I wish PowerShell Had!Three cool cmdlets I wish PowerShell Had!
Three cool cmdlets I wish PowerShell Had!
 
Best free tools for win database admin
Best free tools for win database adminBest free tools for win database admin
Best free tools for win database admin
 
Ive got a powershell secret
Ive got a powershell secretIve got a powershell secret
Ive got a powershell secret
 
PowerShell crash course
PowerShell crash coursePowerShell crash course
PowerShell crash course
 
Managing enterprise with PowerShell remoting
Managing enterprise with PowerShell remotingManaging enterprise with PowerShell remoting
Managing enterprise with PowerShell remoting
 

Similar a PowerShell crashcourse for sharepoint

PowerShell Core Skills (TechMentor Fall 2011)
PowerShell Core Skills (TechMentor Fall 2011)PowerShell Core Skills (TechMentor Fall 2011)
PowerShell Core Skills (TechMentor Fall 2011)
Concentrated Technology
 
Brian Jackett: Managing SharePoint 2010 Farms with Powershell
Brian Jackett: Managing SharePoint 2010 Farms with PowershellBrian Jackett: Managing SharePoint 2010 Farms with Powershell
Brian Jackett: Managing SharePoint 2010 Farms with Powershell
SharePoint Saturday NY
 
Brian Jackett: Managing SharePoint 2010 Farms with Powershell
Brian Jackett: Managing SharePoint 2010 Farms with PowershellBrian Jackett: Managing SharePoint 2010 Farms with Powershell
Brian Jackett: Managing SharePoint 2010 Farms with Powershell
SharePoint Saturday NY
 
SQL Server Integration Services Tips & Tricks
SQL Server Integration Services Tips & TricksSQL Server Integration Services Tips & Tricks
SQL Server Integration Services Tips & Tricks
Guillermo Caicedo
 
Working Effectively With Legacy Perl Code
Working Effectively With Legacy Perl CodeWorking Effectively With Legacy Perl Code
Working Effectively With Legacy Perl Code
erikmsp
 
Inventory your network and clients with PowerShell
Inventory your network and clients with PowerShellInventory your network and clients with PowerShell
Inventory your network and clients with PowerShell
Concentrated Technology
 
Powershell Training
Powershell TrainingPowershell Training
Powershell Training
Fahad Noaman
 
PowerShell Scripting and Modularization (TechMentor Fall 2011)
PowerShell Scripting and Modularization (TechMentor Fall 2011)PowerShell Scripting and Modularization (TechMentor Fall 2011)
PowerShell Scripting and Modularization (TechMentor Fall 2011)
Concentrated Technology
 

Similar a PowerShell crashcourse for sharepoint (20)

PowerShell Core Skills (TechMentor Fall 2011)
PowerShell Core Skills (TechMentor Fall 2011)PowerShell Core Skills (TechMentor Fall 2011)
PowerShell Core Skills (TechMentor Fall 2011)
 
Admin SharePoint 2010 with PowerShell
Admin SharePoint 2010 with PowerShellAdmin SharePoint 2010 with PowerShell
Admin SharePoint 2010 with PowerShell
 
PowerShell-1
PowerShell-1PowerShell-1
PowerShell-1
 
Brian Jackett: Managing SharePoint 2010 Farms with Powershell
Brian Jackett: Managing SharePoint 2010 Farms with PowershellBrian Jackett: Managing SharePoint 2010 Farms with Powershell
Brian Jackett: Managing SharePoint 2010 Farms with Powershell
 
Brian Jackett: Managing SharePoint 2010 Farms with Powershell
Brian Jackett: Managing SharePoint 2010 Farms with PowershellBrian Jackett: Managing SharePoint 2010 Farms with Powershell
Brian Jackett: Managing SharePoint 2010 Farms with Powershell
 
PowerShell 101
PowerShell 101PowerShell 101
PowerShell 101
 
JavaScript guide 2020 Learn JavaScript
JavaScript guide 2020 Learn JavaScriptJavaScript guide 2020 Learn JavaScript
JavaScript guide 2020 Learn JavaScript
 
A Lap Around Visual Studio 2010
A Lap Around Visual Studio 2010A Lap Around Visual Studio 2010
A Lap Around Visual Studio 2010
 
Holy PowerShell, BATman! - dogfood edition
Holy PowerShell, BATman! - dogfood editionHoly PowerShell, BATman! - dogfood edition
Holy PowerShell, BATman! - dogfood edition
 
Introduction to PowerShell
Introduction to PowerShellIntroduction to PowerShell
Introduction to PowerShell
 
Atomic design
Atomic designAtomic design
Atomic design
 
SQL Server Integration Services Tips & Tricks
SQL Server Integration Services Tips & TricksSQL Server Integration Services Tips & Tricks
SQL Server Integration Services Tips & Tricks
 
Professional Help for PowerShell Modules
Professional Help for PowerShell ModulesProfessional Help for PowerShell Modules
Professional Help for PowerShell Modules
 
Working Effectively With Legacy Perl Code
Working Effectively With Legacy Perl CodeWorking Effectively With Legacy Perl Code
Working Effectively With Legacy Perl Code
 
NIIT ISAS Q5 Report - Windows PowerShell
NIIT ISAS Q5 Report - Windows PowerShellNIIT ISAS Q5 Report - Windows PowerShell
NIIT ISAS Q5 Report - Windows PowerShell
 
Automated Deployment
Automated DeploymentAutomated Deployment
Automated Deployment
 
Inventory your network and clients with PowerShell
Inventory your network and clients with PowerShellInventory your network and clients with PowerShell
Inventory your network and clients with PowerShell
 
Powershell Training
Powershell TrainingPowershell Training
Powershell Training
 
Framework Design Guidelines For Brussels Users Group
Framework Design Guidelines For Brussels Users GroupFramework Design Guidelines For Brussels Users Group
Framework Design Guidelines For Brussels Users Group
 
PowerShell Scripting and Modularization (TechMentor Fall 2011)
PowerShell Scripting and Modularization (TechMentor Fall 2011)PowerShell Scripting and Modularization (TechMentor Fall 2011)
PowerShell Scripting and Modularization (TechMentor Fall 2011)
 

Más de Concentrated Technology (14)

Wsus sample scripts
Wsus sample scriptsWsus sample scripts
Wsus sample scripts
 
Wsus best practices
Wsus best practicesWsus best practices
Wsus best practices
 
Virtualization today
Virtualization todayVirtualization today
Virtualization today
 
Virtualization auditing & security deck v1.0
Virtualization auditing & security deck v1.0Virtualization auditing & security deck v1.0
Virtualization auditing & security deck v1.0
 
Vdi in-a-box
Vdi in-a-boxVdi in-a-box
Vdi in-a-box
 
Top ESXi command line v2.0
Top ESXi command line v2.0Top ESXi command line v2.0
Top ESXi command line v2.0
 
Securely connecting to apps over the internet using rds
Securely connecting to apps over the internet using rdsSecurely connecting to apps over the internet using rds
Securely connecting to apps over the internet using rds
 
Rapidly deploying software
Rapidly deploying softwareRapidly deploying software
Rapidly deploying software
 
PowerShell and WMI
PowerShell and WMIPowerShell and WMI
PowerShell and WMI
 
Managing SQLserver for the reluctant DBA
Managing SQLserver for the reluctant DBAManaging SQLserver for the reluctant DBA
Managing SQLserver for the reluctant DBA
 
Implementing dr w. hyper v clustering
Implementing dr w. hyper v clusteringImplementing dr w. hyper v clustering
Implementing dr w. hyper v clustering
 
Iis implementation
Iis implementationIis implementation
Iis implementation
 
Hyper v r2 deep dive
Hyper v r2 deep diveHyper v r2 deep dive
Hyper v r2 deep dive
 
How to configure esx to pass an audit
How to configure esx to pass an auditHow to configure esx to pass an audit
How to configure esx to pass an audit
 

Último

Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 

Último (20)

AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 

PowerShell crashcourse for sharepoint

  • 1. Windows PowerShellCrash Course forSharePoint Administrators Don JonesConcentrated Technology, LLChttp://concentratedtech.com
  • 2. This slide deck was used in one of our many conference presentations. We hope you enjoy it, and invite you to use it within your own organization however you like. For more information on our company, including information on private classes and upcoming conference appearances, please visit our Web site, www.ConcentratedTech.com. For links to newly-posted decks, follow us on Twitter:@concentrateddon or @concentratdgreg This work is copyright ©Concentrated Technology, LLC
  • 3. CAUTION: DEMOS AHEAD This is a demonstration-intensive session (very few slides) I will capture a shell transcript and save all of my scripts You can download these (in a week or so) from ConcentratedTech.com (there’s a “Conference Materials” link in the menu)
  • 4. Welcome to the Shell Why did Microsoft write PowerShell? Is this a replacement for Cmd.exe or VBScript? How much “scripting” do I need to learn? How long will PowerShell be around? What versions of Windows does it work with? What MS products are PowerShell-ed?
  • 5. Command Quiz Change directories Make a directory Get a list of files and folders Display contents of a text file Move a file Copy a file Delete a file
  • 6. Running Commands Run all the commands you’re used to, with almost exactly the same syntax (Ping, Ipconfig, etc) New “cmdlets” have a more consistent naming convention and more consistent parameters… but they’re just commands Use Help to read more; add –full or –examples for even more help; use wildcards to discover more commands and help topics
  • 7. One Set of Commands The file system is a hierarchical data store What other data stores does Windows use? Why not treat them as “disk drives” so that you can use the same set of commands?
  • 8. Extending the Shell PSSnapins (the old way) Get-PSSnapin –registered Add-PSSnapinname Get-Command –pssnapinname Modules (the new way) Get-Module –listavailable Import-Module name Get-Command –module name There’s only one shell – the “pre-made shells” are just pre-loading a snap-in or module for you
  • 9. Piping Just like Dir | More Export-, Out-, Format-, ConvertTo- are all useful verbs for piping Tip: Format- cmdlets go at the end of the pipeline. What they produce is only useful to Out-File, Out-Printer, Out-Host.
  • 10. Output Run Get-Process See the resulting table? The real table, in memory, is much bigger – PowerShell just doesn’t show it Pipe the table to Get-Member to see other available columns Or pipe it to Format-List * (since a list can hold more data than a table) You don’t have to pipe stuff to a file and then grep it; you can simply refer to columns by name
  • 11. More Piping Sorting: Sort-Object (or “Sort”) Filtering: Where-Object (or “Where”) Grouping: Group-Object (or “Group”) Measuring: Measure-Object (or “Measure”) Use Format- cmdlets to specify the columns (called “properties”) that you’d prefer to see
  • 12. Phys Ed Let’s see the pipeline work in real life. Volunteers needed. You may win a prize.
  • 13. How Pipeline input works Get-Service generates what type of table (ok, these are really “objects” and not a “table in memory,” but it’s all just words) Get-Service | Get-Member So when you runGet-Service | Stop-Servicehow does Stop-Service know what to do with what you piped in?
  • 14. Pipeline Input ByValue Look at the parameters of Stop-Service Do any of them accept pipeline input ByValue and accept the type of data being produced by Stop-Service?
  • 15. Now Consider This “BITS”,”w32time” | Stop-Service Those are strings“BITS” | Get-Member Does Stop-Service accept anything of the type String ByValue from the pipeline? This would work too:Get-Content names.txt | Stop-Service World this work?Get-Process | Stop-ServiceHmmm…
  • 16. Pipeline Input ByPropertyName If nothing will work ByValue, then the shell tries to match up input columns with parameter names ByPropertyName Let’s look atGet-Process | Get-Member Do any of those column names match up with parameter names of Stop-Service? Do the matching parameter names accept input from the pipeline ByPropertyName?
  • 17. Debugging Pipeline Input Trace-Command-Name PipelineBinding-PSHost-expression { Get-Process | Stop-Service }
  • 18. Fun trick! Import user info from a CSV and make new users out of them
  • 19. Workarounds What about when pipelining won’t work? Get-WmiObject-class Win32_BIOS-computername (type names.txt) Get-WmiObject-class Win32_BIOS-computername ( Get-ADComputer –filter * | Select –expand Name)
  • 20. Remote Control Requires PSH v2 Run Enable-PSRemoting to enable(or via GPO) on machines that will accept incoming connections Communicates over HTTP(s); authenticates with Kerberos Help about_remote* for more help
  • 21. 1:1, 1:n Remoting Enter-PSSession –computernamexExit-PSSession Invoke-Command-scriptblock { command(s) }-computernamex,x,x,x Notes: PSComputerName property FilePath switch to do a whole script
  • 22. More Options -credential -port -useSSL Etc Or create a persistent session using New-PSSession. Get the sessions with Get-PSSessionInvoke-Command –scr { whatever }-session (Get-PSSession)
  • 23. Implicit Remoting Start a session (maybe save it in a $variable for ease of referring to it) Import a module in the remote session Import the remote session into the local shell – just the commands from that module, and add a noun prefix Execute remote commands as if they were local!
  • 24. WMI Get-WmiObject-class whatever (e.g., “Win32_XXX”)-computername x,y,z-EA SilentlyContinue (why?)-Filter ”something” (why?) Let’s play with that…
  • 25. Awesome Advanced Trick Format-Table can accept a special item called a hashtable or dictionary as a property in a property list The dictionary must contain two items N: The name of the column you want to create E: The value to go into the columnThis can even be an entirely new command!Use $_ to refer to whatever table row (object) is current Use to combine WMI info from two classes into a single output! Crazy syntax, but crazy useful!
  • 26. NOW… let’s do some Q&A I’ve got more demos to show you, but want to make sure I address your questions Ask ‘em now! The remainder of the session will be additional demos Remember: Transcript will be downloadable; no need to copy down the syntax Ask for a “reminder card” if you want to download this stuff next week.
  • 27. Final Notes… Please be sure to submit a session evaluation form! Download slides & materials from www.ConcentratedTech.com within one week! Blog, URLs, and other information is also available at www.ConcentratedTech.com for your reference Twitter me @concentrateddon More resources at www.ShellHub.com Thank you very much!
  • 28. Your Feedback is Important Please fill out a session evaluation form. Thank you!
  • 29. This slide deck was used in one of our many conference presentations. We hope you enjoy it, and invite you to use it within your own organization however you like. For more information on our company, including information on private classes and upcoming conference appearances, please visit our Web site, www.ConcentratedTech.com. For links to newly-posted decks, follow us on Twitter:@concentrateddon or @concentratdgreg This work is copyright ©Concentrated Technology, LLC