Tips 3개의 명령 + 추가
1062 단어 PowerShellcmdtech
cmd
Bitlocker 복구 키 가져오기
Bitlocker의 답장을 잊어버렸어요. PW!
백업 시 명령 없음
manage-bde -protectors -get C:
터미널의 MAC 주소를 가볍게 가져옵니다.
일반적으로 ipconfig-all 같은 건데 MAC 주소만 찾으면 여기가 편해요.
getmac /v
동일한 IP를 사용하는 다른 장치에 Ping 건너뛰기
ping 172.16.026~172.16.0.230의 결과 데스크톱의result를 네 번 건너뛰었습니다.txt로 내보내기 명령
※ 제한 시간 50ms
for /L %f in (216, 1, 230) do ping -n 4 -w 50 172.16.0.%f >> %USERPROFILE%\desktop\result.log
PowerShell
csv 파일.csv에서 AD 사용자 만들기
※ Domain Admin 권한이 있는 사용자가 수행해야 함
※ CSV 형식
Import-Csv "***\users.csv" | %{New-ADUser -Name $_.DisplayName -DisplayName $_.DisplayName -UserPrincipalName $_.UserPrincipalName -sAMAccountName $_.Name -AccountPassword (ConvertTo-SecureString -AsPlainText $_.Password -Force) -ChangePasswordAtLogon $false -Enabled $true -PasswordNeverExpires $true}
Reference
이 문제에 관하여(Tips 3개의 명령 + 추가), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://zenn.dev/barusu/articles/887230890d3275텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)