-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRobOtters.psd1
More file actions
28 lines (28 loc) · 943 Bytes
/
RobOtters.psd1
File metadata and controls
28 lines (28 loc) · 943 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
@{
RootModule = 'RobOtters.psm1'
ModuleVersion = '0.5.0'
GUID = 'a1b2c3d4-e5f6-7890-abcd-ef1234567890'
Author = 'jagger'
Description = 'Secret Server user activity simulator for lab environments'
PowerShellVersion = '5.1'
RequiredModules = @('PSSQLite')
FunctionsToExport = @(
'Initialize-RODatabase'
'Add-ROUser'
'Remove-ROUser'
'Get-ROUser'
'Set-ROUser'
'Start-ROCycle'
'Get-ROActionLog'
'Get-ROConfig'
'Set-ROConfig'
'Test-ROConnection'
'Get-ROAccess'
'Export-ROConfig'
'Import-ROConfig'
)
CmdletsToExport = @()
VariablesToExport = @()
AliasesToExport = @()
PrivateData = @{ PSData = @{ LicenseUri = 'https://github.com/jagger/SSSimulatedUsers/blob/main/LICENSE'; ProjectUri = 'https://github.com/jagger/SSSimulatedUsers' } }
}