-
-
Notifications
You must be signed in to change notification settings - Fork 382
Expand file tree
/
Copy pathPSFileTransfer.psd1
More file actions
41 lines (26 loc) · 1.19 KB
/
Copy pathPSFileTransfer.psd1
File metadata and controls
41 lines (26 loc) · 1.19 KB
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
@{
RootModule = 'PSFileTransfer.psm1'
ModuleVersion = '1.0.0'
CompatiblePSEditions = 'Core', 'Desktop'
GUID = '789c9c76-4756-4489-a74f-31ca64488c7b'
Author = 'Raimund Andree, Per Pedersen'
CompanyName = 'AutomatedLab Team'
Copyright = '2022'
Description = 'This module packages functions created by Lee Holmes for transfering files over PowerShell Remoting'
PowerShellVersion = '5.1'
DotNetFrameworkVersion = '2.0'
FunctionsToExport = 'Send-Directory', 'Send-File', 'Receive-Directory', 'Receive-File'
AliasesToExport = '??'
FileList = @()
RequiredModules = @()
PrivateData = @{
PSData = @{
Prerelease = ''
Tags = @('FileTransfer')
LicenseUri = 'https://github.com/AutomatedLab/AutomatedLab/blob/main/LICENSE'
ProjectUri = 'https://github.com/AutomatedLab/AutomatedLab'
IconUri = 'https://github.com/AutomatedLab/AutomatedLab/blob/master/Assets/Automated-Lab_icon256.png'
ReleaseNotes = ''
}
}
}