Skip to content
View Ayrnio's full-sized avatar
Block or Report

Block or report Ayrnio

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. AutoAutodiscover AutoAutodiscover Public

    Hosts File/Registry Modification PowerShell Scripts for AutoDiscover

    PowerShell 6

  2. mm-pro-1 mm-pro-1 Public

    GitHub Pages

  3. mm-z-pro-1 mm-z-pro-1 Public

    GitHub Pages

  4. OutlookSetup OutlookSetup Public

    A script to autoconfigure Outlook to provide a smoother and more seamless end-user experience in migration scenarios.

    Batchfile

  5. RandomAwesome RandomAwesome Public

    A WordPress plugin that creates a link to yourwebsite.com/awesome that, when evoked, will serve up a random post on your site.

    PHP

  6. Hosts File/Registry Modification Scr... Hosts File/Registry Modification Scripts for AutoDiscover (Add Entry)
    1
    #Script to mod local autodiscover lookup in Outlook via https://ayrne.io
    2
    # Give local cache and hosts file DNS entries priority
    3
        $regPath = "HKLM:\SYSTEM\CurrentControlSet\Services\Tcpip\ServiceProvider"
    4
        New-ItemProperty -Path $regPath -Name HostsPriority -propertyType DWORD -Value 3 -force | Out-Null
    5
        New-ItemProperty -Path $regPath -Name LocalPriority -propertyType DWORD -Value 4 -force | Out-Null