You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 7Zip/7zip-Archive.psd1
+21-5Lines changed: 21 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
#
2
-
# Module manifest for module '7zip'
2
+
# Module manifest for module '7zip-Archive'
3
3
#
4
4
# Generated by: Dmitry Stadub
5
5
#
@@ -11,7 +11,7 @@
11
11
# RootModule = ''
12
12
13
13
# Version number of this module.
14
-
ModuleVersion='0.9.0'
14
+
ModuleVersion='1.0.0'
15
15
16
16
# Supported PSEditions
17
17
# CompatiblePSEditions = @()
@@ -29,7 +29,10 @@ CompanyName = ''
29
29
Copyright='(c) Dmitry Stadub. All rights reserved.'
30
30
31
31
# Description of the functionality provided by this module
32
-
Description='7zip utility wrapper. Use own copy of 7 zip utility and can download it from internet'
32
+
Description='7zip utility wrapper.
33
+
Use own copy of 7 zip utility and can download it from internet
34
+
Full documentation at the Github: https://github.com/stadub/PowershellScripts/tree/master/7zip
35
+
'
33
36
34
37
# Minimum version of the PowerShell engine required by this module
35
38
# PowerShellVersion = ''
@@ -65,7 +68,8 @@ Description = '7zip utility wrapper. Use own copy of 7 zip utility and can downl
65
68
# FormatsToProcess = @()
66
69
67
70
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
68
-
NestedModules=@('Aliases.ps1','7zip.ps1')
71
+
#NestedModules = @('Aliases.ps1','7zip.ps1')
72
+
RootModule="7zip-Archive.psm1"
69
73
70
74
# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
71
75
FunctionsToExport=@('*')
@@ -107,7 +111,19 @@ PrivateData = @{
107
111
108
112
# ReleaseNotes of this module
109
113
ReleaseNotes='
110
-
First public release
114
+
First public release.
115
+
Supported function:
116
+
Read-ZipFile szr
117
+
Add-ZipFileContent sza
118
+
Remove-ZipFileContent szrm
119
+
Test-ZipFileContent szt
120
+
Get-ZipFileContent br
121
+
Full documentation at the Github: https://github.com/stadub/PowershellScripts/tree/master/7zip
0 commit comments