Maruco
Members
-
Joined
-
Last visited
Reputation Activity
-
Maruco got a reaction from Jamie Taylor in Can't uninstal Kaspersky agent - uninstall option "disabled by policy"?Jamie's suggestion above solved my issue,
cheers
-
Maruco reacted to Jamie Taylor in Can't uninstal Kaspersky agent - uninstall option "disabled by policy"?Hey there, If in case you are not able to uninstall Kaspersky (or the action button is greyed out), then it is evident that the antivirus policy is being applied over an organization/site/Agent group level from the Pulseway WebApp->Server Admin-> configuration->Select the organization/site/agent group to which the endpoint belongs to-> Check and change to No Policy.
For function greyed out - Remove the Kaspersky Antivirus policy from the configuration tab for that system. Let us know if this works. -
So here is a script that I use and just set it up on a schedule. What it does is create a local and/or domain account with the specified user name and password. I can run it manually, on an individual system basis or through a workflow. The only minor drawback is that the password is listed in plain text. But my justification for this is that anyone internal to my organization is going to have access to this anyway. Its not visible to the client or anyone else.
# Inputs
$SetPassword = "Password Here"
$SetUserName = "User Name Here"
$group = "Administrators"
$adsi = [ADSI]"WinNT://$env:COMPUTERNAME"
$existing = $adsi.Children | where {$_.SchemaClassName -eq 'user' -and $_.Name -eq $SetUsername }
if ($existing -eq $null) {
& NET USER $SetUsername $SetPassword /add /y /expires:never
& NET LOCALGROUP $group $SetUsername /add
}
else {
$existing.SetPassword($SetPassword)
}
& WMIC USERACCOUNT WHERE "Name='$SetUsername'" SET PasswordExpires=FALSE
-
Maruco reacted to Paul in Kaspersky licenses in use on devices that are unavailable with no way of disabling them - SOLUTION!Thanks for the update Maruco. Glad to hear everything is clear now. We'll see how we can improve on the UX of the Agent Status page, I agree, this can be confusing.
-Paul
-
Maruco reacted to GregWake in ShadowProtect Monitoring not workingHi,
Hopefully a very easy answer to this one. Just getting started on Pulseway and loving it so far.
However, when I try to access StorageCraft ShadowProtect on my mobile app, it comes up with an error :-
Agent Version: 0
Value cannot be null
Parameter name: type
Any hints on how to resolve this one?
Many thanks
-
Maruco reacted to Chris in ShadowProtect Monitoring not workingHi @GregWake,
Thank you for contacting us. Is it possible that you are trying to monitor the latest version of StorageCraft ShadowProtect SPX. If yes, then Pulseway currently does not support it (the last supported version is 5.2). However, we will consider the possibility to upgrade this integration into the future release.
But in a meantime you may consider to monitor these Windows backup events using the Event log filter. In order to configure this, please open the Pulseway Manager -> Notifications -> Event Log and configure it. For more details regarding this please check the following article.