• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer
ControlUp Community

ControlUp Community

Connect, Learn, and Grow

  • Blog
  • Podcast
  • Meetups
  • Archives
  • Categories
    • ControlUp One Platform
    • ControlUp for Apps
    • ControlUp for Compliance
    • ControlUp for Desktops
    • ControlUp Scripts & Triggers
    • ControlUp Synthetic Monitoring
    • ControlUp for VDI
  • Topics
  • Events
    • Logos & Wallpaper
    • ControlUp.com
  • Join

How to Script Force Reset VM in ControlUp

Posted on December 30, 2024

A user asked if it is possible to script the Force Reset VM action in ControlUp. Another user shared a code snippet that uses the Invoke-CUAction and Invoke-CUQuery commands to reset the VM name that is passed through arguments. This can be found at https://support.controlup.com/docs/invoke-cuaction


Read the entire ‘How to Script Force Reset VM in ControlUp’ thread below:

Is there a way to script the Force Reset VM action? Sending a reboot action via CU agent (currently used via scripting) doesn’t work when the computer is unresponsive.


you can using invoke-cuaction @member did you ever make that sba for reset vm? https://support.controlup.com/docs/invoke-cuaction


“`$monPath = ((Get-ItemProperty "HKLM:\SYSTEM\CurrentControlSet\Services\cuMonitor").imagepath).replace("\cuMonitor.exe",$null).replace(‘"’,$null)

get-Item "$monPath\powershell.dll"|import-module

$VMName = $args[0]

try {

get-cufolders | out-null

}

catch

{

if($_.exception.message.contains("not running properly"))

{

write-host "resetting monitor service"

restart-service -name cumonitor

start-sleep -seconds 60

}

}

$action = Get-CUAvailableActions -ActionId ‘CACAEFD6-696F-4D76-89A0-0820941BAD48’ ##reset

$creds = Get-CUCredentials -User ‘cuMonitor’

$computers = Invoke-CUQuery -Scheme main -table VMs -Fields ‘sName’ -where "sName = ‘$vmname’"

foreach($computer in $computers.Data)

{

Invoke-CUAction -ActionId ‘CACAEFD6-696F-4D76-89A0-0820941BAD48’ -Table ‘VMs’ -RecordsGuids $computer.key

}“`

It assumes the VM name is passed via arguments


Thanks!!

Continue reading and comment on the thread ‘How to Script Force Reset VM in ControlUp’.  Not a member? Join Here!


Categories: All Archives, ControlUp Scripts & Triggers
Topics: ControlUp Agent, PowerShell, Scripts

Ask Us Anything, Connect, Learn, and Grow with the ControlUp Community!

Login to the ControlUp Community to ask us anything, stay up-to-date on what’s new and coming soon and meet other like-minded techies like you.

Not already a member? Join Today!

Primary Sidebar

ControlUp Academy

Enroll in ControlUp Academy for expert-led technical training, equipping you with skills to effectively deploy, manage, and grow your ControlUp investment.

Learn here >

Rotating Images

Hidden Gem from our Community on Slack!

ControlUp Betas - What's Coming Next?
NEW ControlUp Features - Stay Up-to-Date!
ControlUp Scripts - Scripting, Zero to Hero
Latest KB Articles - Be the First to Learn
Did you Know - with Sivan Kroitoru
Practical Perspectives Technical Use Case Training

Video Tutorials Library

Visit our technical how-to videos, offering step-by-step tutorials on advanced features, troubleshooting, and best practices.

Watch here >

ControlUp Blog

Check out the ControlUp blog for expert advice and in-depth analysis.

Read here >

ControlUp Script Library

Visit the ControlUp technical script library, which offers a multitude of pre-built scripts and custom actions for your monitoring and troubleshooting requirements.

See here >

ControlUp Support

Visit the ControlUp support home and to delve deeper into ControlUp solutions.

Browse here >

Download ControlUp RealTime DX

Start with ControlUp for real-time end-user environment insights, swift troubleshooting, and unprecedented performance optimization. Download now.

Download here >

Footer

      

ControlUp Community
Of Techie, By Techie, For Techie!

Terms of Use | Privacy Policy | Security
Dive Deeper, Learn more at ControlUp.com

  • facebook
  • twitter
  • youtube
  • linkedin

© 2023–2025 ControlUp Technologies LTD, All Rights Reserved.

We use cookies to ensure that we give you the best experience on our website. by continuing to use this site you agree to our Cookie policy..