Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

Problem

When launching SourceTree the splash screen briefly shows and SourceTree does not open.

Cause

Known issue for SourceTree not opening after a windows update, there is no known provention.

Workaround - Manual Method

This fix needs to be applied at a per user level:

  1. Open File Explorer and Navigate to:

    %localappdata%\Atlassian

  2. Delete the folder that starts with "SourceTree.exe_" followed by a long string of letters, numbers and characters.

Workaround - Script Method

Run the following Powershell script:

$path = $env:Localappdata + '\atlassian'


$pathoutput = Get-ChildItem $path -directory -name '*exe*'
foreach ($folder in $pathoutput) {
    write-host "I found - $folder"
    Remove-Item -literalpath "$path\$folder" -Recurse -Confirm:$false -Force
    }



  • No labels