Skip to content

Instantly share code, notes, and snippets.

@GongT
Last active June 11, 2017 03:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GongT/2b87a24ce785502c552f6f5428f1dd69 to your computer and use it in GitHub Desktop.
Save GongT/2b87a24ce785502c552f6f5428f1dd69 to your computer and use it in GitHub Desktop.
start sshd when current user login (windows scheduler)
<?xml version="1.0" encoding="UTF-16"?>
<Task version="1.4" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
<RegistrationInfo>
<Date>2017-06-11T10:37:48.0530393</Date>
<Author><!------------ SHABAO-DESKTOP\gongt ------------></Author>
<URI>\sshd</URI>
</RegistrationInfo>
<Triggers>
<BootTrigger>
<Enabled>true</Enabled>
</BootTrigger>
</Triggers>
<Principals>
<Principal id="Author">
<UserId>S-1-5-21-2152060374-957170850-3930529174-1006</UserId>
<LogonType>InteractiveToken</LogonType>
<RunLevel>LeastPrivilege</RunLevel>
</Principal>
</Principals>
<Settings>
<MultipleInstancesPolicy>IgnoreNew</MultipleInstancesPolicy>
<DisallowStartIfOnBatteries>false</DisallowStartIfOnBatteries>
<StopIfGoingOnBatteries>true</StopIfGoingOnBatteries>
<AllowHardTerminate>false</AllowHardTerminate>
<StartWhenAvailable>true</StartWhenAvailable>
<RunOnlyIfNetworkAvailable>true</RunOnlyIfNetworkAvailable>
<IdleSettings>
<StopOnIdleEnd>true</StopOnIdleEnd>
<RestartOnIdle>false</RestartOnIdle>
</IdleSettings>
<AllowStartOnDemand>true</AllowStartOnDemand>
<Enabled>true</Enabled>
<Hidden>false</Hidden>
<RunOnlyIfIdle>false</RunOnlyIfIdle>
<DisallowStartOnRemoteAppSession>false</DisallowStartOnRemoteAppSession>
<UseUnifiedSchedulingEngine>true</UseUnifiedSchedulingEngine>
<WakeToRun>false</WakeToRun>
<ExecutionTimeLimit>PT0S</ExecutionTimeLimit>
<Priority>7</Priority>
</Settings>
<Actions Context="Author">
<Exec>
<Command>%LOCALAPPDATA%\wsltty\bin\mintty.exe</Command>
<Arguments>-h always -w hide --nopin --wsl -e /bin/wslbridge -- "/usr/sbin/sshd" -D</Arguments>
<WorkingDirectory>C:\Windows\System32</WorkingDirectory>
</Exec>
</Actions>
</Task>
@GongT
Copy link
Author

GongT commented Jun 11, 2017

@GongT
Copy link
Author

GongT commented Jun 11, 2017

applications (sshd here) will not able to interact with GUI if directly run bash.exe

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment