Skip to content

Instantly share code, notes, and snippets.

@bobfrankly
Created December 3, 2019 15:35
Show Gist options
  • Save bobfrankly/1a408568401b2cd8e6e0c01c49352ea0 to your computer and use it in GitHub Desktop.
Save bobfrankly/1a408568401b2cd8e6e0c01c49352ea0 to your computer and use it in GitHub Desktop.
Reset outlook profile
$profilePath = "HKCU:\Software\Microsoft\Office\15.0\Outlook\Profiles"
$folders = Get-ChildItem $profilePath
foreach ($folder in $folders) {
$folder | Remove-Item -force -Recurse -Confirm:$false
New-Item -path $profilePath -ItemType Folder -Name $folder.pschildname
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment