Home
Categories
EXPLORE
True Crime
Comedy
Society & Culture
Business
Sports
Health & Fitness
Technology
About Us
Contact Us
Copyright
© 2024 PodJoint
Loading...
0:00 / 0:00
Podjoint Logo
US
Sign in

or

Don't have an account?
Sign up
Forgot password
https://is1-ssl.mzstatic.com/image/thumb/Podcasts6/v4/9c/12/c1/9c12c1b4-28ae-f284-a2c8-57ea0dcc18a3/mza_1234636268215491542.jpg/600x600bb.jpg
PowerShell Cmdlet of the Day Podcast
Tome Tanasovski
8 episodes
8 months ago
Join MVP recipient and PowerShell Bible author, Tome Tanasovski, in a short-form podcast that will explore a PowerShell cmdlet or technique in each episode.
Show more...
Technology
RSS
All content for PowerShell Cmdlet of the Day Podcast is the property of Tome Tanasovski and is served directly from their servers with no modification, redirects, or rehosting. The podcast is not affiliated with or endorsed by Podjoint in any way.
Join MVP recipient and PowerShell Bible author, Tome Tanasovski, in a short-form podcast that will explore a PowerShell cmdlet or technique in each episode.
Show more...
Technology
Episodes (8/8)
PowerShell Cmdlet of the Day Podcast
Episode 11 – Export-CSV – ConvertTo-CSV
Download the MP3 Podcast In this episode we look at how we can turn PowerShell objects into comma separated strings and files Append Example: Get-Process |select name,id |ConvertTo-Csv -NoTypeInformation |select -Skip 1 |out-file filetoappend.txt Brought to you by The Windows PowerShell Bible 2.0 and PowerShellGroup.Org
Show more...
14 years ago

PowerShell Cmdlet of the Day Podcast
Episode 10 – Select-Object
Download the MP3 Podcast In this episode we explore all of the possibilities for one of the most used PowerShell cmdlets. Basic Example: Get-Process |select name, id Parameters discussed: First Last Skip Unique Return a string collection of the process names rather than an object with only a name property Get-Process |select -ExpandProperty Name Return […]
Show more...
14 years ago

PowerShell Cmdlet of the Day Podcast
Episode 9 – Out-Null
Download the MP3 Podcast In this episode we look at how you can stop the pipeline and suppress output with Out-Null. Brought to you by The Windows PowerShell Bible 2.0 and PowerShellGroup.Org
Show more...
14 years ago

PowerShell Cmdlet of the Day Podcast
Episode 8 – Break and Continue
Download the MP3 Podcast In this episode we look at how you can use break and continue to control the flow of loops. Brought to you by The Windows PowerShell Bible 2.0 and PowerShellGroup.Org
Show more...
14 years ago

PowerShell Cmdlet of the Day Podcast
Episode 7 – Join-Path
Download the MP3 PodcastIn this episode we look at how you can easily concatenate paths with Join-Path. $dir = 'C:\users' $child = 'tome' Join-Path $dir $child c:\users\tome Join-Path c:,d: NewDir c:\NewDir d:\NewDir Brought to you by The Windows PowerShell Bible 2.0 and PowerShellGroup.Org
Show more...
14 years ago

PowerShell Cmdlet of the Day Podcast
Episode 6 – Split-Path
Download the MP3 Podcast In this episode we look at how you can carve up strings that make up strings of text that make up paths with Split-Path: By default – returns parent path Split-Path c:\users\tome c:\user Leaf – returns the end of the path (file or directory name) Split-Path c:\users\tome -Leaf tome NoQualifier – removes […]
Show more...
14 years ago

PowerShell Cmdlet of the Day Podcast
Episode 5 – BackupRestoreImport-GPO
Download the MP3 Podcast In this episode we look at how you can Backup, Restore, and Import Group Policy Objects using Windows PowerShell and the cmdlets that come with the Group Policy module in the latest version of RSAT and the GPMC. $dir = '\\server1\gpobackups' # Backups Get-GPO -All |Backup-GPO -Path $dir Get-GPO remoting |Backup-GPO […]
Show more...
14 years ago

PowerShell Cmdlet of the Day Podcast
Episode 4 – Get-GPResultantSetOfPolicy
Download the MP3 Podcast In this episode we look at how you can generate an RSOP with Windows PowerShell by using Get-GPResultantSetOfPolicy by using the GroupPolicy module that comes with the GPMC that is bundled in Windows Server 2008 R2 and the most recent version of RSAT. # Populate dir with the current dir regardless […]
Show more...
14 years ago

PowerShell Cmdlet of the Day Podcast
Join MVP recipient and PowerShell Bible author, Tome Tanasovski, in a short-form podcast that will explore a PowerShell cmdlet or technique in each episode.