Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
 gwmi -Query 'Select LocalName, RemoteName, UserName from Win32_NetworkConnection'


환경 변수 사용

 환경 변수 출력

echo 나 print 를 사용하지 않고 출력할 환경 변수 값을 값(Ex: Path 일 경우 $env:Path) 을 적어줌.

Code Block
languagepowershell
$env:Path

;C:\Python38\Scripts\;C:\Python38\;C:\Program Files (x86)...

...