May 26

How to recovery dismissed email reminders or follow ups

Sort answer you can’t not.

But you can rebuild it

Go to outlook app->click view->click To-Do Bar->choose Tasks->

Right click the bar as show in the picture ->Click view settings ->click columns…->

Choose all mail fields and add modified as shown in the picture, click OK.

Click modified in the tasks bar (this will sort all the items that have been changed by the date)

All the modified or changed items are listed by date. Please click them and manually rebuild them.

August 14

How to Download and install new Teams for a single computer

To install new Teams on a single computer with many users, follow these steps:

  1. Download the .exe installer. If you have downloaded this file previously confirm you have the latest version by comparing the properties on each file.
  2. Open the Command Prompt as an Admin.
  3. At the prompt enter: .\teamsbootstrapper.exe -p
  4. A success or fail status displays.

command line prompt feedback

Here is the original link from Microsoft.

August 14

How to fix can’t sign into office 365 desktop apps on Windows 10?

Please try the following:

Fully exit out any Office 365 APPs first.

  1.  Log off word account and log back in
  2.  Remove all the office 365 apps credentials in Windows Credentials

If all failed, please try:

close all office apps

Go to the AAD identity folder in :  C:\Users<Username>\AppData\Local\Packages\Microsoft.AAD.BrokerPlugin_cw5n1h2txyewy\Settings

Rename Settings.dat to settings.datold

Go to  C:\Users<Username>\AppData\Local\Packages\Microsoft.AAD.BrokerPlugin_cw5n1h2txyewy\AC\TokenBroker\

Rename folder Accounts to accounts-old

August 14

Adobe Acrobat Slow to Save

 Try the following:

  • Adobe Acrobat>Edit>Preferences>Security(Enhanced)>Disable “protected View” Disable all the security check box 

  • Go to Edit>Preferences>General>Uncheck show online storage when opening files and >Uncheck show online storage

  • Launch Acrobat>click Edit>Preferences>Documents>uncheck the box next to Save As optimizes for Fast Web View>OK

August 22

How to use Powershell to Export All Distribution Groups and Members to CSV

Create a temp fold at c:\ called c:\temp and run the following script


$Groups = Get-DistributionGroup
$Groups | ForEach-Object {
$group = $_.Name
$members = ''
Get-DistributionGroupMember $group | ForEach-Object {
        If($members) {
              $members=$members + ";" + $_.Name
           } Else {
              $members=$_.Name
           }
  }
New-Object -TypeName PSObject -Property @{
      GroupName = $group
      Members = $members
     }
} | Export-CSV "C:\temp\Distribution-Group-and-Members.csv" -NoTypeInformation -Encoding UTF8