V2EX = way to explore
V2EX 是一个关于分享和探索的地方
Sign Up Now
For Existing Member  Sign In
V2EX  ›  BQY2D0AgLxq4jzdr  ›  全部回复第 4 页 / 共 13 页
回复总数  256
1  2  3  4  5  6  7  8  9  10 ... 13  
2025 年 2 月 18 日
回复了 lanweizhujiao 创建的主题 游戏 有没有巨好玩的游戏推荐
超级食肉男孩
2025 年 2 月 14 日
回复了 zhangtw2024 创建的主题 Android 出 HP Elite Dragonfly Chromebook
省流:1988
2025 年 2 月 10 日
回复了 ms2297248353 创建的主题 问与答 请问 Win11 手动关闭无线网络后如何通过命令行开启
https://learn.microsoft.com/en-us/answers/questions/2074409/resolved-how-to-toggle-wi-fi-in-windows-11-via-the
```shell
[CmdletBinding()] Param (
[Parameter(Mandatory=$true)][ValidateSet('Off', 'On')][string]$Status
)

Add-Type -AssemblyName System.Runtime.WindowsRuntime
$asTaskGeneric = ([System.WindowsRuntimeSystemExtensions].GetMethods() | ? { $_.Name -eq 'AsTask' -and $_.GetParameters().Count -eq 1 -and $_.GetParameters()[0].ParameterType.Name -eq 'IAsyncOperation`1' })[0]
Function Await($WinRtTask, $ResultType) {
$asTask = $asTaskGeneric.MakeGenericMethod($ResultType)
$netTask = $asTask.Invoke($null, @($WinRtTask))
$netTask.Wait(-1) | Out-Null
$netTask.Result
}
[Windows.Devices.Radios.Radio,Windows.System.Devices,ContentType=WindowsRuntime] | Out-Null
[Windows.Devices.Radios.RadioAccessStatus,Windows.System.Devices,ContentType=WindowsRuntime] | Out-Null
Await ([Windows.Devices.Radios.Radio]::RequestAccessAsync()) ([Windows.Devices.Radios.RadioAccessStatus]) | Out-Null
$radios = Await ([Windows.Devices.Radios.Radio]::GetRadiosAsync()) ([System.Collections.Generic.IReadOnlyList[Windows.Devices.Radios.Radio]])
$wifiRadio = $radios | ? { $_.Kind -eq 'WiFi' }
[Windows.Devices.Radios.RadioState,Windows.System.Devices,ContentType=WindowsRuntime] | Out-Null
Await ($wifiRadio.SetStateAsync($Status)) ([Windows.Devices.Radios.RadioAccessStatus]) | Out-Null
```
以上代码保存为 ToggleWifiRadio.ps1
# Turn off
PS D:\path\to\your\folder> .\ToggleWifiRadio.ps1 -Status 'Off'

# Turn on
PS D:\path\to\your\folder> .\ToggleWifiRadio.ps1 -Status 'On'
2025 年 1 月 9 日
回复了 xiaoniu559 创建的主题 职场话题 如何看待公司推行日报
要黄,快跑
分母+1
2025 年 1 月 8 日
回复了 nathadai 创建的主题 分享发现 谨慎购买零刻产品,谨慎 AllInOne 玩机
哪家的小主机比较不错呢?
2025 年 1 月 7 日
回复了 giffgaffman 创建的主题 推广 T 楼:送 10 张全新未激活的英国 giffgaff 卡
支持一下
2024 年 12 月 30 日
回复了 leon2023 创建的主题 问与答 钉钉越来越变态了
@junkk play 版已经限制国内手机号登录了吧
2024 年 12 月 23 日
回复了 lurui45 创建的主题 Android 安卓机升级系统竟然会自动更新所有 App
系统用着咋样,手里的 Ace2 ,在考虑稍后要不要升级 15 。
2024 年 12 月 20 日
回复了 2067 创建的主题 程序员 论最有效的安装原版 chrome 的姿势
https://www.iplaysoft.com/tools/chrome/
一直从这里下载离线包,官方链接。
2024 年 12 月 19 日
回复了 stardustree 创建的主题 计算机 自己组装的 mini 台式机越来越卡,啥原因呢?
看看硬盘的响应时间,也可以测试一下读写速度
2024 年 12 月 3 日
回复了 Borch 创建的主题 问与答 钉钉卡顿严重,问下大家的使用情况
@dxxxxxxxx #17 能不能解决一下遮挡任务栏的问题。
任务栏的高度拉高一下
https://i.imgur.com/HWTYTqp.png
不知说的是不是这个效果,这个是装了 StartAllBack 之后的效果
https://i.imgur.com/AhYtvtA.png
不错的
1  2  3  4  5  6  7  8  9  10 ... 13  
About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   895 Online   Highest 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 44ms · UTC 20:09 · PVG 04:09 · LAX 13:09 · JFK 16:09
♥ Do have faith in what you're doing.