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