We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05f528d commit b87cb3aCopy full SHA for b87cb3a
.github/ISSUE_TEMPLATE.md
@@ -26,7 +26,9 @@ Environment data
26
} else {
27
"os: $((dir $env:SystemRoot\System32\cmd.exe).VersionInfo.FileVersion)"
28
}
29
- "PS file version: $((dir $pshome\p*[hl].exe).VersionInfo.FileVersion)"
+ "PS file version: $($name = if ($PSVersionTable.PSEdition -eq "Core") { "pwsh.dll" } else { "powershell.exe" }; (dir $pshome\$name).VersionInfo.FileVersion)"
30
+ "BufferWidth: $([console]::BufferWidth)"
31
+ "BufferHeight: $([console]::BufferHeight)"
32
33
```
34
-->
0 commit comments