April 2018

Exchange MoveRequest – REALLY FAST, ignore „stalled due to disk latency“

If you want to ignore Exchange stalling on your moverequest slow source/destination servers: Get-MailboxDatabase „ex2013-db01“ | Get-Mailbox | select -first 5 | New-MoveRequest -TargetDatabase ex2016-db01 -BatchName gna -Priority Highest Monitor with: get-moverequest | get-moverequeststatistics When they’re all Completed, cleanup get-moverequest | remove-moverequest Then repeat from step 1.  

Exchange MoveRequest – REALLY FAST, ignore „stalled due to disk latency“ Read More »

Example Netplan dual stack network configuration for Ubuntu 18.04

(08-15 example) srv01 ~ # cat /etc/netplan/01-netcfg.yaml # This file describes the network interfaces available on your system # For more information, see netplan(5). network: version: 2 renderer: networkd ethernets: ens160: addresses: [1.2.3.4/30, „2a02:708:xx:xx::2/64“] gateway4: 1.2.3.4 gateway6: 2a02:708:xx:xx::1 nameservers: addresses: [8.8.8.8, „2001:4860:4860::8888“] ens192: addresses: [192.168.0.10/24] to apply the settings, use netplan apply to list your

Example Netplan dual stack network configuration for Ubuntu 18.04 Read More »

Nach oben scrollen