Posted March 14, 20178 yr Administrators Hi, We've just published 14 new built-in scripts and more will be added soon. Please post here what scripts you'd like to see in the Pulseway automation module. -Paul
March 14, 20178 yr I just tried the script that shows the defragmentation level on a Windows 7 64b. Â It failed. The term 'Optimize-Volume' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At C:\Program Files\Pulseway\automation_2174ba8a_0411_4575_b589_d5ff035323da.ps 1:1 char:16 + Optimize-Volume <<<< $pwd.drive.name -Analyze -verbos + CategoryInfo : ObjectNotFound: (Optimize-Volume:String) [], Com mandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException 0 Exit Code
April 5, 20178 yr Can you please create a script to uninstall the agents? I would like to have it for when I am offboarding a user/company
April 5, 20178 yr Author Administrators Hi Andy, Try this PowerShell script that @Chris wrote a while ago: try { $app = Get-WmiObject -Class Win32_Product | Where-Object { $_.Name -match "Pulseway" } $app.Uninstall() Write-Host "Uninstallation completed successfully" } Catch { $ErrorMessage = $_.Exception.Message $FailedItem = $_.Exception.ItemName Write-Host "There was an error on $computername.`r`n$FailedItem`r`nMessage: $ErrorMessage" Break } -Paul
Create an account or sign in to comment