Categorie: Linux

Step 1: Install Apache webserver Since Nexcloud will run on a web browser, the first step will be to install the Apache webserver. To achieve this, first update the system, # sudo apt update -y Next, to install Apache execute the command # sudo apt install apache2 libapache2-mod-php Once installed, verify the status of Apache  […]

Meer lezen

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

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

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

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

In corporate segment one of the advantages of BitLocker Drive Encryption technology is the ability to store the Bitlocker recovery keys for encrypted drives in the Active Directory Domain Services (AD DS). BitLocker recovery key is a 48 and/or 256-bit sequence, which is generated during BitLocker installation. When number of the computers in company network […]

Meer lezen

Backing up ESXi host configuration data ESXi Command Line To synchronize the configuration changed with persistent storage, run this command: vim-cmd hostsvc/firmware/sync_config To backup the configuration data for an ESXi host, run this command: vim-cmd hostsvc/firmware/backup_config Note: The command should output a URL in which a web browser may be used to download the file. […]

Meer lezen

A. To get a list of the running services enter the command net start (you can add > \[filename\] to the end to make it output to a file,i.e. net start > services.lst). You can then try to shutdown each ofthem by entering the command net stop “<service name>” ,e.g. netstop “spooler”. Some services will […]

Meer lezen

1 maak GPO aan 2 Link deze aan users OU waar de users in staan. 3 GPO: user configuration, preferences, windows settings, files. 4 maak een share aan waar alle servers bij kunnen. \\192.168.10.200\share\Normal.dotm ( voorbeeld ) 5 Source files:  \\192.168.10.200\share\Normal.dotm ( voorbeeld ) 6 Destination File: %userprofile%\AppData\Roaming\Microsoft\Templates\Normal.dotm ( voorbeeld ) 7 ga naar item […]

Meer lezen