Quantcast
Channel: Symantec Connect - Products - Discussions
Viewing all 10025 articles
Browse latest View live

Windows 10 1803 Update Symantec must be manually uninstalled.

$
0
0
I do not need a solution (just sharing information)

This is going to be a long post.  it is to fix issues with Windows 10 1803 getting notification that Symantec must be manually uninstalled.

First you have to be at SEP Client 14.0.3 for Windows 10 1803 update of this to work. My version is 14.0.3929.1200.105 on server and most of my clients.

Script is saved as .txt and attached (I think) on this post,

Bottom of post has the text of the powershell script.

Some suggested fixes that did not work:

Cleanwipe will not resolve this issue, I tried that.

Re-installing windows also will not work unless you delete everything on the drive or format the drive during install.

Causes:

Essentially, what happened is that Symantec install is sent by a zipped package that has the executables in it.

Once you unzip the package, the executables that Windows update looks for is found in the install folder.

Windows 1803 update does not look everywhere, but will look anywhere that the system can access.

So if you are deploying with SCCM, there is an install package in ccmcache from the last install.

If you contacted support on a previous version and they sent you a 7zip exe to extract, then the exe's are somewhere else.

If you deployed using SCCM then the exe's will be in a subdirectory under the c:\windows\ccmcache directory.

If you deployed using a single exe, then it extracted somewhere and you may have the exe's there.

I called support for a script to fix this.  Got nowhere.  That is anothe story, best left out.

My Solution

I made a powershell script to find and rename the 2 executables if they are outside of Program Files or Program Files (x86)

For SCCM to be able to use this, the .ps1 probably needs to be signed.

Attached is a sample of the script.

<#
This Script is to look for any Symantec Endpoint Protection files that prevent Windows 10 Update to 1803
If a computer has any install folder for an older version these files will exist in the install folder.  Windows update checks the version.
ccsvchst.exe Version 13.3.1.14
smc.exe Version 14.0.3929.1200
Windows Update to 1803 gives error that 2 Symantecs must be uninstalled, 1 for each file.
To find the offending file names look in this folder (after the update has failed or they will not be listed.)
C:\$WINDOWS.~BT\Sources\Panther\setupact.log
Search for 'Manual uninstall required' (no tick marks.)
References:
https://www.symantec.com/connect/forums/solved-windows-10-1709-cant-update-and-clean-wipe-cant-full-remove-endpoint-protection

Point of contact, Brian VanTassel
Agency for Persons with Disabilities, Florida.

Notes:  This has to be signed to run through SCCM
Built for deployment through SCCM Task Sequence.

#>

Script renames either ccsvchst.exe Version 13.3.1.14 or smc.exe Version 14.0.3929.1200 if version is less than what is shown

In this script, change 'SomeServerName' in the line to your share path.  Create the folders for the path.  The script writes results to the file.  The results are attempted.  Depending on system rights, it may not be the case.  This indicates the steps ran, but you should test it.

$outfile="\\SomeServerName\DeployLogs\Symantec\Win10-1803RenameFix\Win10-FilesRenam_Status-Apps.txt"

This is where the accumulated log is written to.  Domain users and Domain Computers will need read and write to this share.

You will also need a share for deploy files.  This will need to be read for domain users and domain computers.

Sign the script using a code signing certificate (another story there.)

Example of results shows Computer name, path to file, version information and what was attempted:

