Enabling Unix-Style && Syntax: Optimizing npm and VS Code with PowerShell 7 on Windows
By default, Windows CMD or older PowerShell versions offer limited support for &&, which can cause compatibility issues with cross-platform scripts. This guide walks you through installing PowerShell 7 to gain full && support and integrating it with npm and VS Code for a seamless Unix-like experience. Section 1: Installing Power ...
Posted on Mon, 08 Jun 2026 17:00:25 +0000 by lupld
Enhancing Windows Terminal with Oh-My-Posh for GitBash, CMD, and PowerShell
Introduction: Having the right tools enhances productivity. A well-designed environment not only improves mood but also boosts coding efficiency significantly.
Demonstration Preview
PowerShell
CMD
Git-Bash
Table of Contents
Understanding Oh-My-Posh
Installing Required Fonts
Configuring Nerd Fonts in Windows Terminal
Setting up Shell Terminals ...
Posted on Thu, 04 Jun 2026 17:33:38 +0000 by monezz
Configuring Dual Network Routing for Simultaneous LAN and Wi-Fi Access
In a typical dual-network setup, a Windows machine may be connected to both a wired Ethernet network (for a private LAN) and a wireless Wi-Fi network (for public internet). This often leads to routing conflicts, where one connection's default gateway and DNS settings override the other, preventing full access to either network. For instance, a ...
Posted on Wed, 27 May 2026 22:31:21 +0000 by [PQ3]RogeR
Converting quser Command Output to PowerShell Objects for Better Data Processing
Whenn managing remote terminal servers, administrators often need to perform user session management tasks such as logging off speicfic users. The traditional approach involves using quser to retrieve session information and logoff to terminate sessions:
quser /server:SERVER_NAME
logoff SESSION_ID /server:SERVER_NAME
Like many legacy command-l ...
Posted on Fri, 15 May 2026 08:59:48 +0000 by Francoise
C# and .NET Version Mapping and Common Development Issues
C# and .NET Version Mapping
C#12.0
.NET8 (2023)
C#11.0
.NET7 (2022)
C#10.0
.NET6 (2021)
C#9.0
.NET5 (2020)
C#8.0
.NET Framework4.8 (2019-04-18)
C#7.3
.NET Framework4.7.2
VS Error: project.assets.json Not Found
Tools -> Command Line -> Developer Command Prompt -> Enter msbuild -t:restore
https://learn.microsoft.com/zh- ...
Posted on Wed, 13 May 2026 17:40:11 +0000 by coldkill
Configuring a Windows Development Environment
System Configuration Adjustments
Winget Package Manager Source Configuration
The default winget source often encounters connectivity issues. Configure an alternative source to resolve this problem.
# Check current winget version
winget -v
# Replace default source with USTC mirror
winget source remove winget
winget source add winget https://mir ...
Posted on Sat, 09 May 2026 02:14:16 +0000 by daxxy