Profile_bird

Hey there! JamesBru is using Twitter.

Twitter is a free service that lets you keep in touch with people through the exchange of quick, frequent answers to one simple question: What's happening? Join today to start receiving JamesBru's tweets.

Already using Twitter
from your phone? Click here.

JamesBru

  1. #PowerShell #ScriptClub in Seattle has a #WPK Hands-On-Lab Right now. Join the LiveMeeting: http://bit.ly/z0aVz
  2. #PSV2QuickTip - You can create generic types in #PowerShell V2 - $LinkedList = New-Object Collections.Generic[int]
  3. #PowerShell Quick Tip. Want to know how long a script is? Get-Content .\foo.ps1 | Measure-Object -Word -Line -Char
  4. #PSV2QuickTip - Developer using #PowerShell? Try using Get-Process or Start-Process | Debug-Process
  5. @LucisFerre If you are using #PowerShell V2, you do not need to install an IDE. It comes with the Integrated Scripting Environment.
  6. @mrDeanMiller #PowerShell WMI Ping -AsJob sample: Test-Connection -ComputerName "Localhost", "MachineB" -AsJob | Wait-Job | Receive-Job
  7. Send automated emails with #PowerShell V2 and #PowerShellPack 's Task Scheduler module: http://bit.ly/14u5j7
  8. In #IsePack, you can move back to the next/previous {} or () in a #PowerShell script by pressing ALT+SHIFT+LEFT/RIGHT
  9. #PSV2QuickTip - Make your customized #PowerShell remoting endpoint with Register-PSSessionConfiguration
  10. Use #IsePack shortcut Close-AllOpenedFiles in the Windows #PowerShell Ise with CTRL + SHIFT + F4.
  11. Check out the new #WPK Video - Write a #multitouch fingerpaint in 30 lines of #PowerShell script: http://bit.ly/3aUq2D
  12. Did you know? #WPK has commands for expanding grids: "Add-GridRow", "Add-GridColumn" | Get-Command | Get-Help -Examples
  13. Just because it's a shorcut in #IsePack doesn't mean it can't have some parameters. Try using Add-Parameter interactively.
  14. RT @jsnover: It's here! PowerShell V2 for XP +above is HERE! http://tinyurl.com/yga9kue Enjoy! SNOOPY DANCE http://tinyurl.com/7xhmz #Po
  15. You can make a web Browser in #PowerShell & #WPK by using the New-NavigationWindow OR New-Frame commands.
  16. Animation in #PowerShell w/ #wpk - New-Window -Left -9 -On_Loaded { $this | Move-Control -Left 300 -Duration 0:0:2 } -AsJob
  17. swine flu really sucks
  18. #PowerShell GUI: A Rounded Rectangle in #WPK : New-Rectangle -RadiusX 15 -RadiusY 15 -Width 500 -Height 300 -Stroke Red -AsJob
  19. @bernd_k You can configure your own shortcuts in #IsePack (Get-Help Add-IseMenu). Also, I agree, I wasted CTRL + E :-)
  20. #PSV2QuickTip - See all Server 2K8R2 Features with #PowerShell - Import-Module ServerManager; Get-WindowsFeature | Out-GridView