ComputerName-10;;C:\Program Files (x86)\Symantec\Symantec Endpoint Protection\14.0.3929.1200.105\Bin\ccSvcHst.exe;13.3.1.14;Not Modified
ComputerName-10;;C:\Program Files (x86)\Symantec\Symantec Endpoint Protection\14.0.3929.1200.105\Bin\Smc.exe;14.0.3929.1200;Not Modified
ComputerName-10;;C:\Program Files (x86)\Symantec\Symantec Endpoint Protection\Smc.exe;14.0.3929.1200;Not Modified
ComputerName-10;;C:\ProgramData\Symantec\Symantec Endpoint Protection\14.0.3929.1200.105\Data\Cached Installs\Program Files\Symantec\Name\Version\Bin\ccSvcHst.exe;13.3.1.14;Not Modified
ComputerName-10;;C:\ProgramData\Symantec\Symantec Endpoint Protection\14.0.3929.1200.105\Data\Cached Installs\Program Files\Symantec\Name\Version\Bin\Smc.exe;14.0.3929.1200;Not Modified
ComputerName-10;;C:\ProgramData\Symantec\Symantec Endpoint Protection\CurrentVersion\Data\Cached Installs\Program Files\Symantec\Name\Version\Bin\ccSvcHst.exe;13.3.1.14;Not Modified
ComputerName-10;;C:\ProgramData\Symantec\Symantec Endpoint Protection\CurrentVersion\Data\Cached Installs\Program Files\Symantec\Name\Version\Bin\Smc.exe;14.0.3929.1200;Not Modified
ComputerName-10;;C:\Users\All Users\Symantec\Symantec Endpoint Protection\14.0.3929.1200.105\Data\Cached Installs\Program Files\Symantec\Name\Version\Bin\ccSvcHst.exe;13.3.1.14;Not Modified
ComputerName-10;;C:\Users\All Users\Symantec\Symantec Endpoint Protection\14.0.3929.1200.105\Data\Cached Installs\Program Files\Symantec\Name\Version\Bin\Smc.exe;14.0.3929.1200;Not Modified
ComputerName-10;;C:\Users\All Users\Symantec\Symantec Endpoint Protection\CurrentVersion\Data\Cached Installs\Program Files\Symantec\Name\Version\Bin\ccSvcHst.exe;13.3.1.14;Not Modified
ComputerName-10;;C:\Users\All Users\Symantec\Symantec Endpoint Protection\CurrentVersion\Data\Cached Installs\Program Files\Symantec\Name\Version\Bin\Smc.exe;14.0.3929.1200;Not Modified

To deploy the script in SCCM I used a Task Sequence, with 2 run command steps.

it will probably work with one step, but I copy the script to a folder I use on the computers for local install logs.

Most of my Task Sequences create this folder if it does not exist:  "C:\ProgramData\CM_Install_logs"

Copy Command line: 

cmd.exe /c copy /y "\\ServerName\Deploy File Share\Scripts\Win101803SymFileRenamFix.ps1""C:\ProgramData\CM_Install_logs"

Run powershell cmd:

cmd.exe /c PowerShell.exe -executionpolicy unrestricted -file "C:\ProgramData\CM_Install_logs\Win101803SymFileRenamFix.ps1"

Powershell Script (was named Win101803SymFileRenamFix.ps1) Start below this line

<#
This Script is to look for any Symantec Endpoint Protection files that prevent Windows 10 Update to 1803
If a computer has any install folder for an older version these files will exist in the install folder.  Windows update checks the version.
ccsvchst.exe Version 13.3.1.14
smc.exe Version 14.0.3929.1200
Windows Update to 1803 gives error that 2 Symantecs must be uninstalled, 1 for each file.
To find the offending file names look in this folder (after the update has failed or they will not be listed.)
C:\$WINDOWS.~BT\Sources\Panther\setupact.log
Search for 'Manual uninstall required' (no tick marks.)
References:
https://www.symantec.com/connect/forums/solved-windows-10-1709-cant-update-and-clean-wipe-cant-full-remove-endpoint-protection

Point of contact, Brian VanTassel
Agency for Persons with Disabilities, Florida.

Notes:  This has to be signed to run through SCCM
Built for deployment through SCCM Task Sequence.

#>
$outfile="\\SomeServerName\DeployLogs\Symantec\Win10-1803RenameFix\Win10-FilesRenam_Status-Apps.txt"

