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
* first try
* better test
* different module in test
* may the force...
* force help update
* retry force
* encoding
* more diff options
* undo
* AlphabeticParamsOrder
It will download (\`git clone\`) specified repository to temporary directory and analyze it.
25
31
By default, it will delete this temporary copy, but if needed, it can be kept.
26
32
27
-
Cmdlet searches for module manifest ( .psd1) file or if that is not found for module (.psm1) file itself.
33
+
Cmdlet searches for module manifest ( .psd1) file. If that is not found, then it searches for module (.psm1) file itself.
28
34
29
35
## EXAMPLES
30
36
@@ -39,7 +45,7 @@ Root : True
39
45
Git : https://github.com/iricigor/FIFA2018
40
46
```
41
47
42
-
This cmdlet will check for existence of PowerShell module in given repository (https://github.com/iricigor/FIFA2018') and return its version (currently 0.3.46).
48
+
This cmdlet will check for existence of PowerShell module in given repository (https://github.com/iricigor/FIFA2018') and return its version (currently 0.3.46).
43
49
44
50
### Example 2
45
51
```
@@ -90,6 +96,22 @@ Accept pipeline input: False
90
96
Accept wildcard characters: False
91
97
```
92
98
99
+
### -Name
100
+
You can query already installed modules for their online version if ProjectUri is specified in the module info.
101
+
To do this, just specify module name(s) with parameter -Names.
102
+
103
+
```yaml
104
+
Type: String[]
105
+
Parameter Sets: ByName
106
+
Aliases:
107
+
108
+
Required: True
109
+
Position: Named
110
+
Default value: None
111
+
Accept pipeline input: False
112
+
Accept wildcard characters: False
113
+
```
114
+
93
115
### -ProjectUri
94
116
Mandatory parameter specifying URL or the repository.
95
117
Multiple values are supported.
@@ -100,7 +122,7 @@ You can pass this parameter also via pipeline, for example via \`Find-Module\` b
0 commit comments