Posted On March 27, 2019

Symantec Antivirus 11 Installation Notes

kimconnect 0 comments
blog.KimConnect.com >> Windows >> Symantec Antivirus 11 Installation Notes
- Endpoint protection manager is dependent on IIS, make sure that the "Default Website" "Directory Security" "IP Address and Domain Name Restrictions" are set to "Granted Access" to all. Also, authentication and access control allows "anonymous access"
- For manual reconfiguration of clients to connect to Endpoint Protection Manager, use SylinkDrop.exe and browse to the Sylink.xml file located inside of " C:\Program Files\Symantec\Symantec Endpoint Protection Manager\data\outbox\agent\{some code here}"
- 12-month subscriptions license is automatically applied - there's no need to install any licensing file

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell RandomPassword Function

function randomPassword{    # return a reasonably randomized password that starts with "KimConnect:" plus 25…

How to Setup Snom Model M9r SIP Phone with ShoreTel

Ensure that ShoreTel requirements are met Each SIP extension needs 1 IP Phone and 1…

PowerShell: Get Connected Port by Process Name

# getProcessConnectionPort.ps1 $computerlist=@' SQL1 SQL2 '@ $computernames=@($computerList -split "`n")|%{$_.Trim()} $processname='sqlservr' $state='Established' $results=@() foreach ($computername in…