#$env:COMPUTERNAME
#Get-Childitem –Path C:\ -Include ccsvchst.exe,smc.exe -File -Recurse –force -ErrorAction SilentlyContinue | Select *
#$Paths2Files = Get-Childitem –Path "C:\" -Include ccsvchst.exe,smc.exe -File -Recurse –force -ErrorAction SilentlyContinue | Select name,Fullname
$Paths2Files = Get-Childitem –Path "C:\" -Include ccsvchst.exe,smc.exe -File -Recurse -ErrorAction SilentlyContinue | Select name,Fullname
foreach ($file in $Paths2Files){

$VersionInfo = (Get-Item $file.fullname).VersionInfo
    $FileVersion = ("{0}.{1}.{2}.{3}" -f $VersionInfo.FileMajorPart,
    $VersionInfo.FileMinorPart,
    $VersionInfo.FileBuildPart,
    $VersionInfo.FilePrivatePart)

#Write-Host $file.fullname $fileversion

If ($file.fullname -like "*Program Files*\Symantec\Symantec Endpoint Protection*") {$action="ProgramFiles Not Modified"}
ElseIf ($file.name -eq "ccsvchst.exe") {
If ($FileVersion -lt "13.3.1.14") {$action="renamed"
Rename-Item -Path $file.fullname -NewName "ccsvchst.ex_"}
ElseIf ($FileVersion -eq "13.3.1.14") {$action="Not Modified"}
}

ElseIf ($file.name -eq "smc.exe") {
If ($FileVersion -lt "14.0.3929.1200") {$action="renamed"
Rename-Item -Path $file.fullname -NewName "smc.ex_"}
ElseIf ($FileVersion -eq "14.0.3929.1200") {$action="Not Modified"}
}

Write-Host $file.fullname $fileversion $action
$out2file=$env:COMPUTERNAME+";"+$date+";"+$file.fullname+";"+$fileversion+";"+$action
$out2file | out-file -filepath $outfile -append
}

# SIGNATURE BLOCK WAS HERE
# End signature block WAS HERE

