zettelkasten/OneNoteExport/Kommunikationstechnologie/EXchange-Scripte/16_PAM Mapi löschen.md
Ralf Koop 5a108aa2b4 .
2023-08-25 23:29:11 +02:00

114 lines
2.9 KiB
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

PAM Mapi löschen
Mittwoch, 1. August 2018
15:58
 
Remove-Item \"HKCU:\\Software\\Microsoft\\Office\\14.0\\Outlook\\Profiles\\eprof_MAPI_BKKMAIL002\" -Recurse -Force
Remove-Item \"HKCU:\\Software\\Microsoft\\Office\\14.0\\Outlook\\Profiles\\eprof_MAPI_BKKMAIL001\" -Recurse -Force
Remove-Item \"HKCU:\\Software\\Microsoft\\Office\\14.0\\Outlook\\Profiles\\eprof_MAPI_BKKMAIL010\" -Recurse -Force
Remove-Item \"HKCU:\\Software\\Microsoft\\Office\\14.0\\Outlook\\Profiles\\eprof_MAPI_BKKMSX001\" -Recurse -Force
Remove-Item \"HKCU:\\Software\\Microsoft\\Office\\14.0\\Outlook\\Profiles\\eprof_MAPI_BKKMSX002\" -Recurse -Force
Remove-Item \"HKCU:\\Software\\Microsoft\\Office\\14.0\\Outlook\\Profiles\\eprof_MAPI_BKKMSX003\" -Recurse -Force
Remove-Item \"HKCU:\\Software\\Microsoft\\Office\\14.0\\Outlook\\Profiles\\eprof_MAPI_BKKMSX004\" -Recurse -Force
Remove-Item \"HKCU:\\Software\\Microsoft\\Office\\14.0\\Outlook\\Profiles\\journal\" -Recurse -Force
Remove-Item \"HKCU:\\Software\\Microsoft\\Office\\14.0\\Outlook\\Profiles\\prof_BKKMAIL002\" -Recurse -Force
Remove-Item \"HKCU:\\Software\\Microsoft\\Office\\14.0\\Outlook\\Profiles\\prof_BKKMAIL001\" -Recurse -Force
Remove-Item \"HKCU:\\Software\\Microsoft\\Office\\14.0\\Outlook\\Profiles\\prof_BKKMAIL010\" -Recurse -Force
Remove-Item \"HKCU:\\Software\\Microsoft\\Office\\14.0\\Outlook\\Profiles\\prof_BKKMSX001\" -Recurse -Force
Remove-Item \"HKCU:\\Software\\Microsoft\\Office\\14.0\\Outlook\\Profiles\\prof_BKKMSX002\" -Recurse -Force
Remove-Item \"HKCU:\\Software\\Microsoft\\Office\\14.0\\Outlook\\Profiles\\prof_BKKMSX003\" -Recurse -Force
Remove-Item \"HKCU:\\Software\\Microsoft\\Office\\14.0\\Outlook\\Profiles\\prof_BKKMSX004\" -Recurse -Force
Remove-Item \"HKCU:\\Software\\Microsoft\\Office\\14.0\\Outlook\\Profiles\\prof_BKKVMAIL002\" -Recurse -Force
 
reg.exe delete \"HKCU\\Software\\Microsoft\\Office\\14.0\\Outlook\\Profiles\\eprof_MAPI_BKKMAIL002\" /f
reg.exe delete \"HKCU\\Software\\Microsoft\\Office\\14.0\\Outlook\\Profiles\\eprof_MAPI_BKKMAIL001\" /f
 
 
 
 
 
 
 
 
 
 
reg.exe copy \"HKCU\\Software\\Microsoft\\Office\\15.0\\Outlook\\Profiles\\pamadmin2016\" \"HKCU\\Software\\Microsoft\\Office\\15.0\\Outlook\\Profiles\\rko\" /s
 
 
 
 
 
reg.exe copy HKCU:\\Software\\Microsoft\\Office\\14.0\\Outlook\\Profiles\\pamadmin2016 HKCU:\\Software\\Microsoft\\Office\\14.0\\Outlook\\Profiles\\rko /s
 
Aus \<<https://stackoverflow.com/questions/21223283/recursively-copying-registry-subtree-where-some-subkey-names-contain-slashes>\>
 
 
 
 
 
Aus \<<https://community.spiceworks.com/topic/2087325-powershell-to-delete-outlook-profiles>\>
 
 
 
 
\$reg=\"HKCU:\\Software\\Microsoft\\Office\\15.0\\Outlook\\Profiles\"
 
New-Item -Name \"outlook\" -Path \$reg -Force -Verbose
 
Aus \<<https://superuser.com/questions/1141519/configuring-outlook-with-powershell>\>