You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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?
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
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.