Close Menu
Peter Klapwijk – In The Cloud 24-7Peter Klapwijk – In The Cloud 24-7
    Facebook X (Twitter) Instagram
    Peter Klapwijk – In The Cloud 24-7Peter Klapwijk – In The Cloud 24-7
    • Home
    • Intune
    • Windows
      • Modern Workplace
    • macOS
    • Android
    • iOS
    • Automation
      • Logic Apps
      • Intune Monitoring
      • GitHub
    • Security
      • Passwordless
      • Security
    • Speaking
    • About me
    Peter Klapwijk – In The Cloud 24-7Peter Klapwijk – In The Cloud 24-7
    Home»Intune»Set default Start Menu with Microsoft Intune
    Intune

    Set default Start Menu with Microsoft Intune

    Peter KlapwijkBy Peter KlapwijkJune 5, 2019Updated:October 8, 2021457 Mins Read

    In Windows 10 the Start Menu layout looks horrible to me after the first sign-in to a new Windows 10 device. That`s not only the case with a Windows 10 Home edition, but even when using Windows 10 Pro or Enterprise.

    Ok, that finally changes in the latest Windows 10 1903 build, only showing the Office app, Edge and the Microsoft Store app by default. But still as an admin you maybe want to add some common used tiles to the Start menu to make the life of the end-user a little easier. Or you`re not already deploying 1903 and need to provide your users a more clean Start Menu.

    With Microsoft Intune we can use a policy to set a customized Start Menu for our users, but because this is not a preference the user isn`t able to customize the Start Menu itself. I don`t prefer this option of blocking the user to configure his own Start Menu.
    Another option is to define a default Start Menu which is only used to create the default Start Menu for the end-user at first logon, with the user still able to customize the Start Menu to his needs.

    Such a default Start Menu can be set by using the PowerShell commands Export-StartLayout and Import-StartLayout. The layout configuration file which we get by running the Export command, can also be placed (manually) in the Default user profile. No matter which of these two options we choose to import the default Start Menu, a default Start Menu needs to by applied before the end-user first logs on to the device.

    With the general availability of the Enrollment Status Page as part of Windows AutoPilot, we have the option to apply policies and software packages in the device setup stage before the end-user is logged on for the first time. As we are able to package (PowerShell) scripts in a WIN32 package, which can be deployed during ESP, that`s the easiest way to set our default start menu in my opinion.
    The steps involved in this configuration are:

    • Create and export a default Start Menu
    • Create a PowerShell script
    • Wrap the script and export in a WIN32 package
    • Deploy the WIN32 package with Microsoft Intune
    • Configure the Enrollment Status Page

    Create and export a default Start Menu

    The first thing we need to do is creating a Start Menu which we like to deploy to our Windows 10 devices. When finished customizing the Start Menu, we need to export the Start Menu with the Export-StartLayout command: Export-StartLayout -Path .\LayoutModification.xml -UseDesktopApplicationID
    Have a look at the Microsoft docs for information about the Export command.

    To prevent issues with pinned tiles I have used the switch -UseDesktopApplicationID

    The export we get is in a XML format and contains a configuration like below. My file contains a few lines for Office ProPlus application tiles and two browsers.

    Besides setting a default start menu, you can also add a section to the XML file to control the shortcuts on the taskbar. You can use the same DesktopApplicationIDs for this. More on that is found on Microsoft Docs.

    Create a PowerShell script

    To import the XML file we can use a one-line PowerShell command as you can read in the docs:
    Import-StartLayout -LayoutPath “Layout.xml” -MountPath “C:\”

    In our PowerShell script this looks likes:
    Import-StartLayout -LayoutPath “$PSScriptRoot\LayoutModification.xml” -MountPath $env:SystemDrive\

    Where I use $PSScriptRoot for the location where the script and XML are (temporary) stored.

    An example script is provided below. It might be a bit overkill in your environment, as it contains a section for error handling. It also contains a part to run the script in the right context, which I got from fellow MVP Peter van der Woude. And it writes the result in the registry which I use in Intune to detect if the script runs successfully.

    #Run PS in x64 context on x64 platform
    If ($ENV:PROCESSOR_ARCHITEW6432 -eq "AMD64") {
        Try {
            &"$ENV:WINDIR\SysNative\WindowsPowershell\v1.0\PowerShell.exe" -File $PSCOMMANDPATH
        }
        Catch {
            Throw "Failed to start $PSCOMMANDPATH"
        }
        Exit
    }
    
    Function CleanUpAndExit() {
        Param(
            [Parameter(Mandatory=$True)][String]$ErrorLevel
        )
    
        # Write results to registry for Intune Detection
        $Key = "HKEY_LOCAL_MACHINE\Software\InTheCloud247\StartMenu\v1.0"
        $NOW = Get-Date -Format "yyyyMMdd-hhmmss"
    
        If ($ErrorLevel -eq "0") {
            [microsoft.win32.registry]::SetValue($Key, "Success", $NOW)
        } else {
            [microsoft.win32.registry]::SetValue($Key, "Failure", $NOW)
            [microsoft.win32.registry]::SetValue($Key, "Error Code", $Errorlevel)
        }
        
        # Exit Script with the specified ErrorLevel
        EXIT $ErrorLevel
    }
    
    
    # Set the initial Windows 10 Start Menu Layout
    $Error.Clear()
    Import-StartLayout -LayoutPath "$PSScriptRoot\LayoutModification.xml" -MountPath $env:SystemDrive\
    If ($Error.Count -gt 0) {
    
        CleanUpAndExit -ErrorLevel 101
    } else {
    
    }
    
    CleanUpAndExit -ErrorLevel 0

    Create the WIN32 package

    Now that we have our XML file and PowerShell script, it needs to be wrapped to a WIN32 package which we can deploy using Intune.

    The tool which we need to wrap the script can be downloaded from GitHub where you can also find instructions how to use it.

    Make sure the XML file and PowerShell script are saved in the same folder, without any other files.

    • Start PowerShell as admin and start IntuneWinAppUtil.exe.
    • Enter the location of the files as source folder.
    • Enter the name of the PowerShell script as setup file.
    • Enter an output folder.
    • Choose N to not specify a catalog folder

    The output is an intunewin file which is a container file containing our XML and PS script which we deploy with Intune.

    Deploy the WIN32 package with Intune

    Next step is to deploy the WIN32 package with Microsoft Intune.

    • Sign-in to the Endpoint Manager admin center
    • Browse to Apps – Windows
    • Click Add
    • Choose Windows app (WIN32)
    • Click Select
    • Click Select app package file
    • Browse to the intunewin file and select the file
    • Click OK
    • Enter a Name
    • Enter a Description
    • Enter the Publisher name
    • Enter all other information (Optional)
    • Click Next
    • Enter the install command: PowerShell.exe -NoProfile -ExecutionPolicy Bypass -file .\DefaultStartmenu.ps1
    • Enter the uninstall command (we don`t have an uninstall option, so I filled in the same command)
    • Leave everything as default
    • Click Next
    • On the Requirements tab make your choices
    • Click Next
    • Choose Manually configure detection rule on the Detection rules tab
    • Click Add
    • Choose Registry as Rule type
    • Enter the key path which is set by the script
    • Enter the Value name
    • Choose Value exists As detection method
    • Click OK
    • Click Next

    Make sure to assign the application as required to a device group.

    Configure the Enrollment Status Page

    I assume the Enrollment Status Page is already enabled for your (test) users and we only need to add the Default Start Menu app as required app during the enrollment. If you require all apps to be installed during enrollment, you can skip this step.

    1. Browse to Devices – Windows
    2. Click Windows Enrollment
    3. Click Enrollment Status Page
    4. Click the Enrollment Profile
    5. Click Properties
    6. Click Edit next to Settings
    7. Click Select apps
    8. Check the Default Start Menu app
    9. Click Select
    10. Click Review + save – Click Save

    End-User experience

    When everything is set, turn on a Windows 10 device which is registered as AutoPilot device in Intune.
    Authenticate with a user which is targeted by the Enrollment Status Page.

    During the second stage, the Device setup stage, device targeted applications are installed. During this stage the Default Start Menu application is installed and the LayoutModification.xml file is copied in the default user profile. This all happens before the end-user profile is created.

    When the deployment is finished and the user is logged on for the first time to the device, the user is presented a nice and clean Start Menu. As you can see, the user is still able to (un)pin tiles.

    Interested in configuring the Windows 11 start menu? Also read this article.

    Thank you for reading this article. Feel free to contact me when you have questions or comments. You can do that by leaving a comment below or send me an email.

    Autopilot Azure AD EMS Intune MEM Microsoft 365 Microsoft Endpoint Manager Windows10
    Share. Facebook Twitter LinkedIn Email WhatsApp
    Peter Klapwijk
    • Website
    • X (Twitter)
    • LinkedIn

    Peter is a Security (Intune) MVP since 2020 and is working as Modern Workplace Engineer at Wortell in The Netherlands. He has more than 15 years of experience in IT, with a strong focus on Microsoft technologies like Microsoft Intune, Windows, and (low-code) automation.

    Related Posts

    Windows Autopilot: You`re about to be signed out

    September 13, 2019

    Setup a Windows 10 Multi App Kiosk device with Microsoft Intune

    August 6, 2019

    Configure Windows 10 power settings using Microsoft Intune

    July 4, 2019
    View 45 Comments

    45 Comments

    1. Rkast on June 9, 2019 07:59

      I just did the same last week. Works like a charm. I used Michael Niehaus single MSI file Autopilot branding project in github (i presume you also know that article).
      PS. What are your findings and experience with the builtin StartMenu Lay-out policy in Intune? I think its a jok, many times it does not work, sometimes only on new profiles and pinning non installes applications is not possible.

      Reply
      • Peter Klapwijk on June 10, 2019 21:55

        I never used the Start Menu policy in a production environment. Until now haven’t done a project at which it was a requirement to lock the Start Menu.

        Reply
    2. Jes Verdugo on October 22, 2019 21:29

      I must be missing something. In advanced installer, when I go into Resources > Files and Folder > Windows Volume > Windows > I dont see a users folder.
      Please Advise

      Reply
      • Peter Klapwijk on October 30, 2019 11:30

        You can just create the folder structure by adding the (new) folders.

        Reply
    3. Mike on March 19, 2020 05:01

      Application Shortcut folder and all the rest is grayed out

      Reply
      • Peter Klapwijk on May 25, 2020 14:15

        Just right-click on the folder Windows Volume and choose New folder. Aftert creating the first folder (Users) the folder isn`t greyed out any more and you can create the complete folder structure.

        Reply
        • Mike on May 29, 2020 01:57

          Hi Peter
          Think you misunderstanding me. In Install Parameters once I change Application folder everything else gets greyed out and I cant get it back or enter anything. Please advice.

          Reply
          • Peter Klapwijk on May 30, 2020 06:56

            It seems the function of creating a MSI is removed and because of that also the options under Install parameter. Which is not really strange as the express version was intended to create msix/appx files.

            We can achieve the same with a Powershell script and wrap it as win32 app and deploy that file with Intune.
            As soon I have time, I re-write the post with that information.

            Reply
    4. Sascha on April 19, 2020 15:27

      The File is being copied to the the default users location. But its not being applied.

      Reply
      • Peter Klapwijk on April 25, 2020 09:41

        As we change the default startmenu, this setup only applies to users which sign-in for the first time on a device. Is that the case in your situation?

        Reply
    5. L on May 23, 2020 14:57

      Anyone else have luck with the install parameters? Mine is greyed out also

      Reply
    6. Jeremy on July 16, 2020 15:45

      The above did not work for me, for some reason.

      I was able to create the start menu and exported it to LayoutModification.xml I then package it to MSI and made it a required app on ESP before users are allowed to log in.

      When the first user logs in I see the “LayoutModification.xml” in Windows Volume\Users\Default\AppData\Local\Microsoft\Windows\Shell

      But when the first user logs in for me the start menu doesnt seem to be customised based on LayoutModification.xml.

      I then log out and log in as another user and the second user that logs in has the customised start menu.

      Can you please advise if I have missed anything or do you know what might have caused this issue?

      Your help is much appreciated.

      Reply
      • Peter Klapwijk on July 17, 2020 14:44

        Did you assign it to a security group with users or devices? Make sure to assign it to a group with devices.
        And try to deploy it was win32 app, which is preferred since we have that option GA.

        Reply
        • Jeremy on July 19, 2020 02:50

          Thanks for responding.

          I can confirm that the security group is all devices and I tried via win32 app deployment and made it a Required App via the Enrolment status page.

          The weird thing is even though it is a required app on ESP. I noticed that it will install straight away after the use has logged into the machine.

          Do you know why this might be?

          Reply
          • Kevin on August 13, 2020 19:57

            Hello,
            I have the same issue. It’s working but not for the first logged user.
            It’s deployed on a device group, and all apps are required on ESP.
            It’s also a win32 app.

            Any hints?
            Thanks,

            Reply
            • Peter Klapwijk on September 27, 2020 10:11

              Sorry for the late response.

              Have a look at the article again, as I did an update to show you how this can be done more easily in these days by using a Powershell script and win32 package.

    7. Rainer Pollmann on September 27, 2020 15:53

      Powershell Script will NOT work because
      $ENV:PROCESSOR_ARCHITEW6432 is WRONG, has to be $ENV:PROCESSOR_ARCHITECTURE

      Reply
      • Peter Klapwijk on September 28, 2020 09:15

        Maybe you can outline why it wouldn`t work in your opinion. Works fine in our environment.

        Regards,

        Peter

        Reply
      • Chris on March 29, 2022 02:43

        You my friend, are a genius. This worked for me importing a taskbar (not start menu) layout with xml file using Import-StartLayout command during Autopilot enrollment, then a new user logs in and its there (win 11). The 64 bit command was required. I used

        if (“$env:PROCESSOR_ARCHITEW6432” -ne “ARM64”)
        {
        if (Test-Path “$($env:WINDIR)\SysNative\WindowsPowerShell\v1.0\powershell.exe”)
        {
        & “$($env:WINDIR)\SysNative\WindowsPowerShell\v1.0\powershell.exe” -ExecutionPolicy bypass -NoProfile -File “$PSCommandPath”
        Exit $lastexitcode
        }
        }

        Reply
    8. Michael Hardy on October 2, 2020 00:04

      So this can only be applied before the user logs in the first time? What about changing it after users have been using the PC for a while?

      Reply
      • Peter Klapwijk on October 2, 2020 15:15

        Yes, that`s correct.
        You can upload a start menu layout in a Device restrictions policy. The downside is the end-user isn`t able to change his start menu.

        Reply
        • Michael Hardy on October 3, 2020 01:55

          Yes I have done that but it is hit and miss, does not apply the way it should for all users. Some tiles have no pictures for some users. Also when you change or add stuff it takes ages to apply and again never applies for some.

          Reply
    9. hat-cat on October 23, 2020 22:39

      I ran into an error when using the script, something wrong with the registry key. I found a typo in the snippet in this line:

      $Key = “HKEY_LOCAL_MACHINE\Software$StoreResults”

      I changed it to
      $Key = “HKEY_LOCAL_MACHINE\Software\$StoreResults”

      Then the script would run properly.

      Reply
      • Peter Klapwijk on October 24, 2020 08:32

        Thanks, but I don`t see the typo and I didn`t change anything yet 🙂

        Reply
        • Md Syukri Salleh on December 3, 2020 16:15

          there is “\” between software and dollar sign. but i tried but seems the first logged in user will not receive this start menu

          Reply
          • Peter Klapwijk on February 19, 2021 20:36

            Wow, that`s pretty strange!
            In the WordPress editor it shows fine, even when I open the actual page (when I`m signed in to WordPress). As soon as I open another page or sign out form WordPress, the the back slash is missing.

            Reply
    10. scott hudson on February 2, 2021 15:16

      Hi, im completely new to intune and working my way throguh some basic deployments, I have a previous startmenu which i took from our GPO’s here and deployed it intune/device restrictions policy, which is fine for us as we are a school and dont want users changing altering things. Quesiton i have is how do i remove all the default admin folders in the start menu. Windows Administrative tools, Windows ease of access, Windows powershell, windows system.? It maybe something im overlooking but i cant seem to find a way of removing these items. Thnaks and great Site full of useful information.

      Reply
      • Clive Foster on February 18, 2021 20:29

        I have the same issue. Did you find a solution ?

        Reply
        • ChrisRyder on November 3, 2021 23:35

          Hi Clive/Scott,
          It is in preview at the moment, but you can now find out the Intune equivalent settings of the GPO you use to help with moving away from Group Policy.

          Within the Intune/MEM admin center, do to Devices > Policy Section. You will see ‘Group Policy Analytics’.

          To use, you export one of you GPO’s and save as an XML file. You then import this into the Analytics page. It will tell you what can be ported over and where that Intune setting is.

          Hope that helps

          Reply
    11. Matthew Gustke on February 10, 2021 23:15

      Getting this error when I run the script on my PC:
      MethodInvocationException: C:\temp\startmenu\startmenu.ps1:22
      Line |
      22 | [microsoft.win32.registry]::SetValue($Key, “Success”, $NOW)
      | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      | Exception calling “SetValue” with “3” argument(s): “The parameter is incorrect.”

      Reply
      • Marius Amundsen on February 16, 2021 15:56

        Works fine here. Could it be related to the missing backslash that was mentioned in hat-cats post above?

        Reply
        • Peter Klapwijk on February 19, 2021 20:37

          Must be the back slash, which is for some reason missing (but it isn`t in the Editor.
          I now removed the variable and set the regkey to a static one. Give that a try and let me know if it works now.

          Regards,

          Peter

          Reply
    12. Mitchell on March 12, 2021 20:39

      Just letting you know when trying the script in its current form, the double quotation at the end of this string breaks the script – $Key = “HKEY_LOCAL_MACHINE\Software\InTheCloud247\StartMenu\v1.0″”

      Should be: $Key = “HKEY_LOCAL_MACHINE\Software\InTheCloud247\StartMenu\v1.0”

      Reply
      • Peter Klapwijk on March 13, 2021 20:32

        Thanks Mitchell, I changed it.

        Reply
        • Mitchell on March 29, 2021 21:26

          As i didn’t mention it before, thank you for this helpful guide and script!

          Reply
    13. Guus van Berge on April 9, 2021 16:36

      Hi Peter,

      Thanks a lot for this. I prefer this method as well. The only flaw I cannot seem to find the solution for is that if a user unpins one of the icons on the taskbar, after a reboot it reappears..any thoughts?

      Regards, Guus

      Reply
      • Peter Klapwijk on April 9, 2021 19:06

        Hi Guus,

        I’ve no idea. Haven’t seen any article or something that describes such a solution.

        Reply
    14. Jason on April 13, 2021 00:05

      It seems to be getting stuck on the detection rule as it stops at Apps 3 of 6 in Device Setup. If I click Continue Anyway however it proceeds to install correctly.

      Reply
    15. miguel rodriguez on April 18, 2021 17:16

      This is all about the StartLayout, not the startmenu btw.
      The startmenu is not changed in any way by using the methods in this article.

      Reply
    16. Pratik on June 1, 2021 02:44

      Partial Start layout could be good fit to balance Org specific start layout with user enabled customisation.

      Please do not include XML Prologs like in the Start layout XML file when applying exported layout from Intune, it will not be applied.
      https://docs.microsoft.com/en-us/windows/configuration/customize-windows-10-start-screens-by-using-mobile-device-management

      Reply
    17. Leonard G. on October 1, 2021 22:06

      Thought I’d post this in case others run into this. I followed the steps but still it does not work. The difference is that I edit the taskbar pinned apps as well and was sure I had it correct. I ended up looking for other ways and I ended up using a device restriction policy to get it working from https://nathanblasac.com/deploy-a-custom-start-layout-configuration-policy-via-intune-windows-10-1809-a4ed72875c08. While users cannot edit the start menu from the apps you specify in the xml, it does give flexibility to still allow them to pin/remove their choice apps from the Start and task bar.

      Reply
    18. dj56 on October 29, 2021 20:47

      I just copied the script from above, saved it and the XML to a folder I created C:\Test. When I run the script I get this error: Import-StartLayout : Cannot find path ‘C:\Users\Delete\Desktop\Test\LayoutModification.xml’ because it does not exist.
      What am I missing that is causing the error?
      Thanks

      Reply
      • Peter Klapwijk on October 30, 2021 13:50

        The location of the XML isn’t correct. Variable $PSScriptRoot is used, which is the location where the script is run from.
        You can change that to your needs, to a hard-coded path, or another variable.

        Reply
        • Darren on October 16, 2023 20:33

          Hi Peter,

          Thanks for the solid assistance in building out our Intune environments. What are your solutions for Edge Assets in these pinlists (if you have any).

          Appreciate your help,
          Darren

          Reply
    19. Raimundas on March 25, 2025 17:19

      it is not applying for me, in registry i see success, but start menu no imported.

      Reply
    Leave A Reply Cancel Reply

    Peter Klapwijk

    Hi! Welcome to my blog post.
    I hope you enjoy reading my articles.

    Hit the About Me button to get in contact with me or leave a comment.

    Awards
    Sponsor
    Latest Posts

    Hard drive and partitions are not shown while installing Windows

    October 14, 2025

    Intune compliance for Windows 365 Cloud PCs

    September 12, 2025

    Intune connector for Active Directory configuration error

    August 29, 2025

    Deploy Microsoft Defender updates in deployment rings

    July 4, 2025
    follow me
    • Twitter 4.8K
    • LinkedIn 6.1K
    • YouTube
    • Bluesky 1.5K
    Tags
    Administrative Templates Android Automation Autopilot Azure Azure AD Browser Conditional Access Edge EMS Exchange Online Feitian FIDO2 Flow Google Chrome Graph Graph API Identity Management Intune Intune Monitoring iOS KIOSK Logic Apps macOS MEM MEMMonitoring Microsoft 365 Microsoft Defender Microsoft Edge Microsoft Endpoint Manager Modern Workplace Office 365 OneDrive for Business Outlook Passwordless PowerApps Power Automate Security SharePoint Online Windows Windows 10 Windows10 Windows 11 Windows Autopilot Windows Update
    Awards
    Sponsor
    Follow me on Twitter
    Tweets by inthecloud_247
    Tags
    Administrative Templates Android Automation Autopilot Azure Azure AD Browser Conditional Access Edge EMS Exchange Online Feitian FIDO2 Flow Google Chrome Graph Graph API Identity Management Intune Intune Monitoring iOS KIOSK Logic Apps macOS MEM MEMMonitoring Microsoft 365 Microsoft Defender Microsoft Edge Microsoft Endpoint Manager Modern Workplace Office 365 OneDrive for Business Outlook Passwordless PowerApps Power Automate Security SharePoint Online Windows Windows 10 Windows10 Windows 11 Windows Autopilot Windows Update
    Archives
    Peter Klapwijk

    Hi! Welcome to my blog post.
    I hope you enjoy reading my articles.

    Hit the About Me button to get in contact with me or leave a comment.

    Copy right

    This information is provided “AS IS” with no warranties, confers no rights and is not supported by the authors, or In The Cloud 24-7.

     

    Copyright © 2025 by In The Cloud 24-7/ Peter Klapwijk. All rights reserved, No part of the information on this web site may be reproduced or posted in any form or by any means without the prior written permission of the publisher.

    Shorthand; Don’t pass off my work as yours, it’s not nice.

    Recent Comments
    • Luis on Application installation issues; Download pending
    • AndrewWak on Issues syncing SharePoint Online libraries with OneDrive for Mac
    • Peter Klapwijk on Deploy Microsoft Defender updates in deployment rings
    • Magnus on Deploy Microsoft Defender updates in deployment rings
    • Gertjan Jongeneel on Add an Azure AD group to the local administrators group with Microsoft Intune
    most popular

    Application installation issues; Download pending

    October 1, 2024

    How to change the Windows 11 language with Intune

    November 11, 2022

    Restrict which users can logon into a Windows 10 device with Microsoft Intune

    April 11, 2020

    How I solved a strange Kerberos issue

    December 12, 2024
    Recent Comments
    • Luis on Application installation issues; Download pending
    • AndrewWak on Issues syncing SharePoint Online libraries with OneDrive for Mac
    • Peter Klapwijk on Deploy Microsoft Defender updates in deployment rings
    • Magnus on Deploy Microsoft Defender updates in deployment rings
    • Gertjan Jongeneel on Add an Azure AD group to the local administrators group with Microsoft Intune
    Copy right

    This information is provided “AS IS” with no warranties, confers no rights and is not supported by the authors, or In The Cloud 24-7.

    Copyright © 2023 by In The Cloud 24-7/ Peter Klapwijk. All rights reserved. No part of the information on this web site may be reproduced or posted in any form or by any means without the prior written permission of the publisher.

    Shorthand: Don’t pass off my work as yours, it’s not nice.

    Peter Klapwijk – In The Cloud 24-7
    X (Twitter) LinkedIn YouTube RSS Bluesky
    © 2025 ThemeSphere. Designed by ThemeSphere.

    Type above and press Enter to search. Press Esc to cancel.

    Manage Cookie Consent
    To provide the best experiences, we use technologies like cookies to store and/or access device information. Consenting to these technologies will allow us to process data such as browsing behavior or unique IDs on this site. Not consenting or withdrawing consent, may adversely affect certain features and functions.
    Functional Always active
    The technical storage or access is strictly necessary for the legitimate purpose of enabling the use of a specific service explicitly requested by the subscriber or user, or for the sole purpose of carrying out the transmission of a communication over an electronic communications network.
    Preferences
    The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user.
    Statistics
    The technical storage or access that is used exclusively for statistical purposes. The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you.
    Marketing
    The technical storage or access is required to create user profiles to send advertising, or to track the user on a website or across several websites for similar marketing purposes.
    Manage options Manage services Manage {vendor_count} vendors Read more about these purposes
    View preferences
    {title} {title} {title}