Endpoint Protection

 View Only
  • 1.  How to uninstalla Edpoint Protection 12 on Windows 12 without password

    Posted Nov 27, 2015 04:08 PM

    Hi to all,

     

    I need to unistall SEP 12 on widows 7, whe I try to uninstall SEP requires a password.

    I' tryed to disable password request by regedit but I cant find how to.

    Following my registry tree

    SEP_tree.JPG

     

    Following SMC detail

    SEP_tree2.JPG

    How can I disable password request?

    Thanks

     



  • 2.  RE: How to uninstalla Edpoint Protection 12 on Windows 12 without password

    Posted Nov 27, 2015 04:13 PM

    You need to use Cleanwipe. Call support and request the tool or check on your download ISO under the Tools\CleanWipe directory:

    Download CleanWipe to uninstall Symantec Endpoint Protection

    http://www.symantec.com/docs/HOWTO74877



  • 3.  RE: How to uninstalla Edpoint Protection 12 on Windows 12 without password

    Posted Nov 28, 2015 02:53 AM

    Find the attach forum Chetan Savade comment

    https://www-secure.symantec.com/connect/forums/how-uninstall-sep-client-if-i-forget-uninstallation-password#comment-8991391



  • 4.  RE: How to uninstalla Edpoint Protection 12 on Windows 12 without password

    Broadcom Employee
    Posted Nov 30, 2015 09:00 AM

    Hello,

    Latest version of Cleanwipe can uninstall SEP client though password is in place. But need to call support or just create a web case & ping me the case number.

    I will make sure you will get the link to download the latest version of Cleanwipe.

    OR else share your contact details with me & I will ask our customer care team to call you. :)

     



  • 5.  RE: How to uninstalla Edpoint Protection 12 on Windows 12 without password

    Posted Nov 30, 2015 11:36 AM

    Cleanwipe will do uninstallation without the password... 



  • 6.  RE: How to uninstalla Edpoint Protection 12 on Windows 12 without password

    Broadcom Employee
    Posted Dec 23, 2015 02:07 PM

    Is there any update?

    OR

    If your query has been resolved mark this thread as a Solved with the best answer that helps you.



  • 7.  RE: How to uninstalla Edpoint Protection 12 on Windows 12 without password

    Posted Jan 22, 2016 03:06 AM

    I ended up using CleanWipe with sendkeys to automate it:

    $PSScriptRoot = ($MyInvocation.MyCommand.Path | Split-Path | Resolve-Path).ProviderPath
    $BuildName = $PSScriptRoot | Split-Path -Leaf
    
    #Start-Process -FilePath msiexec.exe -ArgumentList $arguments -Wait -PassThru
    $process = Start-Process -filepath $PSScriptRoot\CleanWipe.exe
    
    add-type -AssemblyName microsoft.VisualBasic
    add-type -AssemblyName System.Windows.Forms
    
    $app = get-process | where {$_.mainwindowtitle -like "Cleanwipe"} 
    
    $processID = 0
    
    foreach ($a in $app) {
    
            if ($a.id -gt $processID)
             {
            $processID = $a.id
        }
    
    }
    
    start-sleep -Milliseconds 500
    
    [Microsoft.VisualBasic.Interaction]::AppActivate($processID)
    [System.Windows.Forms.SendKeys]::SendWait("{ENTER}")
    [System.Windows.Forms.SendKeys]::SendWait(" ")
    [System.Windows.Forms.SendKeys]::SendWait("{ENTER}")
    [System.Windows.Forms.SendKeys]::SendWait(" ")
    [System.Windows.Forms.SendKeys]::SendWait("{TAB}")
    [System.Windows.Forms.SendKeys]::SendWait("{TAB}")
    [System.Windows.Forms.SendKeys]::SendWait("{TAB}")
    [System.Windows.Forms.SendKeys]::SendWait("{TAB}")
    [System.Windows.Forms.SendKeys]::SendWait("{ENTER}")
    [System.Windows.Forms.SendKeys]::SendWait(" ")
    [System.Windows.Forms.SendKeys]::SendWait("{TAB}")
    [System.Windows.Forms.SendKeys]::SendWait("{TAB}")
    [System.Windows.Forms.SendKeys]::SendWait("{TAB}")
    [System.Windows.Forms.SendKeys]::SendWait("{TAB}")
    [System.Windows.Forms.SendKeys]::SendWait("{ENTER}")