Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ::Remove all Outlook Profiles for all users on a workstation
- ::Note that this does NOT remove any OST or PST files; that is by design.
- for /f %%u in ('reg query HKU') do (
- for /f %%p in ('reg query %%u\Software\Microsoft\Office\16.0\Outlook\Profiles') do (
- reg delete %%p /f
- )
- )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement