Skip to content
View ThoZed's full-sized avatar
💐
💐
  • [Luxembourg|Germany]

Block or report ThoZed

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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. graylog-cp-watchguard graylog-cp-watchguard Public

    Graylog Content Pack for Watchguard Fireware Logging

    38 13

  2. script_pool script_pool Public

    collection of sane or insane scripts

    PowerShell

  3. ProxPatch ProxPatch Public

    Shell 1 1

  4. msExchange_list_MobileDeviceStatistics msExchange_list_MobileDeviceStatistics
    1
    #
    2
    # PSSnapin Load
    3
    if ( (Get-PSSnapin -Name Microsoft.Exchange.Management.PowerShell.E2010 -ErrorAction SilentlyContinue) -eq $null )
    4
    {
    5
        Add-PsSnapin Microsoft.Exchange.Management.PowerShell.E2010
  5. heketi remove all volumes heketi remove all volumes
    1
    #!/bin/bash
    2
    for vol in $(heketi-cli volume list | awk '{print $1}' | cut -d':' -f2)
    3
    do
    4
    heketi-cli volume delete $vol
    5
    done