# Deleting Scappman

### 1.  Finish your migration process first , more info [here](https://patchmypc.com/lp/scappman-migration-to-patch-my-pc-cloud/)

Updates stopped on September 31st, and the portal will remain accessible until the end of March.

### **2. Delete all application**

**Delete all applications manually in Intune.**&#x20;

### 4. Delete the Scappman enterprise application

Settings > General > "Cancel Subscription"

Delete your Enterprise application

<figure><img src="/files/tO8XZB2wLQxXt9bsuMIF" alt=""><figcaption></figcaption></figure>

### 5. Delete Scappman folders on devices

Last step is removing all traces of Scappman on your endpoints. This is optional.

Remove %programdata%/Scappman folder

<figure><img src="/files/tJPTqqFgjWN5uScHbvMe" alt=""><figcaption></figcaption></figure>

```powershell
$path = "C:\ProgramData\Scappman"

# Check if the folder exists
if (Test-Path $path) {
    Get-ChildItem -Path $path -Directory | ForEach-Object {
        Remove-Item -Path $_.FullName -Recurse -Force
    }

    Write-Host "All subfolders in $path have been deleted."
} else {
    Write-Host "The folder $path does not exist."
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://support.scappman.com/support/deleting-scappman.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
