注销系统用户的js脚本 (#390)

一个注销系统用户的js脚本,用于用于远程本地多用户桌面
This commit is contained in:
听雨♪
2025-03-04 11:19:20 +08:00
committed by GitHub
parent 677f14f430
commit 6803191488
2 changed files with 29 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
(async function () {
keyDown("LWIN");
keyDown("X");
await sleep(50);
keyUp("LWIN");
keyUp("X");
await sleep(3000);
keyPress("LSHIFT");
await sleep(50);
keyPress("LCONTROL");
await sleep(50);
keyPress("U");
await sleep(1000);
keyPress("I");
await sleep(50);
keyPress("RETURN");
})();

View File

@@ -0,0 +1,12 @@
{
"manifest_version": 1,
"name": "注销计算机用户",
"version": "1.0",
"description": "注销计算机用户,用于远程本地多用户桌面",
"authors": [
{
"name": "听雨♪"
}
],
"main": "main.js"
}