Power Shell

  • BitLocker Status | Recovery Key

    I had to run create a script to get the BitLocker status and the recovery key of bulk machines, and…

    Read More »
  • SCCM MBAM/BitLocker 2.5 – Part 4

    7- Install MBAM Client  In order the device could communicate with MBAM server, we need to install mbam client on each…

    Read More »
  • Invoke bitlocker key to Mbam Server Script

    First run the Initiate TPM step in Ts using this powershell command Initialize-tpm Then restart the TS and add the…

    Read More »
  • Get-WinEvent Logs Reports include Remote Machine

    In order to run this first script function, you need to save the second script along with this script with…

    Read More »
  • Disk usage information

      #get disk usage information and export it to a CSV file for trend reporting Param( [string[]]$Computername = $env:COMPUTERNAME )…

    Read More »
  • HelpDesk Support Script 2

    #IP Address Resolve-DnsName hashmat-pc | select Name,IPaddress #DNS Server (Get-DNSClientServerAddress ` -cimsession (New-CimSession -computername Client02) ` -InterfaceAlias "ethernet0" -AddressFamily IPv4).ServerAddresses…

    Read More »
  • Add/Edit User in AD

      function New-EmployeeOnboardUser { <# .SYNOPSIS This function is part of the Active Directory Account Management Automator tool. It is…

    Read More »
  • Get-EventLog Reports

    <# .Synopsis Get Event Log reports in HTML FOrmat .DESCRIPTION This script design to get the report of any type…

    Read More »
  • HelpDesk Support Script

      <# .Synopsis This is a script to gather information for Help Desk support calls .DESCRIPTION This is a basic…

    Read More »
  • Event Log HTML Report

    I created this script which create an event log report and export as html format <# .Synopsis Get Event Log…

    Read More »
Back to top button