사용자 도구

사이트 도구


powershell

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

양쪽 이전 판이전 판
다음 판
이전 판
powershell [2020/04/09 02:56] rex8312powershell [2024/03/23 02:38] (현재) – 바깥 편집 127.0.0.1
줄 32: 줄 32:
 # credential.txt에 저장 # credential.txt에 저장
 Read-Host -AsSecureString | ConvertFrom-SecureString | Set-Content "credential.txt" Read-Host -AsSecureString | ConvertFrom-SecureString | Set-Content "credential.txt"
- 
 # creadential.txt에서 credential 복원 # creadential.txt에서 credential 복원
 +Set-Variable -Name user -Value 유저
 +Set-Variable -Name ip -Value ???.???.???.???
 $secureString = Get-Content "credential.txt" | ConvertTo-SecureString $secureString = Get-Content "credential.txt" | ConvertTo-SecureString
 +$cred = New-Object System.Management.Automation.PSCredential -ArgumentList $user, $secureString
 +$session = New-PSSession -ComputerName $ip -Credential $cred
 +# Invoke-Command -ComputerName $ip -ScriptBlock { cmd /c "activate base && where python && ipconfig" } -credential $cred
 </code> </code>
  
  
powershell.1586400968.txt.gz · 마지막으로 수정됨: (바깥 편집)