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
- Added the module `ThreadJob` as a module dependency to the manifest.
13
+
14
+
### Changed
15
+
16
+
- Updated `Get-ParameterInfo` to recognize `ProgressAction` as a common parameter. This parameter was add in PowerShell 7.
17
+
- Updated the default table view for output from `Get-ModuleCommand` to include the module version number.
18
+
- Modified `Show-Tree` to better handle multi-string and binary values in the registry.
19
+
- Modified `Show-Tree` to use `PSStyle.FileInfo` for color information if detected. ([Issue #147](https://github.com/jdhitsolutions/PSScriptTools/issues/147))
20
+
- Updated `README.md`
21
+
- Revised `Get-FolderSizeInfo` to be more consistent between PowerShell versions. The command will skip counting all reparse points. **This may be a breaking change**. ([Issue #145](https://github.com/jdhitsolutions/PSScriptTools/issues/145))
22
+
- Re-wrote `Find-CimClass` to use `CimSession`.
23
+
- Revised `Get-ParameterInfo` to sort output by default using ParameterSet,Position, and Name
24
+
- Help updates.
25
+
26
+
### Fixed
27
+
28
+
- Revised `Get-WindowsVersion` to handle non-English cultures. ([Issue #142](https://github.com/jdhitsolutions/PSScriptTools/issues/142))
29
+
- Fixed bug in `Convert-EventLogRecord` that failed on duplicate property name `ID`. ([Issue #143](https://github.com/jdhitsolutions/Scripts/issues/143))
30
+
31
+
32
+
## [v2.48.0] - 2023-07-28
6
33
7
34
### Added
8
35
@@ -15,7 +42,7 @@ This file contains the most recent change history for the PSScriptTools module.
15
42
- Added `EnumOnly` parameter to `Get-TypeMember`[Issue #135](https://github.com/jdhitsolutions/PSScriptTools/issues/135)
16
43
- Help updates
17
44
18
-
## v2.47.0
45
+
## [v2.47.0] - 2023-05-25
19
46
20
47
### Changed
21
48
@@ -27,7 +54,7 @@ This file contains the most recent change history for the PSScriptTools module.
27
54
- Updated format file for `Get-TypeMember` to highlight enum properties.
28
55
- Updated `README.md`.
29
56
30
-
## v2.46.0
57
+
## [v2.46.0] - 2023-03-03
31
58
32
59
### Changed
33
60
@@ -55,7 +82,7 @@ This file contains the most recent change history for the PSScriptTools module.
55
82
56
83
- Marked `Out-ConditionalColor` and `Set-ConsoleColor` as deprecated. They will be removed in a future release.
57
84
58
-
## v2.45.0
85
+
## [v2.45.0] - 2022-09-16
59
86
60
87
- Fixed help typo for `Get-PSUnique`[PR 133](https://github.com/jdhitsolutions/PSScriptTools/pull/133). Thank you @fiala-sns.
61
88
- Updated `Get-WindowsVersion` to include `DisplayVersion`, e.g. `22H2`.
@@ -64,13 +91,13 @@ This file contains the most recent change history for the PSScriptTools module.
64
91
- Help updates.
65
92
- Updated `README.md`.
66
93
67
-
## v2.44.0
94
+
## [v2.44.0] -
68
95
69
96
- Updated `Show-ANSISequence` to fix a bug where foreground samples where included when specifying background. [Issue #130](https://github.com/jdhitsolutions/PSScriptTools/issues/130)
70
97
- Updated contributing guidelines.
71
98
- Updated `README.md`.
72
99
73
-
## v2.43.0
100
+
## [v2.43.0] - 2022-04-04
74
101
75
102
- Fixed VSCode snippets to run in a PowerShell 7 integrated console. [Issue #124](https://github.com/jdhitsolutions/PSScriptTools/issues/124)
76
103
- Updated `Show-AnsiSequence` to fix a display bug that was dropping values. [Issue #125](https://github.com/jdhitsolutions/PSScriptTools/issues/125)
@@ -84,3 +111,10 @@ This file contains the most recent change history for the PSScriptTools module.
84
111
## Archive
85
112
86
113
If you need to see older change history, look at the [Archive ChangeLog](https://github.com/jdhitsolutions/PSScriptTools/blob/master/Archive-ChangeLog.md) online.
This command is designed to accept pipelined output and create a generic markdown document. The pipeline output will formatted as a text block or you can specify a table. The AsList parameter technically still create a table, but it is two columns with the property namd and value.
37
+
This command is designed to accept pipelined output and create a generic markdown document. The pipeline output will formatted as a text block or you can specify a table. The AsList parameter technically still create a table, but it is two columns with the property name and value.
38
38
39
39
You can optionally define a title, content to appear before the output, and content to appear after the output. Best efforts have been made to produce markdown output that meets basic standards.
40
40
@@ -46,83 +46,64 @@ The command does not create a text file. You need to pipe results from this comm
Here is an example that creates a series of markdown fragments for each computer and in the end creates a markdown document. The commands are shown at a PowerShell prompt, but you are likely to put them in a PowerShell script file.
Enter a pattern for class names to EXCLUDE from the results. You can use wildcards or regular expressions.
90
89
91
90
```yaml
92
91
Type: String
@@ -95,31 +94,28 @@ Aliases:
95
94
96
95
Required: False
97
96
Position: Named
98
-
Default value: localhost
97
+
Default value: None
99
98
Accept pipeline input: False
100
-
Accept wildcard characters: False
99
+
Accept wildcard characters: True
101
100
```
102
101
103
-
### -Exclude
104
-
105
-
Enter a pattern for class names to EXCLUDE from the results. You can use wildcards or regular expressions.
102
+
### -CimSession
103
+
Specify a computer name or an existing CimSession object.
106
104
107
105
```yaml
108
-
Type: String
106
+
Type: CimSession
109
107
Parameter Sets: (All)
110
-
Aliases:
108
+
Aliases:CN
111
109
112
110
Required: False
113
111
Position: Named
114
112
Default value: None
115
-
Accept pipeline input: False
113
+
Accept pipeline input: True (ByValue)
116
114
Accept wildcard characters: False
117
115
```
118
116
119
117
### CommonParameters
120
-
121
-
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
122
-
For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
118
+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
123
119
124
120
## INPUTS
125
121
@@ -136,3 +132,5 @@ Learn more about PowerShell: http://jdhitsolutions.com/blog/essential-powershell
0 commit comments