Skip to content

Commit 152fddf

Browse files
committed
Feature: Find PowerShell/PuTTY by path
1 parent ee52054 commit 152fddf

File tree

3 files changed

+16
-6
lines changed

3 files changed

+16
-6
lines changed

Source/NETworkManager.Models/PowerShell/PowerShell.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ public static class PowerShell
3737
private static readonly List<Tuple<string, int>> DefaultProfileRegkeysDwordBase =
3838
[
3939
new("CursorType", 1),
40-
new("FontFamily", 54), // 36
40+
new("FontFamily", 54), // 36
4141
new("FontSize", 1179648), // 120000
42-
new("FontWeight", 400)
42+
new("FontWeight", 400) // 190
4343
];
4444

4545
/// <summary>
@@ -58,8 +58,8 @@ private static List<Tuple<string, int>> GetProfileRegkeysDwordDark()
5858
return DefaultProfileRegkeysDwordBase.Concat(
5959
[
6060
new Tuple<string, int>("DefaultBackground", 2434341), // HEX: 252525
61-
new Tuple<string, int>("ColorTable00", 2434341), // HEX: 252525
62-
new Tuple<string, int>("ColorTable07", 13421772) // HEX: cccccc
61+
new Tuple<string, int>("ColorTable00", 2434341), // HEX: 252525
62+
new Tuple<string, int>("ColorTable07", 13421772) // HEX: cccccc
6363
]).ToList();
6464
}
6565

Source/NETworkManager.Settings/SettingsManager.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -319,8 +319,6 @@ private static void UpgradeTo_2024_11_11_0()
319319
private static void UpgradeToLatest(Version version)
320320
{
321321
Log.Info($"Apply upgrade to {version}...");
322-
323-
324322
}
325323

326324
#endregion

Website/docs/changelog/next-release.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,18 @@ Release date: **xx.xx.2025**
2121

2222
## Improvements
2323

24+
**PowerShell**
25+
26+
- Find `pwsg.exe` and `powershell.exe` executable by path, similar to `where.exe`. [#2962](https://github.com/BornToBeRoot/NETworkManager/pull/2962)
27+
28+
**PuTTY**
29+
30+
- Find `putty.exe` and `powershell.exe` executable by path, similar to `where.exe`. [#2962](https://github.com/BornToBeRoot/NETworkManager/pull/2962)
31+
32+
**AWS Session Manager**
33+
34+
- Find `pwsg.exe` and `powershell.exe` executable by path, similar to `where.exe`. [#2962](https://github.com/BornToBeRoot/NETworkManager/pull/2962)
35+
2436
## Bugfixes
2537

2638
## Dependencies, Refactoring & Documentation

0 commit comments

Comments
 (0)