Month: August 2019

  • How do I recover an item after its been deleted? So long as the recoverable items purge duration has not exceeded, you can run the below command to pull e-mails. For more specific searchquery, reference Advanced Query Syntax (AQS). #type search example Search-mailbox -identity <guid> -SearchQuery ‘kind:<type>’ -SearchDumpsterOnly -TargetMailbox “<destination mailbox>”…

    + ,
  • Check Supported protocol [Net.ServicePointManager]::SecurityProtocol [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12   Change Net Frame to use TLS 1.2 Set-ItemProperty -Path ‘HKLM:\SOFTWARE\Wow6432Node\Microsoft\.NetFramework\v4.0.30319’ -Name ‘SchUseStrongCrypto’ -Value ‘1’ -Type DWord Set-ItemProperty -Path ‘HKLM:\SOFTWARE\Microsoft\.NetFramework\v4.0.30319’ -Name ‘SchUseStrongCrypto’ -Value ‘1’ -Type DWord  

    +