End of script above this line

    0

    Symantec Endpoint Protection Manager 12.1 cert number

    $
    0
    0
    I need a solution

    Hi All,

    I encounter this issue My current Symantec Endpoint Protection Manager 12.1 Version is Expiring soon.

    from my understanding is i just need to open up the console login and if i have a new license key i just 

    input and click on activate.

    I was inform by my reseller that they required the cert number to do a renew.

    Anyone have experience or know how can i retrive the cert number by command line

    or any sample how does it look like?

    Appreciate if anyone can advise

    Thanks

    Regards

    Jing

    0

    Traffic Blocked Notification: MSLLDP.Sys

    $
    0
    0
    I need a solution

    I keep getting a windows notification that "Traffic has been blocked from this application: MS Link-Layer Discovery Protocol Driver (mslldp.sys)."

    I have a user-defined exception for C:\Windows\System32\drivers\mslldp.sys, but that hasn't done anything. 

    I followed http://www.symantec.com/docs/TECH203497, and even with the "Allow All" rule at the top, I get the notification.  

    What's the next step to isolate?

     

    14.0MP2 build 2415 on Windows 10 1709

    0

    Trigger the "Suspicious Behavior Detection"

    $
    0
    0
    I need a solution

    Hello support, 

    Question

    ++++++++

    1. "Test 1" 

    We can test SONAR using socar.exe (https://support.symantec.com/en_US/article.TECH216...) and it works fine 

       but 

    2. "Test 2" 

    We want to test only the "SuspiciousBehaviorDetection" feature (https://support.symantec.com/en_US/article.HOWTO12...), SONAR is Off/Not enabled. 

    How to do it? 

    We know  "SuspiciousBehaviorDetection" feature workings are proprietary but how we can check the feature is working. 

    Searched the symantec KBs etc (https://www.symantec.com/connect/forums/how-calcul...) but there is no detailed info about it. 

    Thank you. 

    0

    Client loopback address 127.0.0.1 - Allowed?

    $
    0
    0
    I do not need a solution (just sharing information)

    Hi,

    Is the loopback address 127.0.0.1 always allowed?

    If not, what rule would I use?

    If the client address is x.y.z.a then a connection to itself via x.y.z.a I would assume needs to be explicitly allowed.

    Is this correct?

    Thanks for any help

    0

    How To "Internal Error" in Help > Troubleshooting > Connection Status

    $
    0
    0
    I need a solution

    How To "Internal Error" in Help > Troubleshooting > Connection Status

    0

    Sync Now grayed out

    $
    0
    0
    I need a solution

    My SEPM is not reflecting the changes that I made in AD. I checked the server properties to make sure they are set correctly and all my Directory servers are listed and if I try to manually sync it, the sync now is grayed out. I am running SEPM 140.1(14.0 RU1) build 3752(14.0.3752.1000)

    0

    Lsass.exe is stuck waiting in Symantec Drivers

    $
    0
    0
    I need a solution

    HI team,

    All our environment servers were not accessible post regular updates from Symantec server.

    For resolution we only have to restart the server. and after every update issue reoccurs on srver.Post anaylsys from Azure memory dump it shows below error

    "

    Lsass threads are stuck waiting in Symanted drivers

    0: kd> !mex.t ffffe0001ec11080

    Process                      Thread           CID       UserTime KernelTime ContextSwitches Wait Reason         Time State

    lsass.exe (ffffe00011b2b900) ffffe0001ec11080 2a0.16b0      31ms         0s              69 WrPushLock  1h:26:59.468 Waiting"

    As for now we have uninstall Symantec from all the servers as it was causing downtime. Request to please help us with guidance what is the above error and how we can resolve it.

    Regards,

    RIzwan

    0

    How to Desactivate File transfer with Bluetooth with ADC SEP 14

    $
    0
    0
    I need a solution

    Please, I would like to allow Bluetooth devices on a windows 10 computer for audio/video services, etc. but I want to desactivate File Transfer using bluetooth.

    How this can be done using Symantec Application and Devices Control. Please provide step by step solution. Regards
     

    0

    Client install package forces reboot before installation

    $
    0
    0
    I need a solution

    I have recently updated SEPM to 14.0.1 (14.0 RU1 MP2) build 3929 (14.0.3929.1200) 

    Now when I build an installer (exe) for windows servers and try to install, it will force reboot the server within a matter of secounds. I have double checked the install feature set and confirmed the no reboot option is selected as well as the client container set for no reboot. This is only happening with servers, the workstations are fine and in fact do not reboot. The only difference is the server policy and feature set has no firewall. 

    Is this an issue with the build version? before the upgrade I was able to install the agent and the client (servers) would not reboot. I actually still have the installer of the old version and confirm this version will not force a reboot. 

    This happens on server 2008 and 2012

    0
    1526314396

    SEP Upgrade but DB Type is ASA

    $
    0
    0
    I need a solution

    Hi, We are currently running SEP12 RU6MP6. We want to upgrade to SEP14 RU1MP2. Upon checking the details of the DB, we have noticed that the Database type is Adaptive Server Anywhere (ASA) and not Embedded (SQL Anywhere).

    To do the upgrade, is it the normal process or is there a special way to upgrade the ASA? Will the normal upgrade method update the DB schema and still keeps the DB type as ASA, or it will change it to Embedded (SQL Anywhere)?

    Thanks in advaced for the responses,

    MabundaG

    0
    1526324032

    SEPM not finding updated content from internal liveupdate server

    $
    0
    0
    I need a solution

    I am experiancing an issue where our test SEP environement where the SEPMs are not pulling content down from our internal liveupdate server.

    This used to be working fine however in the past few months any attempt at initiating a liveupdate results in the following messages:

    "no updates fround for......"

    "LUALL.EXE Finished. There were no new contnet updates. Return code = 1"

    "Liveupdate Succeeded"

    we connect to our internal liveupdate serve via a proxy, and i have confirmed that connectivity exists between the SEPMs and Proxy server as well as proxy server to the internal liveupdate server.

    In our Production environment Liveupdate DOES pull down content fron the same internal liveupdate server successfully, and the same proxy is also used. So im not sure why its working in our prduction environment but not the test environemnt.

    Any advice or suggestions on what may be going on here would be much appreciated!

    Thanks. 

    0

    SEP 14.0: virus quarantined, but missing details?

    $
    0
    0
    I need a solution

    Hi all, 

    SEPM reported an alert yesterday, and both the alert email itself, plus the Details view from within Monitors > Risk, show nothing about the path of this file.  It was picked up via a Scheduled Scan based on file signature hash - a 2 year old variant too so not fancy - and shows up as (without the quotes) "> >support.exe"..  I realize a Scheduled Scan could have found something only in memory and not on disk, perhaps that's why it shows no file path, but I'm surprised SEP doesn't say someting like "in memory" or something. 

    I do plan to upgrade SEPM to 14.1 pretty soon but generally speaking, file-based detections in the past have always shown me the file path too.  

    What's up with that moneky business? 

    For what it's worth, the alert email indicates Quarantined: 1, and Deleted: 1.  Yet, Monitors > Risk inside SEPM only shows Quarantine and no mention of Deleted.  SEP on the client side has no files in it's Quarantine.  

    No action was taken by me (the only admin) to delete the file from Quanrtine if that helps.  Also, the user was SYSTEM when I view the alert details so maybe it Deleted it after Quarantining it, based on some criteria I don't understand? 

    0

    SEPM not finding updated content from internal liveupdate server

    $
    0
    0
    I need a solution

    I am experiancing an issue where our test SEP environement where the SEPMs are not pulling content down from our internal liveupdate server.

    This used to be working fine however in the past few months any attempt at initiating a liveupdate results in the following messages:

    "no updates fround for......"

    "LUALL.EXE Finished. There were no new contnet updates. Return code = 1"

    "Liveupdate Succeeded"

    we connect to our internal liveupdate serve via a proxy, and i have confirmed that connectivity exists between the SEPMs and Proxy server as well as proxy server to the internal liveupdate server.

    In our Production environment Liveupdate DOES pull down content fron the same internal liveupdate server successfully, and the same proxy is also used. So im not sure why its working in our prduction environment but not the test environemnt.

    Any advice or suggestions on what may be going on here would be much appreciated!

    Thanks. 

    0

    Migrating SEPM to a VM

    $
    0
    0
    I need a solution

    Just wondering if there are any good articles on Migrating SEPM to a VM.

    Currently hosting on a physical Svr2008 system, and want to migrate to a VM running Svr 2016 - what do I need to be aware of?

    Many thanks

    0

    SEPM 14 and VC++ Redistributable

    $
    0
    0
    I need a solution

    Hello,

    I'm looking for documentation saying what exact versions of VC++ is required for SEPM. Any clue where I can find this? 

    0

    Problem with Symantec during updating Windows 10

    $
    0
    0
    I need a solution

    Hi all! When I was udpating Windows 10 ( to 1709 or 1803 ver), I got massege " Symantec Endpoint Protection is not compatible with Win 10". I had to uninstall it. Why does this happen and how to force it work =) Thank you! 

    0

    Bandwidth Calculation For Replication Deployment in EP ver 14.x

    $
    0
    0
    I need a solution

    Hi every one,

    I plan to deploy 2 SEPM in two city and replication with each orther. Each SEPM will manage  275 Endpoint. They replicate log, policy ...

    I was read the article : https://support.symantec.com/en_US/article.TECH201290.html

    But i can understand it :( . Is there any orther article guide how to calculate bandwidth for replication between two SEPM, between SEPM and SEP ??

    I need to calculate before deployment.

    Many thanks,

    Quang

    0

    Duplicate client entry in SEPM.

    $
    0
    0
    I need a solution

    Duplicate client entry in SEPM. SEP client installed machine is physical machine and is not re-imaged. 

    Everytime when there is stop and start of Symantec service, new client entry with new hardware id is happening. 

    Sometime even without stop and start of service,  new client entry with new hardware id is happening. 

    Can someone help me with a solution or work around other that Delete offline client in Edit domain properties. 

    0

    cant set exception type

    $
    0
    0
    I do not need a solution (just sharing information)

    When I try to add a file or folder exception in SEP 14 I can only select Application control as the scan type - I need to add an exclude for all scans for some folders related to Windows 10 Feature Updates and cant set the exclude type. This is the first change I have tried to make since SEP 12 policies were migrated to sep 14. 

    0
    Viewing all 10025 articles
    Browse latest View live


    <script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>