Skip to content

Instantly share code, notes, and snippets.

@michaellwest
michaellwest / BulkDataGenerator-Demo.ps1
Last active March 26, 2018 16:54
Bulk Data Generator provides a UI to generating sample data. Tested with SPE 4.3 on Sitecore 8.1.
<#
.SYNOPSIS
Bulk generates items or users using the specified criteria.
#>
$dataTypeOptions = [ordered]@{"Item" = 1; "User" = 2 }
$props = @{
Title = "Bulk Creation Tool"
Description = "Choose what type of data to generate."
OkButtonName = "Next"