Skip to content
View ismaelw's full-sized avatar
👻
👻

Organizations

@Studio826

Block or report ismaelw

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. laratex laratex Public

    A Laravel package for creating PDF files using LaTeX

    PHP 105 13

  2. ps-documentor ps-documentor Public

    Automatic PowerShell Function Documenting

    PowerShell 15 2

  3. Parallel File copying using C# in Po... Parallel File copying using C# in PowerShell
    1
    # Preparation
    2
    $ParallelFileCopy = @'
    3
    using System;
    4
    using System.IO;
    5
    using System.Threading.Tasks;
  4. Copy large files with a progress bar Copy large files with a progress bar
    1
    function Copy-File {
    2
        <#
    3
            .SYNOPSIS
    4
                Copy a file 4 MiB at a time, and show a progress bar
    5
  5. Create and Read - Self-Encrypted Cre... Create and Read - Self-Encrypted Credentials
    1
    # VARIABLES DEFINITION
    2
    $CredPath = "C:\Scripts\Cred"
    3
    $KeyFile = "AES.key"
    4
    $PasswordFile = "PWD.txt"
    5
    $AES = "$CredPath\$KeyFile"
  6. Get Scheduled Tasks and Services run... Get Scheduled Tasks and Services running with a domain user
    1
    <#
    2
      .DESCRIPTION
    3
        Gets all Services and Scheduled Tasks from multiple devices that are running as a Domain User
    4
        This helps to identify Services or Scheduled Task that are running as a user that might be a personal user instead of a service account
    5
    #>