我已经创建了一个使用以下方法共享 WiFi 的任务:
netsh wlan start hosted network
此任务已针对系统启动和用户登录进行了配置,除我休眠笔记本电脑(WiFi 未重新启动)时外,均能正常工作。
有人知道为什么吗?
以下是以 XML 形式提取的整个任务:
<?xml version="1.0" encoding="UTF-16"?>
<Task version="1.3" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
<RegistrationInfo>
<Date>2013-11-11T08:12:48.430373</Date>
<Author>computername\json</Author>
<Description>starting hosted network</Description>
</RegistrationInfo>
<Triggers>
<BootTrigger>
<Enabled>true</Enabled>
</BootTrigger>
<LogonTrigger>
<Enabled>true</Enabled>
</LogonTrigger>
</Triggers>
<Principals>
<Principal id="Author">
<UserId>computername\json</UserId>
<LogonType>Password</LogonType>
<RunLevel>HighestAvailable</RunLevel>
</Principal>
</Principals>
<Settings>
<MultipleInstancesPolicy>IgnoreNew</MultipleInstancesPolicy>
<DisallowStartIfOnBatteries>false</DisallowStartIfOnBatteries>
<StopIfGoingOnBatteries>true</StopIfGoingOnBatteries>
<AllowHardTerminate>true</AllowHardTerminate>
<StartWhenAvailable>true</StartWhenAvailable>
<RunOnlyIfNetworkAvailable>false</RunOnlyIfNetworkAvailable>
<IdleSettings>
<StopOnIdleEnd>true</StopOnIdleEnd>
<RestartOnIdle>false</RestartOnIdle>
</IdleSettings>
<AllowStartOnDemand>true</AllowStartOnDemand>
<Enabled>true</Enabled>
<Hidden>true</Hidden>
<RunOnlyIfIdle>false</RunOnlyIfIdle>
<DisallowStartOnRemoteAppSession>false</DisallowStartOnRemoteAppSession>
<UseUnifiedSchedulingEngine>false</UseUnifiedSchedulingEngine>
<WakeToRun>false</WakeToRun>
<ExecutionTimeLimit>PT0S</ExecutionTimeLimit>
<Priority>7</Priority>
</Settings>
<Actions Context="Author">
<Exec>
<Command>netsh.exe</Command>
<Arguments>wlan start hostednetwork</Arguments>
</Exec>
</Actions>
</Task>
答案1
您可以添加一个“工作站解锁”触发器。如果这不起作用,您还可以触发事件协议“系统”,源“电源故障排除程序”,事件 ID“1”(“系统已从省电模式重新激活。”)
(不确定确切的措辞,我正在使用德语 Windows 7。)
答案2
您的触发器设置为在启动和登录时调用操作。最好将触发器设置为某些系统 ID 事件。
这些有趣的事件可以在 Kernel-Power 和 Power-Troubleshooter 日志中找到。唤醒是 Power-Troubleshooter 中的一个事件,事件 ID 为 1,而系统睡眠在 Kernel-Power 中生成一个 ID 为 42 的事件