Auteur: maikel

In the intricate world of IT and system administration, understanding the nuances of server management is crucial. One question that often arises is, “Who or what has initiated a server reboot or shutdown?” To demystify this, we turn to a powerful ally: PowerShell. PowerShell is not just a tool but a lifeline for administrators, offering […]

Meer lezen

# Setting Up Static Routes on a Red Hat Server Using NMCLI Static routes are an important part of network administration. They provide instructions to servers and other network devices on how and where to route network traffic. These routes are specific and do not change unless manually altered by an administrator. In this article, […]

Meer lezen

To start a PowerShell script in PowerShell from a shortcut, follow these steps: Create a new shortcut by right-clicking on the desktop and selecting “New” > “Shortcut.” In the “Create Shortcut” window, enter the following command in the “Type the location of the item” field:      powershell.exe -ExecutionPolicy Bypass -File “Path\to\Script.ps1” Make sure to […]

Meer lezen

This quick tutorial is going to show you how to get your Linux system information in terminal with a command line utility called screenfetch. Screenfetch can display the following information: the name of your distro Linux kernel version uptime the number of installed packages on your system shell name and version screen resolution the name and version of your […]

Meer lezen

Set Root password After login to Ubuntu 20.04, Now type following command for reset/set root password. sudo passwd root Now you need to change some configuration on /etc/ssh/ssh_config for the permit root login. Configure SSH config to permit root login Edit /etc/ssh/sshd_config file with following command. vim /etc/ssh/sshd_config   As you see, the PermitRootLogin is set to No. It means […]

Meer lezen

Requirements for downgrade: Downgrade from Windows 11 to Windows 10 is subject to fulfil some requirements. Here are they: You can only downgrade to Windows 10 within the 10 days of your upgrade. For example, if you upgraded to Windows 11on 1 Sept, 2021, then you can downgrade within 10 days. If you want to […]

Meer lezen

1. Overview SSH, the secure shell, is often used to access remote Linux systems. Because we often use it to connect with computers containing important data, it’s recommended to add another security layer. Here comes the two factor authentication (2FA). What is two-factor authentication Multi-factor authentication is a method of confirming your identity using at […]

Meer lezen

Pls try with: https://support.microsoft.com/sr-latn-rs/help/2554336/how-to-manually-rebuild-performance-counters-for-windows-server-2008-64bit-or-windows-server-2008-r2-systems. It worked for me on 2012R2. Dir C:\Windows\winsxs\amd64_microsoft-windows-usbperf* –>You will see 3 folders Try installing the usbperf.ini from each folder using: “Lodctr usbperf.ini” When it is successful, you will see the following entry in the application log. Log Name: Application Source: Microsoft-Windows-LoadPerf Event ID: 1000 Level: Information Description: Performance counters for […]

Meer lezen

Voting buttons not present in received emails Exclaimer Support 4 months ago Updated Follow Relevant Product: Exclaimer Cloud – Signatures for Office 365 Scenario You are using Exclaimer Cloud, and you notice that the voting buttons are not present in received email messages. Reason Voting functionality is stored in a TNEF MAPI property. When an email message is […]

Meer lezen

Create a PowerShell script and start the update everyday in the midnight. Start Windows PowerShell ISE and copy paste:   [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 Install-PackageProvider -Name NuGet -Force Install-Module -Name PSWindowsUpdate -Force Get-WindowsUpdate -AcceptAll -Download -Install -MicrosoftUpdate -AutoReboot > “C:\Windows-Update_History.txt” wmic qfe list full /format:htable > “C:\Windows-Update_History.html”   Save this script as : windows-update.ps1   Create […]

Meer lezen

Open een internetpagina (Edge of Chrome bijvoorbeeld) op uw laptop en ga naar https://outlook.office365.com/. Meld u aan met uw Office 365 voor Bedrijven-account ( e-mailaccount gebruikersnaam@domeinnaam.nl ) Na succesvol inloggen zal het volgende venster moeten verschijnen; Kies Volgende Installeer de Microsoft Authenticator app op uw mobiele telefoon vanuit de App Store / Play Store (als deze […]

Meer lezen

A. You can change where the My Documents and My Pictures shortcuts point to by performing the following steps: Start regedit.exe. Go to HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders. Double-click Personal (for My Documents) and change the value. Double-click My Pictures and change the value. Close regedit. Log off and restart the machine for the change to take effect. […]

Meer lezen

Start > Run > Type “regedit” (without the quotes) and select from the list. Find the key:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System You might want to export this as a backup first or note down the settings if there’s already a “VerboseStatus” field. In most cases, it won’t be there yet. Right-click under that and create a New > DWORD […]

Meer lezen