🐴
cmd&PowerShell:Tips的なコマンド3選+おまけ
cmd
Bitlocker回復キーを取得
Bitlockerの回復PWを忘れた!
バックアップとってなかったわって時のコマンド
manage-bde -protectors -get C:
端末のMACアドレスをささっと取得する
普通はipconfig -all とかだけど、MACアドレス取るだけならこっちのが楽
getmac /v
同IP帯の他デバイスにPingを飛ばしたい
ping 172.16.0.216~172.16.0.230 を4回飛ばした結果をデスクトップの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ファイル:users.csvからADユーザーを作成
※DomainAdmin権限持っているユーザーで実行が必要
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}
※CSV形式
Name,DisplayName,UserPrincipalName,Password
Discussion