usb receiver missing mouse driver – KB4074588

If your standard usb mouse it detected as “usb receiver”, with a warning signe saying that where is no mathing drivers for the device.

 

try to check it you have this update installed: KB4074588

it you have, remove this update and disable windows update (for now) and then reboot

unplug the mouse and inset in again, now it should work

source: https://www.bleepingcomputer.com/forums/t/671179/recent-windows-10-update-breaks-usb-mouse-and-keyboard-on-dell-3040/

Hide users from Global Address List with adsync enabled

https://gertkjerslev.com/howto-sync-msexchhidefromaddresslists-attribute-office-365

https://blog.cloudadmin.me/2018/05/27/hide-user-global-address-list-using-aadsync-azure-active-directory-connect/

Set-ADUser paulie -Replace @{msExchHideFromAddressLists=$false}

$Cred = Get-Credential

$s = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell -Credential $cred -Authentication Basic -AllowRedirection
Import-PSSession $s

get-Mailbox -Identity test@domain.com | fl HiddenFromAddressListsEnabled

Exchange 2010 Catch-all address

1. Download Catchall Agent (here)
2. Create dir and copy file to “C:\Program Files\Microsoft\Exchange Server\V14\TransportRoles\agents\catchall”
3. Edit config.xml

<config>
  <domain name="mydomain.com" address="catch-all@mydomain.com" />
</config>

4. run powershell script

install-transportagent -Name "CatchAll Agent" -TransportAgentFactory:CatchAll.CatchAllFactory -AssemblyPath:"C:\Program Files\Microsoft\Exchange Server\V14\TransportRoles\agents\catchall\CatchAllAgent.dll"

5. run powershell

get-TransportAgent

Get-TransportAgent
6. Change priority so that it is over “Recipient Filter Agent” (I use Priority 3)

set-transportagent "CatchAll Agent" -Priority:3

7. Enable transportagent

enable-transportagent “CatchAll Agent”

8. Create the mailbox catch-all@ address.

Now it should work from outside, you can test it with sending a email to nonexistenemail@mydomain.com
, it should then apper in catch-all mailbox

 

Work from inside your orginasition:

Get-AcceptedDomain | fl domainname, *type*

Set-AcceptedDomain ntd-offshore.com -DomainType InternalRelay

New-SendConnector -Name “Internal Relay” -Custom -AddressSpaces mydomain.com -SmartHosts mysmarthost.com -SourceTransportServers sbs.domain.local

 

 

Sourcelist:
http://chrismullen.co.uk/setup-a-catchall-transport-agent-on-exchange-20072010-servers/
http://catchallagent.codeplex.com/discussions/62204
http://exchangeserverpro.com/how-to-share-an-email-domain-between-two-mail-systems/