PowerShell

Tag details

Welcome to the 'PowerShell' tag page at Technorati. This page features content from the farthest reaches of the Blogosphere that authors have "tagged" with 'PowerShell'.

Look up Offsite Link "PowerShell" at The Free Dictionary

Latest blogosphere posts tagged “PowerShell”

  • PowerShell-Based console for SMS 2003


    Dmitry's PowerBlog: PowerShell and beyondAuthority Authority: 486
    Are you running Microsoft Systems Management Server 2003 and want to have it fully scriptable in PowerShell? Check out this wonderful SMS/ConfigMgr PowerPack David Moravec put together. It lets you browse all your SMS configuration and among other things: List members of collection See package properties See ...
    7 hours ago
  • Free Windows PowerShell Reference Card


    Code BeachAuthority Authority: 431
    A free Windows PowerShell cheat sheet from DZone. This refcard covers starting and using Windows PowerShell, including the syntax for all statements, operators and other elements of the language. Also included are examples of how to use .NET, COM, ADSI and WMI objects from PowerShell. Finally, it includes tips and ...
    18 hours ago
  • Management Shell Quick Reference for Exchange 2010


    MSMVPS.COMAuthority Authority: 645
    A great document that should be used a lot: Exchange Management Shell Quick Reference for Exchange 2010 . Brief Description This download contains a quick reference sheet that can be used to access frequently used Exchange Management Shell cmdlets and syntax in Microsoft Exchange Server 2010. Overview The Exchange ...
    1 day ago
  • Security Essentials


    MSMVPS.COMAuthority Authority: 645
      001 002 003 004 005 006 007 008 009 010 011 012 013 014 015 016 ...
    1 day ago
  • Security Essentials


    Richard Siddaway's BlogAuthority Authority: 118
      001 002 003 004 005 006 007 008 009 010 011 012 013 014 015 016 017 018 019 020 021 022 023 #Requires -version 2.0 ## wrapper functions for Microsoft Security Essentials $mse   =   "C:\Program Files\Microsoft Security Essentials\MpCmdRun.exe" function   Start-Scan {     param ...
    1 day ago
  • PowerPack Creation Manual


    Dmitry's PowerBlog: PowerShell and beyondAuthority Authority: 486
    Kirk has published a pretty extensive reference manual on PowerPacks (PowerGUI add-ons), what they are, how to customize them, and how to create the ones of your own. Great timing considering that you still have 5 days to create a PowerPack and submit it to the PowerPack Challenge ! Check out the document here .
    1 day ago
  • 25 lines of PowerShell to Navigate PDC09 Sessions


    Development in a BlinkAuthority Authority: 420
    I find the PDC09 site a bit frustrating to navigate the sessions I want to attend. So I whipped up this 25 line PowerShell/WPK GUI. Type in the search box to find matching session titles. Click on a title and the browser navigates to PDC session page. The Code Grab the Code You need PowerShell V2 ...
    1 day ago
  • 25 lines of PowerShell to Navigate PDC09 Sessions


    Lab49 BlogAuthority Authority: 141
    I find the PDC09 site a bit frustrating to navigate the sessions I want to attend. So I whipped up this 25 line PowerShell/WPK GUI. Type in the search box to find matching session titles. Click on a title and the browser navigates to PDC session page. The Code Grab the Code You need PowerShell V2 ...
    1 day ago
  • Download Podcasts with Powershell


    Scott Hanselman's Computer ZenAuthority Authority: 567
    A number of people have mentioned to me that they didnt realize that Powershell is included by default in Windows 7. If you havent yet jumped on the Powershell bandwagon, this is a good time. Powershell 2 includes a bunch of cool features like remoting (kind of like SSH) as well as a visual IDE for writing, ...
    1 day ago
  • Getting Change Events


    MSMVPS.COMAuthority Authority: 645
    I wasn’t particularly happy with the script for getting change events on the filesystemwatcher we discussed last time.  As a quick recap we ended up with this 001 002 003 004 Get-Event   ...
    2 days ago
  • Getting Change Events


    Richard Siddaway's BlogAuthority Authority: 118
    I wasn’t particularly happy with the script for getting change events on the filesystemwatcher we discussed last time.  As a quick recap we ended up with this 001 002 003 004 Get-Event   -SourceIdentifier   "File System Changed"   |   where   { ( $_ . EventIdentifier   %   2 ...
    2 days ago
  • Windows Server 2008 R2 Developer Training Course Launches on Channel 9


    US ISV Developer Evangelism TeamAuthority Authority: 503
    Channel 9 launches the Windows Server 2008 R2 Training Course for Developers.  Channel 9 has always been about giving Developers insight into new Microsoft platform technologies.  The Channel 9 Learning Center extends that objective with self-paced learning experiences.  Windows Server 2008 R2 ...
    2 days ago
  • He Gets Around!


    SAPIEN TechnologiesAuthority Authority: 411
    CEO Ferdinand Rios is off to Columbus Ohio to speak at The Central Ohio PowerShell user group on 11/12/2009 at 6:30pm. Location: 1275 Kinnear Road Columbus, OH  43212 phone: 614-675-3711 They will be discussing PowerShell Profiles.  Dr. Rios will be presenting PrimalForms and how to create GUI interfaces in ...
    2 days ago
  • Watching the file system


    MSMVPS.COMAuthority Authority: 645
    We saw how to watch for WMI events http://msmvps.com/blogs/richardsiddaway/archive/2009/11/07/powershell-wmi-events.aspx . In this post we will look at watching the file system. This time we will use the .NET System.IO.FileSystemWatcher object which means we use Register-ObjectEvent instead of Register-WmiEvent. ...
    2 days ago
  • Watching the file system


    Richard Siddaway's BlogAuthority Authority: 118
    We saw how to watch for WMI events http://msmvps.com/blogs/richardsiddaway/archive/2009/11/07/powershell-wmi-events.aspx . In this post we will look at watching the file system. This time we will use the .NET System.IO.FileSystemWatcher object which means we use Register-ObjectEvent instead of Register-WmiEvent. ...
    2 days ago
  • Dependency Graph of PowerShell’s System.Management.Automation DLL


    Lab49 BlogAuthority Authority: 141
    Using the Architecture Explorer in VS 2010 to display and examine the dependency graph of PowerShell’s Management Automation DLL. The thickness of the links indicates the number of dependencies between the assemblies. Hovering over a link shows the roll up of the types of dependencies.
    2 days ago
  • Dependency Graph of PowerShell’s System.Management.Automation DLL


    Development in a BlinkAuthority Authority: 420
    Using the Architecture Explorer in VS 2010 to display and examine the dependency graph of PowerShell’s Management Automation DLL. The thickness of the links indicates the number of dependencies between the assemblies. Hovering over a link shows the roll up of the types of dependencies.
    2 days ago
  • Multiple test files


    MSMVPS.COMAuthority Authority: 645
    Back here http://msmvps.com/blogs/richardsiddaway/archive/2009/11/05/creating-temporary-files.aspx or http://richardsiddaway.spaces.live.com/blog/cns!43CFA46A74CF3E96!2595.entry I showed how to create temporary test files. We can simply create multiple test files like this 1..10 | foreach {new-tempfile -path ...
    3 days ago
  • Multiple test files


    Richard Siddaway's BlogAuthority Authority: 118
    Back here http://msmvps.com/blogs/richardsiddaway/archive/2009/11/05/creating-temporary-files.aspx or http://richardsiddaway.spaces.live.com/blog/cns!43CFA46A74CF3E96!2595.entry I showed how to create temporary test files. We can simply create multiple test files like this 1..10 | foreach {new-tempfile -path ...
    3 days ago
  • PowerShell WMI events


    MSMVPS.COMAuthority Authority: 645
    In my previous post ( http://richardsiddaway.spaces.live.com/blog/cns!43CFA46A74CF3E96!2598.entry   or http://richardsiddaway.spaces.live.com/blog/cns!43CFA46A74CF3E96!2598.entry ) I started to look at WMI events in PowerShell v2.  The win32_process class was used but all that showed us was that a process had ...
    4 days ago

Comments about PowerShell

Personal attacks are NOT allowed
Please read our comment policy