The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Powershell doesn't work in bamboo

Some Guy
May 9, 2018

Hello,

 

I have a powershell script that i tried on a with windows powershell console and it works, but when copied to bamboo it gives me an error: 

You cannot call a method on a null-valued expression.
 

This is the script i'm trying:

 

$command = "taskkill /F /IM myExe.exe"
$process = [WMICLASS]"\\10.1.0.2\ROOT\CIMV2:win32_process"
$result = $process.Create($command) 

 

ip and exe name are just examples.

 

I think the problem may come from  [WMICLASS] ?

 

any ideas?

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Answer accepted
robhit
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
May 9, 2018

Hi,

I suspect these two commands are not getting any value to the variables:

$command = "taskkill /F /IM myExe.exe"
$process = [WMICLASS]"\\10.1.0.2\ROOT\CIMV2:win32_process"

Check what user is used to run the Bamboo or the Bamboo service and try to use that same user to execute these commands in PowerShell.

You could also try to echo the value of the variable before using it with the create method.

Thanks,

Robhit

Some Guy
May 14, 2018

Ok it worked, i tested once with the admin user and it didn't work event after restarting the service. After a while gave it another try and it worked... I have no idea why it works now tho

TAGS
AUG Leaders

Atlassian Community Events