83634ce2e92c2a3784aae21599011911180905cb
Windows/PowerShell.md
| ... | ... | @@ -214,4 +214,13 @@ Get-ScheduledTask -TaskPath $taskPath | |
| 214 | 214 | - [NetSecurity](https://docs.microsoft.com/en-us/powershell/module/netsecurity/) |
| 215 | 215 | - [New-NetFirewallRule](https://docs.microsoft.com/en-us/powershell/module/netsecurity/New-NetFirewallRule) |
| 216 | 216 | - [Get-NetFirewallRule](https://docs.microsoft.com/en-us/powershell/module/netsecurity/Get-NetFirewallRule) |
| 217 | -- [Set-NetFirewallRule](https://docs.microsoft.com/en-us/powershell/module/netsecurity/Set-NetFirewallRule) |
|
| ... | ... | \ No newline at end of file |
| 0 | +- [Set-NetFirewallRule](https://docs.microsoft.com/en-us/powershell/module/netsecurity/Set-NetFirewallRule) |
|
| 1 | + |
|
| 2 | +# SSH-Agent サービスの有効化 |
|
| 3 | +```powershell |
|
| 4 | +# Make sure you're running as an Administrator |
|
| 5 | +Set-Service ssh-agent -StartupType Automatic |
|
| 6 | +Start-Service ssh-agent |
|
| 7 | +Get-Service ssh-agent |
|
| 8 | +``` |
|
| 9 | +- [Visual Studio Code Remote Development Troubleshooting Tips and Tricks](https://code.visualstudio.com/docs/remote/troubleshooting#_setting-up-the-ssh-agent) |