vote up 1 vote down star
1

I've a PS script which I use to keep track of my VMWare ESX servers. I need to run it as a service so that I'm not permanently logged on. Unfortunately, the script runs more slowly if I use a runspace inside a service rather than just running the script through the powershell console. It's taking 2-5 minutes to make calls to the VMWare web service instead of a second or so.

Is there some sort of magic I should be using when I invoke the runspace?

flag
I think you need to include more information: • How are you running the script as a service (e.g., custom code, commonly used tool, etc)? • Have you tried simpler scripts and do they slow down (e.g., leave out the web service call)? • Have you tried running the script in a PowerShell console running under the same credentials as the service? – totorocat Jul 10 at 22:08
The script in question runs equally slowly whether it runs in a service using its usual service account, or if I run as myself in a very basic console app (create runspace, add script, execute). So authentication (probably) isn't an issue. I haven't tried running other random scripts - that seems like a good idea. – owenevans00 Jul 12 at 1:36

2 Answers

vote up 0 vote down

Does the service authenticate as a user with the same rights you do? I suspect something is timing out when it runs as the service, which you don't see when you run the script yourself.

link|flag
vote up 0 vote down

You can run the script as a scheduled task.

link|flag
I could - but since it needs to run continously (it's a performance monitoring tool), I will put that in my back pocket as a last-resort evil hack. – owenevans00 Jul 12 at 1:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.