Categorie: Windows

Managing calendar permissions on Office 365 / Exchange Online will often require you to get your hands dirty with PowerShell. The purpose of this article is to explain how to perform typical day-to-day admin tasks involving calendar permissions, using PowerShell. Before managing permissions, you need to connect to Exchange Online through PowerShell. Once connected, you […]

Meer lezen

How get Windows Photo Viewer working in Windows 10 As I mentioned above, this can be done by manually editing the Registry yourself. Follow these instructions: Regedit Go to the following Registry key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations If you do not have such a Registry key, then just create it. There you need to create a […]

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

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

Issue: Password error: unable to log on to PowerChute Network Shutdown (PCNS) or lost user name. Product: PowerChute Network Shutdown v3.X and 4.X Environment: All supported Operating Systems. Cause: Lost user name or password Solution: To change your username or password: 1. Stop the PowerChute service. 2. Go to the group1 directory where PowerChute is installed. 3. […]

Meer lezen

Start Safe Mode directly from Windows  Click the Windows-button → Power.  Hold down the shift key and click Restart.  Click the option Troubleshoot and then Advanced options. 4. Go to “Advanced options” and click Start-up Settings. 5. Under “Start-up Settings” click Restart. Various boot options are displayed. The relevant options for booting in Safe Mode are numbers, 4, 5, […]

Meer lezen

robocopy \\sourceserver\ShareName \\destinationfileserver\ShareName /e /b /copyall /PURGE /r:5 /w:5 /MT:64 /tee /log+:D:\Shares\log_ShareName_%date:~-10,2%”-“%date:~7,2%”-“%date:~-4,4%.txt /v     LET’S BREAK THAT DOWN. Robocopy Initiates the command. \\sourceserver\ShareName The first parameter is always the source location. I typically always run Robocopy from the new file server as: It will likely have a newer version of Robocopy installed; and I will […]

Meer lezen

The error message : WARNING: Unable to download from URI ‘https://go.microsoft.com/fwlink/?LinkID=627338&clcid=0x409’ to ”. WARNING: Unable to download the list of available providers. Check your internet connection. Set Powershell to accepts TLS 1.2 connections.   https://www.powershellgallery.com/packages/PSWindowsUpdate/2.1.1.2 To test this : 1. Open Powershell (As Admin) 2. [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 3. Try it again!   From now […]

Meer lezen

First you need to install the PowerShell module. # Install-Module -Name PSWindowsUpdate -Force Then check if there are windows update for your machine. # Get-WindowsUpdate Then if you want to install all the updates you can run the following command. # Get-WindowsUpdate -AcceptAll -Download -Install -MicrosoftUpdate Now you can reboot the machine with Y   […]

Meer lezen