Auteur: maikel

Step 1: $LiveCred = Get-Credential $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $LiveCred -Authentication Basic -AllowRedirection Import-PSSession $Session Step 2: Get-Mailbox -Identity * | Where-Object {$_.EmailAddresses -like ‘SMTP:support@domain.nl’} | Format-List Identity, EmailAddresses

Meer lezen

FLEXnet license errors You may encounter several types of FLEXnet error messages that indicate that you cannot check out a license. These messages are formatted in general as follows: FLEXNET License Error Number: Error text. For example: FLEXNET License Error -97-121-0: Check out failed Some of the errors that you may encounter are listed below. […]

Meer lezen

Can’t activate O365 on server, server is connected to the internet, and the internet is working correctly. Right on the taskbar there is an yellow mark on the network card. With the following command the yellow error will disappear, and you can activate office on the server. Set-NetAdapterAdvancedProperty Eth* -DisplayName “IPv4 Checksum Offload” -DisplayValue “Disabled”

Meer lezen

This is a list of the most common active directory mmc console run commands: CERTMGR.MSC Certificates snap-in CERTSRV.MSC Certification Services CMD.EXE Command Prompt COMPMGMT.MSC Computer Management DCPOL.MSC Domain Controller Security Policy DEVMGMT.MSC Device Manager DFRG.MSC Disk Defragmenter DFSGUI.MSC Distributed File System DHCPMGMT.MSC DHCP Manager DISKMGMT.MSC Disk Management DNSMGMT.MSC DNS Manager DOMAIN.MSC Active Directory Domains & […]

Meer lezen

ClamAV installeren en configureren in CentOS 7 Virtuele ServerBasisGeavanceerdAbuseCentOSBeveiliging ClamAV is een gratis, opensource-antivirusprogramma voor de detectie van onder andere trojans, virussen en malware op je VPS. In deze tutorial laten wij je zien hoe je ClamAV installeert in CentOS 7, en zorgt dat ClamAV automatisch start en je VPS dagelijks scant. ClamAV installeren Stap […]

Meer lezen

Chrony is introduced as new NTP client to replace the ntp as the default time syncing package since RHEL7, so if you configure NTP during the installation process, it just enables the chronyd service, not ntpd service. # systemctl status ntpd.service ntpd.service – Network Time Service Loaded: loaded (/usr/lib/systemd/system/ntpd.service; enabled) Active: inactive (dead) Even when […]

Meer lezen

Changing the save attachments path To change the default folder for saving attachments, you need to first edit the registry. Press the Windows key + R to open run command Type regedit and press ‘OK’ to open the Registry Editor Go to HKEY_CURRENT_USER\SOFTWARE\Microsoft\Office\16.0\Outlook\Options (please see below for the right version) Right-click on Options and create […]

Meer lezen

Registry Key to enable or disable Skype Meeting Add-in When you manually enable or disable the Skype Meeting Add-in for Microsoft Office 2016 add-in by using the COM Add-Ins dialog box (by using the steps in the “Resolution” section), the following registry data is updated: Key: HKEY_CURRENT_USER\Software\Microsoft\Office\Outlook\Addins\UcAddin.LyncAddin.1 DWORD: LoadBehavior Value: 3 = add-in is enabled, […]

Meer lezen

How to show who has access to your inbox with PowerShell.  Get-MailboxFolderPermission -Identity username@domain.nl | fl This command you will see the users that have rights to your mailbox.   or  Get-MailboxFolderPermission -Identity username@domain.nl:\”postvak in” This command you will see the users that have rights to your mailbox. or Get-MailboxFolderPermission -Identity username@domain.nl:\”inbox” This command you […]

Meer lezen

The command du “summarizes disk usage of each FILE, recursively for directories,” e.g., du -hs /path/to/directory -h is to get the numbers “human readable”, e.g. get 140M instead of 143260 (size in KBytes) -s is for summary (otherwise you’ll get not only the size of the folder but also for everything in the folder separately)

Meer lezen

When you have the problems after updating Ubuntu from 16 to 18 and try to update the Linux kernel and getting the following messages? update-initramfs -u update-initramfs: Generating /boot/initrd.img-4.15.0-62-generic W: initramfs-tools configuration sets RESUME=UUID=18e2a087-bb29-4ac0-9b80-4ca749b63730 W: but no matching swap device is available. You can change and use the new creates swap partition on your Linx […]

Meer lezen

Office365: Set account passwords to never expire $ Install-Module MSOnline $ Connect-MSOLService To list all users and see if their password expires, use this cmdlet: $ Get-MSOLUser | Select UserPrincipalName, PasswordNeverExpires Check password settings To check the PasswordNeverExpires for just one user, use this cmdlet, replacing alias with the user’s alias. $ Get-MSOLUser -UserPrincipalName alias […]

Meer lezen