-
Notifications
You must be signed in to change notification settings - Fork 1
/
sqlshell.psd1
62 lines (62 loc) · 1.85 KB
/
sqlshell.psd1
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
@{
RootModule = 'sqlshell.psm1'
ModuleVersion = '0.1.000'
GUID = 'e9fc9e6c-4f35-4a85-9372-92df6125c6f5'
Author = 'Constantine Kokkinos'
CompanyName = 'sqlshell'
Copyright = '2017 Constantine Kokkinos'
Description = "Lightweight SQL Server querying and automation framework"
PowerShellVersion = '6.0'
FunctionsToExport = @(
'Backup-Database'
,'Connect-Instance'
,'ConvertTo-DataTable'
,'Copy-Credential'
,'Copy-Database'
,'Copy-DatabaseAssembly'
,'Copy-DatabaseMail'
,'Copy-ExtendedEvent'
,'Copy-LinkedServer'
,'Copy-Login'
,'Copy-SysDbUserObject'
,'Copy-TableData'
,'Expand-TLogResponsibly'
,'Find-Backup'
,'Find-Object'
,'Find-OrphanedFile'
,'Find-UserObject'
,'Get-BackupDevice'
,'Get-ClientProtocol'
,'Get-DefaultPath'
,'Get-LastBackup'
,'Get-LastGoodCheckDb'
,'Get-NetworkActivity'
,'Get-ServerProtocol'
,'Get-Spn'
,'Get-SqlRegistryRoot'
,'Get-TempdbUsage'
,'Invoke-SqlCmd2'
,'Read-BackupHeader'
,'Remove-DatabaseSafely'
,'Remove-Spn'
,'Repair-OrphanUser'
,'Reset-Admin'
,'Restart-SqlService'
,'Restore-Database'
,'Set-PowerPlan'
,'Set-StartupParameter'
,'Stop-Process'
,'Stop-SqlService'
,'Test-CmConnection'
,'Test-Connection'
,'Test-PowerPlan'
,'Test-Spn'
,'Write-DataTable'
)
CmdletsToExport = '*'
VariablesToExport = '*'
AliasesToExport = @()
ModuleList = @()
FileList = ''
DefaultCommandPrefix = 'Sq'
}