Files
management-scripts/Fix-NinjaRMMData.ps1
T

9 lines
263 B
PowerShell
Raw Normal View History

2019-11-11 19:22:39 -05:00
## Stop the NinjaRMMAgent service
Stop-Service 'NinjaRMMAgent' -Force
## Delete all Ninja's cached data
Remove-Item -Path "${Env:SystemDrive}\ProgramData\NinjaRMMAgent\jsonoutput" -Recurse -Force
## Start the NinjaRMMAgent service
Start-Service 'NinjaRMMAgent'