David Wilson - @daviwil Software Engineer, PowerShell Team
- Visual Studio Code overview
- Configuring the editor
- Extensions
get-childitem -Path .\FileShare -Recurse | where {$_.Name -match '[\u00C0-\u00D6]' -or $_.Name -match '[\u00D8-\u00F6]' -or $_.Name -match '[\u00F8-\u00FF]'} | foreach { [pscustomobject]@{'FileName' = $_.Name;'Directory' = $_.Directory;'Created' = $_.CreationTime;'Modified' = $_.LastAccessTime;'Size' = $_.Length} } | Format-Table -AutoSize |
David Wilson - @daviwil Software Engineer, PowerShell Team
Function Get-ClipboardText() { | |
<# | |
.Synopsis | |
cmdlet to use the Windows Forms.TextBox for copy and paste | |
.DESCRIPTION | |
This receives text from the clipboard and can be sent through the | |
pipeline as a text string. Useful for piping computernames, or usernames | |
through to other cmdlets | |
.EXAMPLE | |
Get-ClipboardText | Get-ADComputer |