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
You need to practice these commands with command line in windows operating system. Make a File Read-Only cmd attrib +R filename.txt Remove Hidden Attribute cmd attrib -H filename.txt Apply Attributes to All Files in a Directory and Subdirectories cmd attrib +H *.* /S Set Attributes for a Directory cmd attrib +S +H "C:\MyFolder" /D Remove System and Hidden Attributes from Files and Folders cmd attrib -S -H *.* /S /D
Comments
Post a Comment