http://www.mycloudypuzzle.com/2019/02/15/azure-exam-dp-200-implementing-an-azure-data-solution/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
VERBOSE: Validate the Rubrik token exists | |
VERBOSE: Found a Rubrik token for authentication | |
VERBOSE: Gather API Data for Export-RubrikDatabase | |
VERBOSE: Selected 1.0 API Data for Export-RubrikDatabase | |
VERBOSE: Load API data for Export-RubrikDatabase | |
VERBOSE: Description: Export MSSQL Database from Rubrik to Destination Instance. | |
VERBOSE: Build the URI | |
VERBOSE: URI = https://sxxxxbrik1xxx.xxx.xxx/api/v1/mssql/db/MssqlDatabase:::e3145ed3-0fe2-40d7-9cea-??????/export | |
VERBOSE: Build the query parameters for <null> | |
VERBOSE: URI = https://sxxxxbrik1xxx.xxx.xxx/api/v1/mssql/db/MssqlDatabase:::e3145ed3-0fe2-40d7-9cea-?????/export |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.SYNOPSIS | |
Resize an image | |
.DESCRIPTION | |
Resize an image based on a new given height or width or a single dimension and a maintain ratio flag. | |
The execution of this CmdLet creates a new file named "OriginalName_resized" and maintains the original | |
file extension | |
.PARAMETER Width | |
The new width of the image. Can be given alone with the MaintainRatio flag | |
.PARAMETER Height |
Instructions using a virtual machine. This guide was written for the CryptoAUSTRALIA Pi-hole workshop.
This is the version of the workshop if you're using a VM to run Pi-hole. If you have a physical Raspberry Pi device (or similar SBC) use these instructions.
Author: Nick Kavadias (CryptoAUSTRALIA)
Instructions using a physical Raspberry Pi (or compatible SBC). This guide was written for the CryptoAUSTRALIA Pi-hole workshop.
This is the version of the workshop if you're using a Raspberry Pi. If you want the VM version of these instructions, look here.
Author: Nick Kavadias (CryptoAUSTRALIA)
I hereby claim:
- I am nkavadias on github.
- I am nkav (https://keybase.io/nkav) on keybase.
- I have a public key ASC4f9euocTzpE8bOJUDUdQhVAwhXdnfwrfzbglE5Mu1AQo
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.SYNOPSIS | |
Export schema for a database | |
.DESCRIPTION | |
This script will export your schema definitions for tables, stored procs, triggers, functions and views to .sql files | |
.PARAMETER ServerName | |
database server instance | |
.PARAMETER DatabaseName | |
You can specify a database name to only export single DB schema | |
.PARAMETER ScriptPath |