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”

  • Management Shell Quick Reference for Exchange 2010


    MSMVPS.COMAuthority Authority: 642
    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 ...
    5 hours ago
  • Security Essentials


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


    Richard Siddaway's BlogAuthority Authority: 116
      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 ...
    6 hours ago
  • PowerPack Creation Manual


    Dmitry's PowerBlog: PowerShell and beyondAuthority Authority: 487
    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 .
    6 hours ago
  • 25 lines of PowerShell to Navigate PDC09 Sessions


    Development in a BlinkAuthority Authority: 422
    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 ...
    14 hours ago
  • 25 lines of PowerShell to Navigate PDC09 Sessions


    Lab49 BlogAuthority Authority: 142
    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 ...
    14 hours ago
  • Powershell script to find orphan stored procedures


    Richard DingwallAuthority Authority: 456
    Working on a legacy application that uses over 2,200 stored procedures, it can be hard to keep track of which ones are still active and which can be deleted. Here’s a quick PowerShell script I wrote that locates stored procedures in a database that aren’t referenced by code or other database objects (assuming you ...
    14 hours ago
  • Getting Change Events


    MSMVPS.COMAuthority Authority: 642
    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   ...
    21 hours ago
  • Windows Server 2008 R2 Developer Training Course Launches on Channel 9


    US ISV Developer Evangelism TeamAuthority Authority: 504
    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 ...
    22 hours ago
  • Watching the file system


    MSMVPS.COMAuthority Authority: 642
    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. ...
    1 day ago
  • Watching the file system


    Richard Siddaway's BlogAuthority Authority: 116
    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. ...
    1 day ago
  • Dependency Graph of PowerShell’s System.Management.Automation DLL


    Lab49 BlogAuthority Authority: 142
    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.
    1 day ago
  • Dependency Graph of PowerShell’s System.Management.Automation DLL


    Development in a BlinkAuthority Authority: 422
    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.
    1 day ago
  • Dew Drop – November 8, 2009


    Alvin Ashcraft's Morning DewAuthority Authority: 126
      Jump to: .NET / Visual Studio | Web Development | Design / Methodology / Testing | Silverlight / WPF | Podcasts / Screencasts / Videos | Community / Events | Database | Miscellaneous | More Link Collections | Book of the Day   .NET / Visual Studio Massive Search & Replace Among ...
    2 days ago
  • Multiple test files


    MSMVPS.COMAuthority Authority: 642
    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 ...
    2 days ago
  • Multiple test files


    Richard Siddaway's BlogAuthority Authority: 116
    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 ...
    2 days ago
  • PowerShell WMI events


    MSMVPS.COMAuthority Authority: 642
    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 ...
    2 days ago
  • PowerShell WMI events


    Richard Siddaway's BlogAuthority Authority: 116
    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 ...
    2 days ago
  • PowerShell Eventing


    MSMVPS.COMAuthority Authority: 642
    This isn’t the latest sport added for the 2012 Olympics but a way to dig deeper into what is happening on your machine.  There is a continuous stream of events occurring on a computer – programs stop or start, files open or close etc etc.  Some, but all, of these events are recorded in the event logs. If we want ...
    3 days ago
  • PowerShell Eventing


    Richard Siddaway's BlogAuthority Authority: 116
    This isn’t the latest sport added for the 2012 Olympics but a way to dig deeper into what is happening on your machine.  There is a continuous stream of events occurring on a computer – programs stop or start, files open or close etc etc.  Some, but all, of these events are recorded in the event logs. If we want ...
    3 days ago

Comments about powershell

Personal attacks are NOT allowed
Please read our comment policy