Browse Forum Posts by Tags

Showing related tags and posts for the PowerShell for Exchange forum. See all tags in the site
  • Show a menu based on multiple variables!

    I'm writing a script in powershell. What I want to have happen, is to have a menu to restart a service appear based on an error being detected on the server. Say a service is not running, or outlook does not pass a connectivity test, I want the script to use both variables in determining to show...
    Posted to PowerShell for Exchange (Forum) by jwhite on 02-14-2012
    Filed under: InvokeCommand, remoting, Exchange, script block, remote, powershell, exchange 2010, Powershell command:
  • Add event logs to a transcript!

    I added the transcript option to my script. Using the start-transcript. What I want is to have event logs to be added into the transcrpt. I know you can use get-eventlog -logname application... But I want to add specific logged events into the transcript. Like, start-transcript -append eventlogs, something...
    Posted to PowerShell for Exchange (Forum) by jwhite on 02-15-2012
    Filed under: remoting, Exchange, script block, powershell, exchange 2010, Powershell command:
  • Re: Add event logs to a transcript!

    Yes so I added the -append switch to the start-transcript. Also did a >> with get-eventlog so it would append that info to the info in the transcript. Problem is that it's throwing the error "unable to access the file as another person or process is all ready using it". So how would...
    Posted to PowerShell for Exchange (Forum) by jwhite on 02-20-2012
    Filed under: remoting, Exchange, script block, remote, powershell, exchange 2010, Powershell command:
  • Re: Add event logs to a transcript!

    Ok so I was doing some further digging and realized that when a file in in use by start-transcript, that file appears to become locked from use by any other cmdlets. So what I did was this: start-transcript output file is C:\transcript.txt Run cmdlet, run test stop-transcript get-eventlog >> C...
    Posted to PowerShell for Exchange (Forum) by jwhite on 02-28-2012
    Filed under: InvokeCommand, remoting, Exchange, script block, powershell, exchange 2010, Powershell command:
  • How do I use Invoke-Command correctly?

    Im trying to run the command test-outlookconnectivity -protocol:tcp or http -trustanysslcert:$true. I'm wanting to run it on a remote machine as if I were on the machine, and have the output returned to the screen of the local machine. As stated in this article: http://technet.microsoft.com/en-us...
    Posted to PowerShell for Exchange (Forum) by jwhite on 03-07-2012
    Filed under: InvokeCommand, remoting, Exchange, script block, remote, powershell, exchange 2010, Powershell command:
  • Re: How do I use Invoke-Command correctly?

    Ok I got the command to work, turns outs that when you use -connectionuri you have to specify http://fqdn of the server/powershell when running a remote powershell command. However I have a new challenge. I have two variables: $domainid and $server. $domainid has the fqdn suffix of the server, like company...
    Posted to PowerShell for Exchange (Forum) by jwhite on 03-08-2012
    Filed under: InvokeCommand, remoting, ImportPSSession, script block, remote, powershell, exchange 2010, Powershell command:
  • How would I use get-itemproperty remotely?

    I have a foreach loop. And what I want to do is get a reg key value from each server in that loop. I have something like this: $serverlist = get-exchangeserver blah blah foreach ($server in $serverlist){ get-itemproperty -path "hklm:\..\.." } However im returning the value for only the computer...
    Posted to PowerShell for Exchange (Forum) by jwhite on 08-08-2012
    Filed under: remoting, script block, remote, powershell, exchange 2010, Powershell command:
Page 1 of 1 (7 items)
Copyright 2012 PowerShell.com. All rights reserved.