Difference between revisions of "Windows"

From Blue-IT.org Wiki

(Tree)
(Complete reset of network stack)
 
(3 intermediate revisions by the same user not shown)
Line 9: Line 9:
  
 
= Windows HowTo's =
 
= Windows HowTo's =
 +
== Create a hierarchical folder structure ==
 +
mkdir folder1\folder2\folder3 anotherhierarchie\folder1\folder2\folder3
 +
 
== Tree ==
 
== Tree ==
 
* Source: https://www.webnots.com/how-to-download-tree-view-of-directories-in-windows-10/
 
* Source: https://www.webnots.com/how-to-download-tree-view-of-directories-in-windows-10/
 +
The "unix-like" tree command has landedt almost finally, but not as featrue rich in windows.
  
 
=== Usage ===
 
=== Usage ===
Line 55: Line 59:
  
 
== Networking ==
 
== Networking ==
 +
* https://4sysops.com/archives/if-wifi-is-not-working
 +
 +
=== Complete reset of network stack ===
 +
 +
https://stackoverflow.com/a/64057835/1319799
  
* 4sysops.com/archives/if-wifi-is-not-working
+
Also works up to Windows 11 (which shows how old this crap is):
  
=== Reset winsock ===
+
  wsl --shutdown
Sometimes the windows network stack (winsdock) ist broken.
+
  netsh winsock reset
 +
  netsh int ip reset all
 +
  netsh winhttp reset proxy
 +
  ipconfig /flushdns
 +
  netsh winsock reset
 +
  shutdown /r
  
 +
=== Reset winsock only ===
 +
Sometimes the windows network stack (winsock) ist broken.
 
To solve the problem: open a cmd window (you need an "elevated" command prompt: right click as admin!).
 
To solve the problem: open a cmd window (you need an "elevated" command prompt: right click as admin!).
  

Latest revision as of 10:19, 31 January 2024

Windows 10 troubleshooting

Delete old files after update from Windows 7

If you don't like to get back to Windows 7 (not recommended), this should at least give you 20-25 GB more free space on the hard drive.

  1. Type "Cleanup" in the search field of the Startmenu.
  2. Open it with an administrative account
  3. Choose "Previously Windows Installation(s)"
  4. Press OK

Windows HowTo's

Create a hierarchical folder structure

mkdir folder1\folder2\folder3 anotherhierarchie\folder1\folder2\folder3

Tree

The "unix-like" tree command has landedt almost finally, but not as featrue rich in windows.

Usage

In Explorer

  1. Open Explorer
  2. Go to path
  3. IN the addressline paste: CMD /c "Tree /F /A > tree.txt"

In cmd or powershell

  1. open cmd.exe or powershell
  2. type "tree" without parameter "/c"
  3. us syntax as shown next
  4. export to file (/A) or copy and paste

Syntax

cmd /c TREE [Drive:][Path] [/F] [/A]

   cmd /c -> command prompt
   TREE -> like unix tree
   /F -> all files in every folder Leave this and only folders will be listed
   /A -> export to file

Windows 7 troubleshooting

Trouble, trouble, trouble ...

But some people want to have trouble - and not user linux ;-) - , so I will help them, and get some money for it!

Gain admin access on cmd

The so called "elevated" command prompt can be gained in a few ways:

1. open cmd as admin

net user administrator /active:yes

Reboot

Now the admin is in the login window

2. Enter cmd.exe in startmenu and open it with rightclick "run as admin"

3. open cmd and add yourself to the admin group (DANGEROUS!!!)

net localgroup administratoren %username% /add

Networking

Complete reset of network stack

https://stackoverflow.com/a/64057835/1319799

Also works up to Windows 11 (which shows how old this crap is):

  wsl --shutdown
  netsh winsock reset
  netsh int ip reset all
  netsh winhttp reset proxy
  ipconfig /flushdns
  netsh winsock reset
  shutdown /r 

Reset winsock only

Sometimes the windows network stack (winsock) ist broken. To solve the problem: open a cmd window (you need an "elevated" command prompt: right click as admin!).

netsh winsock reset
#netsh int ip reset catalog
#netsh int ip reset reset.log

netsh int ipv4 reset

Reboot

Same with Fix-Link

Repair missing system services

This will reinstall important system services:

sfc /scannow