-
Notifications
You must be signed in to change notification settings - Fork 1
/
PwrSudo.psd1
71 lines (58 loc) · 4.09 KB
/
PwrSudo.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
63
64
65
66
67
68
69
70
71
@{
## Module Info
ModuleVersion = '2.0.1'
Description = 'Implements Unix/sudo (Execute-Elevated) for powershell'
GUID = '64ba391a-0ef7-4c31-8dee-dd35ac931df4'
HelpInfoURI = 'https://github.com/ocalvo/PwrSudo'
## Module Components
RootModule = @("PwrSudo.psm1")
ScriptsToProcess = @()
TypesToProcess = @()
FormatsToProcess = @()
FileList = @()
## Public Interface
CmdletsToExport = ''
FunctionsToExport = @(
"Enable-Execute-Elevated",
"Execute-Elevated",
"Open-Elevated",
"Add-AdministratorsAuthorizedKeys")
VariablesToExport = @()
AliasesToExport = @("sudo","elevate")
# DscResourcesToExport = @()
# DefaultCommandPrefix = ''
## Requirements
# CompatiblePSEditions = @()
PowerShellVersion = '3.0'
# PowerShellHostName = ''
# PowerShellHostVersion = ''
RequiredModules = @()
RequiredAssemblies = @()
ProcessorArchitecture = 'None'
DotNetFrameworkVersion = '2.0'
CLRVersion = '2.0'
## Author
Author = 'https://github.com/ocalvo'
CompanyName = ''
Copyright = ''
## Private Data
PrivateData = @{
PSData = @{
# Tags applied to this module. These help with module discovery in online galleries.
Tags = @("productivity","sudo","admin","privilege", "UAC")
# A URL to the license for this module.
# LicenseUri = ''
# A URL to the main website for this project.
ProjectUri = 'https://github.com/ocalvo/PwrSudo'
# A URL to an icon representing this module.
# IconUri = ''
# ReleaseNotes of this module
ReleaseNotes = @"
## 2020-08-22 - Version 1.0.2
Update metadata
## 2020-08-22 - Version 1.0.1
Initial release
"@
} # End of PSData hashtable
} # End of PrivateData hashtable
}