Skip to content
View andrewtchilds's full-sized avatar

Block or report andrewtchilds

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 Loading

  1. PSSpark PSSpark Public

    PowerShell module for Cisco Spark

    PowerShell 2 1

  2. PoshBot.Spark.Backend PoshBot.Spark.Backend Public

    A very rough Cisco Spark backend for PoshBot

    PowerShell 1

  3. PSIssueTrak PSIssueTrak Public

    PowerShell

  4. Repairs the MpsSvc service registry ... Repairs the MpsSvc service registry key permissions... if they're missing
    1
    $keyPath = "SYSTEM\CurrentControlSet\Services\MpsSvc\Parameters\AppCs"
    2
    $permissionCheck = [Microsoft.Win32.RegistryKeyPermissionCheck]::ReadWriteSubTree
    3
    $registryRights = [System.Security.AccessControl.RegistryRights]::ChangePermissions
    4
    $key = [Microsoft.Win32.Registry]::LocalMachine.OpenSubKey($keyPath,$permissionCheck,$registryRights)
    5
    $acl = $key.GetAccessControl()