Windows10: Difference between revisions

From Wiki RB4
Line 18: Line 18:
  findstr /s <TEXT> <FILES>
  findstr /s <TEXT> <FILES>
  findstr /s branch_label *.py
  findstr /s branch_label *.py
  findstr /s "Halloo0@1" *.*
  findstr /s /m "Halloo0@1" *.* // m only filenames

Revision as of 10:19, 21 March 2022

Operation

Set Environment Variables

  • Systemsteuerung -> Benutzerkonten -> Eigene Umgebungsvariablen ändern

Second Explorer Window

  • open one instance
  • right click on explorer instance in task bar -> select 'Explorer'

Link to local file in One Drive

  • right click on file -> create link
  • richt click on link -> properties -> link -> copy target

Find File by Name

cd <ROOT_OF_SEARCH_DIR>
Get-ChildItem -Filter My*.docx -Recurse

Find Text/String in File

findstr /s <TEXT> <FILES>
findstr /s branch_label *.py
findstr /s /m "Halloo0@1" *.* // m only filenames