-
This script will give you a nice object with ComputerName, ProductName (tested on Office and Visio), and ProductKey. Works against the local and a remote computer. You can pass an array of computer names. function Get-MSOfficeProductKey { param ( [ string []] $computerName = "." ) $product...
-
MSOffice has some addons wich can be installed extra. (For example : the calendar ActiveX Object). Is it possible to REMOTE install a MSOffice option. Is this also possible via WMI-Object ? This question can be deleted. I solve this by using loading an ADM-file.
Posted to
General
(Forum)
by
Bernard
on
07-20-2009
Filed under: remote, extra, MSOffice, installed components
-
Hi All, I am trying to run cmdlets from VB.NET. I managed to create a session to a remote session and to run either basic powershell commands or Exchange 2010 cmdlets. However I have a problem when trying to run more complex scripts, like "Get-Mailbox | Where-Object {$_.database -match "database"...
-
Hi All. The list of operations which to me need to be fulfilled in PowerShell 2.0: *************************************** 1. To receive the list of all domain groups. 2. To receive all the user logins who are a part of certain domain group. 3. To receive all computer names whish is accessible on a network...
-
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:
-
In my script I created a menu that allowed the user to restart a service on the server from within the powershell session. My idea was to use a if (condition) that showed the menu if the condition applied. I got it figured out though. I did this: if ((condition is true) -or (condition2 is true) -or ...
-
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...
-
I have a variable: $result = test-outlookconnectivity -protocol:http -trustanysslcert:$true -verbose What I want to do with it is pull any errors exceptions from the verbose output, and store them into a seperate variable so that I can use it how I want. So as an example: $error = @() $result = test...
-
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:
-
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: