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”

  • Dew Drop – December 4, 2009


    Alvin Ashcraft's Morning DewAuthority Authority: 127
      Jump to: .NET / Visual Studio | Web Development | Design / Methodology / Testing | Silverlight / WPF | Podcasts / Screencasts / Videos | Community / Events | Database | SharePoint | Miscellaneous | More Link Collections | Book of the Day   .NET / Visual Studio Changing log4net ...
    5 hours ago
  • Access Bulk Load data


    MSMVPS.COMAuthority Authority: 614
    We have already seen how to load individual records into an Access Table.  Sometime we require the ability to add multiple records.  We can easily adapt the way we use our Add-AccessRecord function to accommodate a bulk load scenario. Lets create a csv file with the information FirstName,LastName,DOB ...
    7 hours ago
  • My Ideal Scripting Language


    Skatterbrainz BlogAuthority Authority: 422
    I’ve sat around and been pulled into more conversations than I can count regarding what my “perfect” or “ideal” programming or scripting language would look like and how it might work.  So, I thought I’d take a stab at. It would involve some built-in enumerations for things like operating system ...
    19 hours ago
  • Disable Exchange 2007 Meeting Forward Notification


    corey gilmore's blogAuthority Authority: 108
    Nobody likes a snitch, especially a spammy one that results in more messages in your inbox. With Exchange 2007 if you forward – manually or with a rule – a calendar appointment, Exchange will tattle send the meeting organizer a notification. Your meeting was forwarded XXXXXXX has forwarded your ...
    21 hours ago
  • PowerShell script to check if an OpsMgr Agent was installed


    Rod Trent at myITforum.comAuthority Authority: 139
      PowerShell script to check if an OpsMgr Agent was installed: Stefan Strangers Weblog - Manage your IT Infrastructure : Have these servers an OpsMgr agent installed?
    21 hours ago
  • Adding and Deploying Solutions with PowerShell in SharePoint 2010


    Corey Roth - DotNetMafia.com - Tip of the DayAuthority Authority: 118
    Visual Studio 2010 makes it really easy to add and deploy solutions when you are developing, but you may eventually want to deploy those solution packages elsewhere right?  We can still use stsadm, but that is effectively considered deprecated now in favor of PowerShell.  In the past to add a solution, we used an ...
    2 days ago
  • Dew Drop – December 2, 2009


    Alvin Ashcraft's Morning DewAuthority Authority: 127
      Jump to: .NET / Visual Studio | Web Development | Design / Methodology / Testing | Silverlight / WPF | Podcasts / Screencasts / Videos | Community / Events | Database | SharePoint | Miscellaneous | More Link Collections | Book of the Day   .NET / Visual Studio Microsoft Updates ...
    2 days ago
  • How to Enter the Exchange Server 2010 Product Key for Multiple Servers


    Exchange Server ProAuthority Authority: 112
    When Exchange Server 2010 is first installed it runs as a 120 day time-limited trial.  Within that first 120 days, or preferably before you put the server into production, you must enter a product key to remove the server from trial status. For multiple servers in the organization this can be achieved using the ...
    2 days ago
  • Winners of PowerPack Challenge 2009


    Dmitry's PowerBlog: PowerShell and beyondAuthority Authority: 458
    Susan has posted the resuls of the PowerGUI scripting contest we had last month and it was so intense that we ended up with 5 winners instead of 3! So, without further ado… let me open this envelope… and announce that the winners are… Most Active Participant ($1000 Amazon certificate) – Adam Murray ...
    2 days ago
  • Using Notepad++ For PowerShell Editing


    Huddled MassesAuthority Authority: 498
    The style I use has a nice black background... A while back Thell Fowler (with a little help, and a lot of testing from me) wrote a very good PowerShell Lexer for Notepad++ 5.2 and later… it’s very thorough, has good code-folding , and full support for PowerShell 2.0 syntax highlighting. I mention this ...
    2 days ago
  • Working with STDERR in PowerShell


    TechProsaicAuthority Authority: 100
    A co-worker today asked me how he could redirect output from an external executable into a variable. Seemed easy enough, you just do this: $var = mycmd.exe He tried it and got back a $null for his trouble. Turned out, the executable was writing to the error stream (STDERR) instead of STDOUT. Now, the question came ...
    2 days ago
  • Free Windows PowerShell ebook


    SAPIEN TechnologiesAuthority Authority: 413
    With the recent release of Windows PowerShell v.2 and the immanent publication of our well regarded Windows PowerShell v.2 TFM book by Don Jones and Jeff Hicks, SAPIEN is releasing our Windows PowerShell v.1 TFM eBook as a FREE download to the public. Even though this eBook is for version 1 of PowerShell, the book ...
    3 days ago
  • Dew Drop – December 1, 2009


    Alvin Ashcraft's Morning DewAuthority Authority: 127
      Jump to: .NET / Visual Studio | Web Development | Design / Methodology / Testing | Silverlight / WPF | Podcasts / Screencasts / Videos | Community / Events | Database | SharePoint | Miscellaneous | More Link Collections | Book of the Day   .NET / Visual Studio Agile EF 4 Repositories ...
    3 days ago
  • Congratulations to the November Survey Winners


    SAPIEN TechnologiesAuthority Authority: 413
    Congratulations to the winners from our November survey: Jerry LaMonte Paul Rogers David Hoffman These gentlemen will receive a copy of our new SAPIEN Press PowerShell V2 book. Click here to find out more . Please keep your eyes peeled for the SAPIEN year-end survey with bigger and more prizes. ...
    3 days ago
  • PowerShell Advanced Functions


    Get-PowerShellAuthority Authority: 395
    A while back I posted a screencast on using the ISE for debugging . It seems like a lot of people enjoyed the video so I thought I would do another one. As a result, here is a Screencast that discusses Advanced Functions in PowerShell. I hope you find it helpful.
    4 days ago
  • Working with Access dates


    MSMVPS.COMAuthority Authority: 614
    Following on from the previous post about updating records one data type that will be a little awkward to work with is dates. If you use a US locale or any other that uses a date format of Month/Day/Year you can more or less ignore this because your standard formats work OK. If I run PS> Get-AccessData ...
    4 days ago
  • Working with Access dates


    Richard Siddaway's BlogAuthority Authority: 427
    Following on from the previous post about updating records one data type that will be a little awkward to work with is dates. If you use a US locale or any other that uses a date format of Month/Day/Year you can more or less ignore this because your standard formats work OK. If I run PS> Get-AccessData -sql ...
    4 days ago
  • Updating Access data


    MSMVPS.COMAuthority Authority: 614
    The last of of our data manipulation tasks is to update the data – we have already seen how to create, read and delete. 001 002 003 004 005 006 007 008 009 010 ...
    4 days ago
  • Updating Access data


    Richard Siddaway's BlogAuthority Authority: 427
    The last of of our data manipulation tasks is to update the data – we have already seen how to create, read and delete. 001 002 003 004 005 006 007 008 009 010 011 012 013 function   Set-AccessData   { [ CmdletBinding ( SupportsShouldProcess = $true ) ] param   (     ...
    4 days ago
  • How to Use a Specific Domain Controller in Exchange 2010 Management Shell


    Exchange Server ProAuthority Authority: 112
    In a recent post I looked at how to specify a domain controller for use in the Exchange Management Shell for Exchange Server 2007.  In this post I will demonstrate the same technique for Exchange Server 2010. Any Exchange Management Shell cmdlet will permit you to specify a domain controller using the ...
    4 days ago

Comments about Powershell

Personal attacks are NOT allowed
Please read our comment policy