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: PSRemoteOperations.psd1
+25-93Lines changed: 25 additions & 93 deletions
Original file line number
Diff line number
Diff line change
@@ -3,95 +3,30 @@
3
3
#
4
4
5
5
@{
6
-
7
-
# Script module or binary module file associated with this manifest.
8
-
RootModule="PSRemoteOperations.psm1"
9
-
10
-
# Version number of this module.
11
-
ModuleVersion='3.4.0'
12
-
13
-
# Supported PSEditions
14
-
CompatiblePSEditions=@("Desktop","Core")
15
-
16
-
# ID used to uniquely identify this module
17
-
GUID='62bc09fe-38bf-426d-aa3c-e6c2cf6bb528'
18
-
19
-
# Author of this module
20
-
Author='Jeff Hicks'
21
-
22
-
# Company or vendor of this module
23
-
CompanyName='JDH Information Technology Solutions, Inc.'
24
-
25
-
# Copyright statement for this module
26
-
Copyright='(c) 2018-2020 JDH Information Technology Solutions, Inc. All rights reserved.'
27
-
28
-
# Description of the functionality provided by this module
29
-
Description='A PowerShell module for executing commands remotely in a non-remoting environment using a shared folder structure such as Dropbox.'
30
-
31
-
# Minimum version of the Windows PowerShell engine required by this module
32
-
PowerShellVersion='5.1'
33
-
34
-
# Name of the Windows PowerShell host required by this module
35
-
# PowerShellHostName = ''
36
-
37
-
# Minimum version of the Windows PowerShell host required by this module
38
-
# PowerShellHostVersion = ''
39
-
40
-
# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
41
-
# DotNetFrameworkVersion = ''
42
-
43
-
# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
44
-
# CLRVersion = ''
45
-
46
-
# Processor architecture (None, X86, Amd64) required by this module
47
-
# ProcessorArchitecture = ''
48
-
49
-
# Modules that must be imported into the global environment prior to importing this module
50
-
RequiredModules=@()
51
-
52
-
# Assemblies that must be loaded prior to importing this module
53
-
# RequiredAssemblies = @()
54
-
55
-
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
56
-
# ScriptsToProcess = @()
57
-
58
-
# Type files (.ps1xml) to be loaded when importing this module
59
-
# TypesToProcess = @()
60
-
61
-
# Format files (.ps1xml) to be loaded when importing this module
62
-
# FormatsToProcess = @()
63
-
64
-
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
65
-
# NestedModules = ""
66
-
67
-
# 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.
# Cmdlets 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 cmdlets to export.
71
-
CmdletsToExport=@()
72
-
73
-
# Variables to export from this module
74
-
VariablesToExport=@()
75
-
76
-
# Aliases 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 aliases to export.
# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
89
-
PrivateData=@{
6
+
RootModule="PSRemoteOperations.psm1"
7
+
ModuleVersion='4.0.0'
8
+
CompatiblePSEditions=@("Desktop","Core")
9
+
GUID='62bc09fe-38bf-426d-aa3c-e6c2cf6bb528'
10
+
Author='Jeff Hicks'
11
+
CompanyName='JDH Information Technology Solutions, Inc.'
12
+
Copyright='(c) 2018-2021 JDH Information Technology Solutions, Inc. All rights reserved.'
13
+
Description='A PowerShell module for executing commands remotely in a non-remoting environment using a shared folder structure such as Dropbox.'
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -42,4 +42,4 @@ The long-term goal is to ensure that this module will work cross-platform and in
42
42
43
43
Beginning with v3.4.0, when you create a remote operation file with either `New-PSRemoteOperation` or `New-PSRemoteOperationForm`, you can specify a PowerShell version. The default is 5.1. If you use a `PSVersion` value of 7, the remote operation will run under `pwsh.exe`.
0 commit comments