-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStratoHiDriveUtils.psd1
More file actions
29 lines (26 loc) · 917 Bytes
/
Copy pathStratoHiDriveUtils.psd1
File metadata and controls
29 lines (26 loc) · 917 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
29
@{
RootModule = 'StratoHiDriveUtils.psm1'
ModuleVersion = '1.1.3'
GUID = '3f7a9868-f796-4d67-8f86-b77767531bb4'
Author = 'DonGrobione'
CompanyName = 'Independent'
Copyright = '(c) 2026 DonGrobione. All rights reserved.'
Description = 'PowerShell module to start/stop STRATO HiDrive and read the sync root from logs.'
PowerShellVersion = '5.1'
FunctionsToExport = @(
'Start-HiDrive'
'Stop-HiDrive'
'Get-HiDriveSyncRoot'
)
CmdletsToExport = @()
VariablesToExport = '*'
AliasesToExport = @()
PrivateData = @{
PSData = @{
Tags = @('PowerShell', 'HiDrive', 'STRATO', 'Utilities')
ProjectUri = 'https://github.com/DonGrobione/StratoHiDriveUtils'
LicenseUri = 'https://github.com/DonGrobione/StratoHiDriveUtils/blob/main/License.md'
Contact = 'dongrobione@proton.me'
}
}
}