Advertisement
axutongxue

一键聚合提问ChatGPT(powershell版)

Jul 23rd, 2024 (edited)
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.83 KB | None | 0 0
  1. @echo off
  2. if "%~1"=="" (
  3. echo 未输入内容,将提问剪贴板
  4. ) else (
  5. echo %~1| clip
  6. )
  7.  
  8. cd /d %~dp0
  9. for /f "usebackq tokens=1 delims=:" %%a in (`findstr -n "^###" %0`) do (if not DEFINED skip set skip=%%a)
  10. powershell -c "Get-Content '%~0' | Select-Object -Skip %skip% | Out-String | Invoke-Expression"
  11. exit
  12.  
  13. ################################################################
  14. # 窗口、鼠标、键盘控制
  15. Add-Type @"
  16. using System;
  17. using System.Runtime.InteropServices;
  18.  
  19. public class User32 {
  20. [DllImport("user32.dll")]
  21. [return: MarshalAs(UnmanagedType.Bool)]
  22. public static extern bool SetForegroundWindow(IntPtr hWnd);
  23.  
  24. [DllImport("user32.dll")]
  25. public static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);
  26.  
  27. public const int SW_SHOWNORMAL = 1;
  28. public const int SW_SHOWMAXIMIZED = 3;
  29. public const int SW_SHOWMINIMIZED = 2;
  30.  
  31. [DllImport("user32.dll", CharSet = CharSet.Auto, ExactSpelling = true)]
  32. public static extern void mouse_event(int dwFlags, int dx, int dy, int cButtons, int dwExtraInfo);
  33. [DllImport("user32.dll")]
  34. [return: MarshalAs(UnmanagedType.Bool)]
  35. public static extern bool SetCursorPos(int X, int Y);
  36. [DllImport("user32.dll")]
  37. public static extern bool GetCursorPos(out POINT lpPoint);
  38. [DllImport("user32.dll")]
  39. public static extern void keybd_event(byte bVk, byte bScan, uint dwFlags, UIntPtr dwExtraInfo);
  40. [DllImport("user32.dll")]
  41. public static extern int GetSystemMetrics(int nIndex);
  42. public const int SM_CXSCREEN = 0;
  43. public const int SM_CYSCREEN = 1;
  44. public struct POINT {
  45. public int X;
  46. public int Y;
  47. }
  48. }
  49. "@
  50.  
  51. # 设置键盘钩子
  52. Add-Type -TypeDefinition @"
  53. using System;
  54. using System.Runtime.InteropServices;
  55. using System.Diagnostics;
  56.  
  57. public class KeyboardHook {
  58. private delegate IntPtr LowLevelKeyboardProc(int nCode, IntPtr wParam, IntPtr lParam);
  59. private static LowLevelKeyboardProc _proc = HookCallback;
  60. private static IntPtr _hookID = IntPtr.Zero;
  61.  
  62. [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
  63. private static extern IntPtr SetWindowsHookEx(int idHook, LowLevelKeyboardProc lpfn, IntPtr hMod, uint dwThreadId);
  64.  
  65. [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
  66. [return: MarshalAs(UnmanagedType.Bool)]
  67. private static extern bool UnhookWindowsHookEx(IntPtr hhk);
  68.  
  69. [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
  70. private static extern IntPtr CallNextHookEx(IntPtr hhk, int nCode, IntPtr wParam, IntPtr lParam);
  71.  
  72. [DllImport("kernel32.dll", CharSet = CharSet.Auto, SetLastError = true)]
  73. private static extern IntPtr GetModuleHandle(string lpModuleName);
  74.  
  75. private const int WH_KEYBOARD_LL = 13;
  76. private const int WM_KEYDOWN = 0x0100;
  77. private const int VK_F9 = 0x78;
  78.  
  79. public static void SetHook() {
  80. using (Process curProcess = Process.GetCurrentProcess())
  81. using (ProcessModule curModule = curProcess.MainModule) {
  82. _hookID = SetWindowsHookEx(WH_KEYBOARD_LL, _proc, GetModuleHandle(curModule.ModuleName), 0);
  83. }
  84. }
  85.  
  86. public static void UnsetHook() {
  87. UnhookWindowsHookEx(_hookID);
  88. }
  89.  
  90. private static IntPtr HookCallback(int nCode, IntPtr wParam, IntPtr lParam) {
  91. if (nCode >= 0 && wParam == (IntPtr)WM_KEYDOWN) {
  92. int vkCode = Marshal.ReadInt32(lParam);
  93. if (vkCode == VK_F9) {
  94. UnsetHook(); // 卸载钩子
  95. Environment.Exit(0); // 中止脚本的执行
  96. }
  97. }
  98. return CallNextHookEx(_hookID, nCode, wParam, lParam);
  99. }
  100. }
  101. "@
  102.  
  103. # 设置钩子
  104. [KeyboardHook]::SetHook()
  105.  
  106. # 定义按键事件常量
  107. $KEYEVENTF_KEYDOWN = 0x0000
  108. $KEYEVENTF_KEYUP = 0x0002
  109. $VK_CTRL = 0x11
  110. $VK_V = 0x56
  111. $VK_C = 0x43
  112. $VK_A = 0x41
  113. $VK_ENTER = 0x0D
  114. $VK_SLASH_MAIN = 0xBF
  115.  
  116. # 定义鼠标事件常量
  117. $MOUSEEVENTF_MOVE = 0x0001
  118. $MOUSEEVENTF_LEFTDOWN = 0x0002
  119. $MOUSEEVENTF_LEFTUP = 0x0004
  120.  
  121. # 自动获取系统缩放与布局比例
  122. Add-Type @"
  123. using System;
  124. using System.Runtime.InteropServices;
  125. public class DpiHelper {
  126. [DllImport("user32.dll")] public static extern IntPtr GetForegroundWindow();
  127. [DllImport("user32.dll")] public static extern int GetDpiForWindow(IntPtr hwnd);
  128. }
  129. "@
  130.  
  131. # 获取当前活动窗口句柄
  132. $hWnd = [DpiHelper]::GetForegroundWindow()
  133.  
  134. # 通过API获取窗口DPI
  135. $dpiValue = [DpiHelper]::GetDpiForWindow($hWnd)
  136.  
  137. # 计算系统缩放比例(基于96 DPI基准)
  138. $scaling = [math]::Round($dpiValue / 96, 2) # 保留两位小数
  139.  
  140. # 获取剪贴板内容
  141. $clipboard = Get-Clipboard
  142.  
  143. ################################################################
  144.  
  145. # 阿里通义千问
  146. Start-Process "https://tongyi.aliyun.com/qianwen/"
  147.  
  148. # 等待一段时间
  149. Start-Sleep -Milliseconds 1000
  150.  
  151. $targetString = "均由人工智能模型生成"
  152.  
  153. do {
  154. # 获取剪贴板内容
  155. $clipboardContent = Get-Clipboard
  156.  
  157. # 检查剪贴板内容是否包含目标字符串
  158. if ($clipboardContent -like "*$targetString*") {
  159. Set-Clipboard -Value $clipboard
  160. # 设置坐标并移动鼠标
  161. $X = [math]::Round(1000 / $scaling)
  162. $Y = [math]::Round(925 / $scaling)
  163. [User32]::SetCursorPos($X, $Y)
  164.  
  165. # 等待一段时间
  166. Start-Sleep -Milliseconds 200
  167.  
  168. # 模拟鼠标左键按下和抬起事件
  169. [User32]::mouse_event($MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0)
  170. [User32]::mouse_event($MOUSEEVENTF_LEFTUP, 0, 0, 0, 0)
  171.  
  172. # 等待一段时间
  173. Start-Sleep -Milliseconds 200
  174.  
  175. # 发送 Ctrl+V 组合键
  176. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  177. [User32]::keybd_event($VK_V, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  178. [User32]::keybd_event($VK_V, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  179. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  180.  
  181. # 等待一段时间
  182. Start-Sleep -Milliseconds 200
  183.  
  184. # 模拟按下回车键
  185. [User32]::keybd_event($VK_ENTER, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  186. [User32]::keybd_event($VK_ENTER, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  187. # 跳出循环
  188. break
  189. } else {
  190. # 设置空白处坐标,并移动鼠标点击,以获取网页焦点,用于后续全选获取网页内容判断网页是非已加载完成
  191. $X = [math]::Round(1888 / $scaling)
  192. $Y = [math]::Round(1008 / $scaling)
  193. [User32]::SetCursorPos($X, $Y)
  194. [User32]::mouse_event($MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0)
  195. [User32]::mouse_event($MOUSEEVENTF_LEFTUP, 0, 0, 0, 0)
  196.  
  197. # 发送 Ctrl+A 组合键
  198. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  199. [User32]::keybd_event($VK_A, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  200. [User32]::keybd_event($VK_A, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  201. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  202.  
  203. # 发送 Ctrl+C 组合键
  204. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  205. [User32]::keybd_event($VK_C, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  206. [User32]::keybd_event($VK_C, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  207. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  208.  
  209. # 等待一段时间
  210. Start-Sleep -Milliseconds 200
  211. }
  212. } while ($true)
  213.  
  214. ################################################################
  215.  
  216. # 智谱清言
  217. Start-Process "https://chatglm.cn/main/alltoolsdetail"
  218.  
  219. # 等待一段时间
  220. Start-Sleep -Milliseconds 1000
  221.  
  222. $targetString = "京公网安备"
  223.  
  224. do {
  225. # 获取剪贴板内容
  226. $clipboardContent = Get-Clipboard
  227.  
  228. # 检查剪贴板内容是否包含目标字符串
  229. if ($clipboardContent -like "*$targetString*") {
  230. Set-Clipboard -Value $clipboard
  231. # 设置坐标并移动鼠标
  232. $X = [math]::Round(1000 / $scaling)
  233. $Y = [math]::Round(930 / $scaling)
  234. [User32]::SetCursorPos($X, $Y)
  235.  
  236. # 等待一段时间
  237. Start-Sleep -Milliseconds 200
  238.  
  239. # 模拟鼠标左键按下和抬起事件
  240. [User32]::mouse_event($MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0)
  241. [User32]::mouse_event($MOUSEEVENTF_LEFTUP, 0, 0, 0, 0)
  242.  
  243. # 等待一段时间
  244. Start-Sleep -Milliseconds 200
  245.  
  246. # 发送 Ctrl+V 组合键
  247. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  248. [User32]::keybd_event($VK_V, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  249. [User32]::keybd_event($VK_V, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  250. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  251.  
  252. # 等待一段时间
  253. Start-Sleep -Milliseconds 200
  254.  
  255. # 模拟按下回车键
  256. [User32]::keybd_event($VK_ENTER, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  257. [User32]::keybd_event($VK_ENTER, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  258. # 跳出循环
  259. break
  260. } else {
  261.  
  262. # 设置空白处坐标,并移动鼠标点击,以获取网页焦点,用于后续全选获取网页内容判断网页是非已加载完成
  263. $X = [math]::Round(1888 / $scaling)
  264. $Y = [math]::Round(1008 / $scaling)
  265. [User32]::SetCursorPos($X, $Y)
  266. [User32]::mouse_event($MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0)
  267. [User32]::mouse_event($MOUSEEVENTF_LEFTUP, 0, 0, 0, 0)
  268.  
  269. # 发送 Ctrl+A 组合键
  270. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  271. [User32]::keybd_event($VK_A, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  272. [User32]::keybd_event($VK_A, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  273. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  274.  
  275. # 发送 Ctrl+C 组合键
  276. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  277. [User32]::keybd_event($VK_C, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  278. [User32]::keybd_event($VK_C, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  279. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  280.  
  281. # 等待一段时间
  282. Start-Sleep -Milliseconds 200
  283. }
  284. } while ($true)
  285.  
  286. ################################################################
  287.  
  288. # 抖音豆包
  289. Start-Process "https://www.doubao.com/chat/"
  290.  
  291. # 等待一段时间
  292. Start-Sleep -Milliseconds 1000
  293.  
  294. $targetString = "退出登录"
  295.  
  296. do {
  297. # 获取剪贴板内容
  298. $clipboardContent = Get-Clipboard
  299.  
  300. # 检查剪贴板内容是否包含目标字符串
  301. if ($clipboardContent -like "*$targetString*") {
  302. Set-Clipboard -Value $clipboard
  303. # 设置坐标并移动鼠标
  304. $X = [math]::Round(1000 / $scaling)
  305. $Y = [math]::Round(960 / $scaling)
  306. [User32]::SetCursorPos($X, $Y)
  307.  
  308. # 等待一段时间
  309. Start-Sleep -Milliseconds 200
  310.  
  311. # 模拟鼠标左键按下和抬起事件
  312. [User32]::mouse_event($MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0)
  313. [User32]::mouse_event($MOUSEEVENTF_LEFTUP, 0, 0, 0, 0)
  314.  
  315. # 等待一段时间
  316. Start-Sleep -Milliseconds 200
  317.  
  318. # 发送 Ctrl+V 组合键
  319. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  320. [User32]::keybd_event($VK_V, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  321. [User32]::keybd_event($VK_V, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  322. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  323.  
  324. # 等待一段时间
  325. Start-Sleep -Milliseconds 200
  326.  
  327. # 模拟按下回车键
  328. [User32]::keybd_event($VK_ENTER, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  329. [User32]::keybd_event($VK_ENTER, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  330. # 跳出循环
  331. break
  332. } else {
  333.  
  334. # 设置头像处并移动鼠标点击,以获取网页焦点,用于后续全选获取网页内容判断网页是非已加载完成
  335. $X = [math]::Round(1867 / $scaling)
  336. $Y = [math]::Round(172 / $scaling)
  337. [User32]::SetCursorPos($X, $Y)
  338. [User32]::mouse_event($MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0)
  339. [User32]::mouse_event($MOUSEEVENTF_LEFTUP, 0, 0, 0, 0)
  340.  
  341. # 发送 Ctrl+A 组合键
  342. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  343. [User32]::keybd_event($VK_A, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  344. [User32]::keybd_event($VK_A, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  345. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  346.  
  347. # 发送 Ctrl+C 组合键
  348. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  349. [User32]::keybd_event($VK_C, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  350. [User32]::keybd_event($VK_C, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  351. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  352.  
  353. # 等待一段时间
  354. Start-Sleep -Milliseconds 200
  355. }
  356. } while ($true)
  357.  
  358.  
  359. ################################################################
  360.  
  361. # 月之暗面-KIMICHAT
  362. Start-Process "https://kimi.moonshot.cn/"
  363.  
  364. # 等待一段时间
  365. Start-Sleep -Milliseconds 2000
  366.  
  367. $targetString = "开启新会话"
  368.  
  369. do {
  370. # 获取剪贴板内容
  371. $clipboardContent = Get-Clipboard
  372.  
  373. # 检查剪贴板内容是否包含目标字符串
  374. if ($clipboardContent -like "*$targetString*") {
  375. Set-Clipboard -Value $clipboard
  376. # 设置坐标并移动鼠标
  377. $X = [math]::Round(1000 / $scaling)
  378. $Y = [math]::Round(520 / $scaling)
  379. [User32]::SetCursorPos($X, $Y)
  380.  
  381. # 等待一段时间
  382. Start-Sleep -Milliseconds 200
  383.  
  384. # 模拟鼠标左键按下和抬起事件
  385. [User32]::mouse_event($MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0)
  386. [User32]::mouse_event($MOUSEEVENTF_LEFTUP, 0, 0, 0, 0)
  387.  
  388. # 等待一段时间
  389. Start-Sleep -Milliseconds 200
  390.  
  391. # 发送 Ctrl+V 组合键
  392. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  393. [User32]::keybd_event($VK_V, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  394. [User32]::keybd_event($VK_V, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  395. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  396.  
  397. # 等待一段时间
  398. Start-Sleep -Milliseconds 1000
  399.  
  400. # 模拟按下回车键
  401. [User32]::keybd_event($VK_ENTER, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  402. [User32]::keybd_event($VK_ENTER, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  403. # 跳出循环
  404. break
  405. } else {
  406.  
  407. # 设置空白处坐标,并移动鼠标点击,以获取网页焦点,用于后续全选获取网页内容判断网页是非已加载完成
  408. $X = [math]::Round(1888 / $scaling)
  409. $Y = [math]::Round(1008 / $scaling)
  410. [User32]::SetCursorPos($X, $Y)
  411. [User32]::mouse_event($MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0)
  412. [User32]::mouse_event($MOUSEEVENTF_LEFTUP, 0, 0, 0, 0)
  413.  
  414. # 发送 Ctrl+A 组合键
  415. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  416. [User32]::keybd_event($VK_A, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  417. [User32]::keybd_event($VK_A, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  418. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  419.  
  420. # 发送 Ctrl+C 组合键
  421. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  422. [User32]::keybd_event($VK_C, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  423. [User32]::keybd_event($VK_C, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  424. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  425.  
  426. # 等待一段时间
  427. Start-Sleep -Milliseconds 200
  428. }
  429. } while ($true)
  430.  
  431. ################################################################
  432.  
  433. # 讯飞星火
  434. Start-Process "https://xinghuo.xfyun.cn/desk"
  435.  
  436. # 等待一段时间
  437. Start-Sleep -Milliseconds 1000
  438.  
  439. $targetString = "内容由讯飞星火大模型生成"
  440.  
  441. do {
  442. # 获取剪贴板内容
  443. $clipboardContent = Get-Clipboard
  444.  
  445. # 检查剪贴板内容是否包含目标字符串
  446. if ($clipboardContent -like "*$targetString*") {
  447. Set-Clipboard -Value $clipboard
  448.  
  449. # 设置坐标并移动鼠标
  450. $X = [math]::Round(540 / $scaling)
  451. $Y = [math]::Round(400 / $scaling)
  452. [User32]::SetCursorPos($X, $Y)
  453.  
  454. # 等待一段时间
  455. Start-Sleep -Milliseconds 200
  456.  
  457. # 模拟鼠标左键按下和抬起事件
  458. [User32]::mouse_event($MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0)
  459. [User32]::mouse_event($MOUSEEVENTF_LEFTUP, 0, 0, 0, 0)
  460.  
  461. # 等待一段时间
  462. Start-Sleep -Milliseconds 200
  463.  
  464. # 发送 Ctrl+V 组合键
  465. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  466. [User32]::keybd_event($VK_V, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  467. [User32]::keybd_event($VK_V, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  468. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  469.  
  470. # 等待一段时间
  471. Start-Sleep -Milliseconds 500
  472.  
  473. # 设置坐标并移动鼠标
  474. $X = [math]::Round(1528 / $scaling)
  475. $Y = [math]::Round(468 / $scaling)
  476. [User32]::SetCursorPos($X, $Y)
  477.  
  478. # 等待一段时间
  479. Start-Sleep -Milliseconds 200
  480.  
  481. # 模拟鼠标左键按下和抬起事件
  482. [User32]::mouse_event($MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0)
  483. [User32]::mouse_event($MOUSEEVENTF_LEFTUP, 0, 0, 0, 0)
  484.  
  485. # 跳出循环
  486. break
  487. } else {
  488.  
  489. # 设置空白处坐标,并移动鼠标点击,以获取网页焦点,用于后续全选获取网页内容判断网页是非已加载完成
  490. $X = [math]::Round(1888 / $scaling)
  491. $Y = [math]::Round(1008 / $scaling)
  492. [User32]::SetCursorPos($X, $Y)
  493. [User32]::mouse_event($MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0)
  494. [User32]::mouse_event($MOUSEEVENTF_LEFTUP, 0, 0, 0, 0)
  495.  
  496. # 发送 Ctrl+A 组合键
  497. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  498. [User32]::keybd_event($VK_A, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  499. [User32]::keybd_event($VK_A, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  500. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  501.  
  502. # 发送 Ctrl+C 组合键
  503. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  504. [User32]::keybd_event($VK_C, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  505. [User32]::keybd_event($VK_C, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  506. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  507.  
  508. # 等待一段时间
  509. Start-Sleep -Milliseconds 200
  510. }
  511. } while ($true)
  512.  
  513. ################################################################
  514.  
  515. # 百小应
  516. Start-Process "https://ying.baichuan-ai.com/chat"
  517.  
  518. # 等待一段时间
  519. Start-Sleep -Milliseconds 1000
  520.  
  521. $targetString = "所有内容均由AI大模型输出"
  522.  
  523. do {
  524. # 获取剪贴板内容
  525. $clipboardContent = Get-Clipboard
  526.  
  527. # 检查剪贴板内容是否包含目标字符串
  528. if ($clipboardContent -like "*$targetString*") {
  529. Set-Clipboard -Value $clipboard
  530. # 设置坐标并移动鼠标
  531. $X = [math]::Round(1000 / $scaling)
  532. $Y = [math]::Round(870 / $scaling)
  533. [User32]::SetCursorPos($X, $Y)
  534.  
  535. # 等待一段时间
  536. Start-Sleep -Milliseconds 500
  537.  
  538. # 模拟鼠标左键按下和抬起事件
  539. [User32]::mouse_event($MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0)
  540. [User32]::mouse_event($MOUSEEVENTF_LEFTUP, 0, 0, 0, 0)
  541.  
  542. # 等待一段时间
  543. Start-Sleep -Milliseconds 500
  544.  
  545. # 发送 Ctrl+V 组合键
  546. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  547. [User32]::keybd_event($VK_V, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  548. [User32]::keybd_event($VK_V, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  549. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  550.  
  551. # 等待一段时间
  552. Start-Sleep -Milliseconds 500
  553.  
  554. # 模拟按下回车键
  555. [User32]::keybd_event($VK_ENTER, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  556. [User32]::keybd_event($VK_ENTER, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  557. # 跳出循环
  558. break
  559. } else {
  560.  
  561. # 设置空白处坐标,并移动鼠标点击,以获取网页焦点,用于后续全选获取网页内容判断网页是非已加载完成
  562. $X = [math]::Round(1888 / $scaling)
  563. $Y = [math]::Round(1008 / $scaling)
  564. [User32]::SetCursorPos($X, $Y)
  565. [User32]::mouse_event($MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0)
  566. [User32]::mouse_event($MOUSEEVENTF_LEFTUP, 0, 0, 0, 0)
  567.  
  568. # 发送 Ctrl+A 组合键
  569. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  570. [User32]::keybd_event($VK_A, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  571. [User32]::keybd_event($VK_A, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  572. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  573.  
  574. # 发送 Ctrl+C 组合键
  575. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  576. [User32]::keybd_event($VK_C, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  577. [User32]::keybd_event($VK_C, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  578. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  579.  
  580. # 等待一段时间
  581. Start-Sleep -Milliseconds 200
  582. }
  583. } while ($true)
  584.  
  585.  
  586. ################################################################
  587.  
  588. # 百度文心一言
  589. $clipboardContent = Get-Clipboard
  590.  
  591. Start-Process "https://yiyan.baidu.com/?q=$clipboardContent"
  592.  
  593. Start-Sleep -Milliseconds 200
  594.  
  595. ################################################################
  596.  
  597. # 腾讯元宝
  598. Start-Process "https://yuanbao.tencent.com/chat/naQivTmsDa"
  599.  
  600. # 等待一段时间
  601. Start-Sleep -Milliseconds 1000
  602.  
  603. $targetString = "腾讯元宝隐私政策"
  604.  
  605. do {
  606. # 获取剪贴板内容
  607. $clipboardContent = Get-Clipboard
  608.  
  609. # 检查剪贴板内容是否包含目标字符串
  610. if ($clipboardContent -like "*$targetString*") {
  611. Set-Clipboard -Value $clipboard
  612. # 设置坐标并移动鼠标
  613. $X = [math]::Round(1000 / $scaling)
  614. $Y = [math]::Round(960 / $scaling)
  615. [User32]::SetCursorPos($X, $Y)
  616.  
  617. # 等待一段时间
  618. Start-Sleep -Milliseconds 200
  619.  
  620. # 模拟鼠标左键按下和抬起事件
  621. [User32]::mouse_event($MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0)
  622. [User32]::mouse_event($MOUSEEVENTF_LEFTUP, 0, 0, 0, 0)
  623.  
  624. # 等待一段时间
  625. Start-Sleep -Milliseconds 200
  626.  
  627. # 发送 Ctrl+V 组合键
  628. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  629. [User32]::keybd_event($VK_V, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  630. [User32]::keybd_event($VK_V, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  631. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  632.  
  633. # 等待一段时间
  634. Start-Sleep -Milliseconds 200
  635.  
  636. # 模拟按下回车键
  637. [User32]::keybd_event($VK_ENTER, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  638. [User32]::keybd_event($VK_ENTER, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  639. # 跳出循环
  640. break
  641. } else {
  642. # 发送 Ctrl+A 组合键
  643. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  644. [User32]::keybd_event($VK_A, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  645. [User32]::keybd_event($VK_A, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  646. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  647.  
  648. # 发送 Ctrl+C 组合键
  649. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  650. [User32]::keybd_event($VK_C, 0, $KEYEVENTF_KEYDOWN, [UIntPtr]::Zero)
  651. [User32]::keybd_event($VK_C, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  652. [User32]::keybd_event($VK_CTRL, 0, $KEYEVENTF_KEYUP, [UIntPtr]::Zero)
  653.  
  654. # 等待一段时间
  655. Start-Sleep -Milliseconds 200
  656. }
  657. } while ($true)
  658.  
  659. ################################################################
  660. # 清理资源
  661. [KeyboardHook]::UnsetHook()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement