Skip to content

Instantly share code, notes, and snippets.

@RafaelM1994
RafaelM1994 / Get-BitlockerKeys.ps1
Created December 18, 2019 01:13
Get-BitlockerKeys Full Code
<#
.SYNOPSIS
Script to retrieve all of the bitlocker keys from the computer accounts.
.DESCRIPTION
This script will a generate a csv file that contains the name of the computers
and their respectives bitlocker keys that were stored in the Active Directory.
.NOTES
Author: Rafael de Jesus Medeiros <rafael_medeiros94@hotmail.com.br>
GitHub: https://github.com/RafaelM1994/Powershell-Scripts/
Creation Date: 12/01/2019
@RafaelM1994
RafaelM1994 / Get-ClusterHealthReport.ps1
Created December 28, 2019 17:04
Get-ClusterHealthReport.ps1
<#
.SYNOPSIS
Script to Generate a Health Report.
.DESCRIPTION
This script will a generate a report of the cluster Health and its virtual machines, and then send it via email.
The information will be retrieved from the Virtual Machine Manager.
.NOTES
Author: Rafael de Jesus Medeiros <rafael_medeiros94@hotmail.com.br>
GitHub: https://github.com/RafaelM1994/Powershell-Scripts/
Creation Date: 11/09/2019
@RafaelM1994
RafaelM1994 / Get-DropboxFolder.ps1
Created February 23, 2020 00:07
Get-DropboxFolder.ps1
function Get-DropboxFolder {
[CmdletBinding()]
Param(
[string]$DropboxFolder,
[string]$OutputFolder,
[string]$FolderPath
)
$body = '{"path":"/'+$DropboxFolder+'"}'