To list all currently logged-in users (especially useful in multi-user environments): query user For more detailed information, including the domain: whoami
You can use the following PowerShell command to display your IPv6 address: Get-NetIPAddress -AddressFamily IPv6 If you only want to see the IPv6 addresses assigned to your active network interfaces, use: Get-NetIPAddress -AddressFamily IPv6 | Where-Object { $_.PrefixOrigin -ne "WellKnown" } Alternatively, you can use ipconfig in PowerShell: ipconfig /all
Windows CMD Important Commands in this article you learn to use these command in windows operating system. for best practice you need to open your CMD in windows to open you can use a shortcut Windows logo Key + R with keyboard to run and type CMD. Disk and System Information chkdsk Checks the disk for errors. Example: chkdsk C: diskpart Opens the disk partition management tool. Example: diskpart systeminfo Displays detailed information about the system. Example: systeminfo exit Exits the command prompt. Example: exit
Comments
Post a Comment