mirror of
https://github.com/pompurin404/mihomo-party.git
synced 2024-11-15 19:22:31 +08:00
Avoid UAC pop-up
This commit is contained in:
parent
34431dc7b7
commit
fa9328b578
|
@ -1,6 +1,7 @@
|
|||
### New Features
|
||||
|
||||
- 支持删除 Webdav 备份文件
|
||||
- Windows 绕过UAC弹窗
|
||||
- Esc关闭窗口
|
||||
|
||||
### Bug Fixes
|
||||
|
|
|
@ -30,7 +30,6 @@ win:
|
|||
- nsis
|
||||
- 7z
|
||||
artifactName: ${name}-windows-${version}-${arch}-portable.${ext}
|
||||
requestedExecutionLevel: highestAvailable
|
||||
executableName: mihomo-party
|
||||
nsis:
|
||||
artifactName: ${name}-windows-${version}-${arch}-setup.${ext}
|
||||
|
|
|
@ -11,14 +11,31 @@ import { createTray } from './resolve/tray'
|
|||
import { init } from './utils/init'
|
||||
import { join } from 'path'
|
||||
import { initShortcut } from './resolve/shortcut'
|
||||
import { execSync } from 'child_process'
|
||||
import { createElevateTask } from './sys/misc'
|
||||
|
||||
export let mainWindow: BrowserWindow | null = null
|
||||
|
||||
if (process.platform === 'win32') {
|
||||
try {
|
||||
createElevateTask()
|
||||
} catch (e) {
|
||||
try {
|
||||
execSync('schtasks /run /tn mihomo-party-run')
|
||||
} catch (e) {
|
||||
dialog.showErrorBox('首次启动请以管理员权限运行', '首次启动请以管理员权限运行')
|
||||
} finally {
|
||||
app.exit()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
const gotTheLock = app.requestSingleInstanceLock()
|
||||
|
||||
if (!gotTheLock) {
|
||||
app.quit()
|
||||
}
|
||||
|
||||
const initPromise = init()
|
||||
|
||||
app.on('second-instance', async (_event, commandline) => {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import { exec } from 'child_process'
|
||||
import { dataDir, exePath, homeDir } from '../utils/dirs'
|
||||
import { mkdir, readFile, rm, writeFile } from 'fs/promises'
|
||||
import { exec } from 'child_process'
|
||||
import { existsSync } from 'fs'
|
||||
import { app } from 'electron'
|
||||
import { promisify } from 'util'
|
||||
|
@ -126,63 +126,3 @@ export async function disableAutoRun(): Promise<void> {
|
|||
await rm(desktopFilePath)
|
||||
}
|
||||
}
|
||||
|
||||
const shortcutTaskXml = `<?xml version="1.0" encoding="UTF-16"?>
|
||||
<Task version="1.2" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
|
||||
<RegistrationInfo>
|
||||
<Date>${new Date().toISOString()}</Date>
|
||||
<Author>${process.env.USERNAME}</Author>
|
||||
</RegistrationInfo>
|
||||
<Triggers />
|
||||
<Principals>
|
||||
<Principal id="Author">
|
||||
<LogonType>InteractiveToken</LogonType>
|
||||
<RunLevel>HighestAvailable</RunLevel>
|
||||
</Principal>
|
||||
</Principals>
|
||||
<Settings>
|
||||
<MultipleInstancesPolicy>Parallel</MultipleInstancesPolicy>
|
||||
<DisallowStartIfOnBatteries>false</DisallowStartIfOnBatteries>
|
||||
<StopIfGoingOnBatteries>false</StopIfGoingOnBatteries>
|
||||
<AllowHardTerminate>false</AllowHardTerminate>
|
||||
<StartWhenAvailable>false</StartWhenAvailable>
|
||||
<RunOnlyIfNetworkAvailable>false</RunOnlyIfNetworkAvailable>
|
||||
<IdleSettings>
|
||||
<StopOnIdleEnd>false</StopOnIdleEnd>
|
||||
<RestartOnIdle>false</RestartOnIdle>
|
||||
</IdleSettings>
|
||||
<AllowStartOnDemand>true</AllowStartOnDemand>
|
||||
<Enabled>true</Enabled>
|
||||
<Hidden>false</Hidden>
|
||||
<RunOnlyIfIdle>false</RunOnlyIfIdle>
|
||||
<WakeToRun>false</WakeToRun>
|
||||
<ExecutionTimeLimit>PT72H</ExecutionTimeLimit>
|
||||
<Priority>7</Priority>
|
||||
</Settings>
|
||||
<Actions Context="Author">
|
||||
<Exec>
|
||||
<Command>${exePath()}</Command>
|
||||
</Exec>
|
||||
</Actions>
|
||||
</Task>
|
||||
`
|
||||
|
||||
export async function createShortcut(): Promise<void> {
|
||||
if (process.platform === 'win32') {
|
||||
const execPromise = promisify(exec)
|
||||
const taskFilePath = path.join(dataDir(), `${appName}-run.xml`)
|
||||
await writeFile(taskFilePath, Buffer.from(`\ufeff${shortcutTaskXml}`, 'utf-16le'))
|
||||
await execPromise(`schtasks /create /tn "${appName}-run" /xml "${taskFilePath}" /f`)
|
||||
const createShortcutCommand = `
|
||||
$shortcutPath = [System.IO.Path]::Combine([System.Environment]::GetFolderPath("Desktop"), "Mihomo Party.lnk")
|
||||
$wshell = New-Object -ComObject WScript.Shell
|
||||
$shortcut = $wshell.CreateShortcut($shortcutPath)
|
||||
$shortcut.TargetPath = "C:\\Windows\\System32\\schtasks.exe"
|
||||
$shortcut.Arguments = "/run /tn ${appName}-run"
|
||||
$shortcut.Description = "Start Mihomo Party without UAC Prompt"
|
||||
$shortcut.IconLocation = "${exePath()}"
|
||||
$shortcut.WindowStyle = 7
|
||||
$shortcut.Save()`
|
||||
await execPromise(createShortcutCommand, { shell: 'powershell' })
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,9 +1,11 @@
|
|||
import { exec, execFile } from 'child_process'
|
||||
import { exec, execFile, execSync } from 'child_process'
|
||||
import { dialog, nativeTheme } from 'electron'
|
||||
import { readFile } from 'fs/promises'
|
||||
import path from 'path'
|
||||
import os from 'os'
|
||||
import { promisify } from 'util'
|
||||
import { exePath, mihomoCorePath, resourcesDir } from '../utils/dirs'
|
||||
import { writeFileSync } from 'fs'
|
||||
|
||||
export function getFilePath(ext: string[]): string[] | undefined {
|
||||
return dialog.showOpenDialogSync({
|
||||
|
@ -45,3 +47,49 @@ export async function setupFirewall(): Promise<void> {
|
|||
export function setNativeTheme(theme: 'system' | 'light' | 'dark'): void {
|
||||
nativeTheme.themeSource = theme
|
||||
}
|
||||
|
||||
const elevateTaskXml = `<?xml version="1.0" encoding="UTF-16"?>
|
||||
<Task version="1.2" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
|
||||
<RegistrationInfo>
|
||||
<Date>${new Date().toISOString()}</Date>
|
||||
<Author>${process.env.USERNAME}</Author>
|
||||
</RegistrationInfo>
|
||||
<Triggers />
|
||||
<Principals>
|
||||
<Principal id="Author">
|
||||
<LogonType>InteractiveToken</LogonType>
|
||||
<RunLevel>HighestAvailable</RunLevel>
|
||||
</Principal>
|
||||
</Principals>
|
||||
<Settings>
|
||||
<MultipleInstancesPolicy>Parallel</MultipleInstancesPolicy>
|
||||
<DisallowStartIfOnBatteries>false</DisallowStartIfOnBatteries>
|
||||
<StopIfGoingOnBatteries>false</StopIfGoingOnBatteries>
|
||||
<AllowHardTerminate>false</AllowHardTerminate>
|
||||
<StartWhenAvailable>false</StartWhenAvailable>
|
||||
<RunOnlyIfNetworkAvailable>false</RunOnlyIfNetworkAvailable>
|
||||
<IdleSettings>
|
||||
<StopOnIdleEnd>false</StopOnIdleEnd>
|
||||
<RestartOnIdle>false</RestartOnIdle>
|
||||
</IdleSettings>
|
||||
<AllowStartOnDemand>true</AllowStartOnDemand>
|
||||
<Enabled>true</Enabled>
|
||||
<Hidden>false</Hidden>
|
||||
<RunOnlyIfIdle>false</RunOnlyIfIdle>
|
||||
<WakeToRun>false</WakeToRun>
|
||||
<ExecutionTimeLimit>PT72H</ExecutionTimeLimit>
|
||||
<Priority>7</Priority>
|
||||
</Settings>
|
||||
<Actions Context="Author">
|
||||
<Exec>
|
||||
<Command>${exePath()}</Command>
|
||||
</Exec>
|
||||
</Actions>
|
||||
</Task>
|
||||
`
|
||||
|
||||
export function createElevateTask(): void {
|
||||
const taskFilePath = path.join(os.tmpdir(), `mihomo-party-run.xml`)
|
||||
writeFileSync(taskFilePath, Buffer.from(`\ufeff${elevateTaskXml}`, 'utf-16le'))
|
||||
execSync(`schtasks /create /tn "mihomo-party-run" /xml "${taskFilePath}" /f`)
|
||||
}
|
||||
|
|
|
@ -21,7 +21,7 @@ import {
|
|||
stopMihomoConnections,
|
||||
stopMihomoLogs
|
||||
} from '../core/mihomoApi'
|
||||
import { checkAutoRun, createShortcut, disableAutoRun, enableAutoRun } from '../sys/autoRun'
|
||||
import { checkAutoRun, disableAutoRun, enableAutoRun } from '../sys/autoRun'
|
||||
import {
|
||||
getAppConfig,
|
||||
patchAppConfig,
|
||||
|
@ -166,7 +166,6 @@ export function registerIpcMainHandlers(): void {
|
|||
ipcMain.handle('registerShortcut', (_e, oldShortcut, newShortcut, action) =>
|
||||
ipcErrorWrapper(registerShortcut)(oldShortcut, newShortcut, action)
|
||||
)
|
||||
ipcMain.handle('createShortcut', ipcErrorWrapper(createShortcut))
|
||||
ipcMain.handle('setNativeTheme', (_e, theme) => {
|
||||
setNativeTheme(theme)
|
||||
})
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import React, { Key, useState } from 'react'
|
||||
import React, { Key } from 'react'
|
||||
import SettingCard from '../base/base-setting-card'
|
||||
import SettingItem from '../base/base-setting-item'
|
||||
import { Button, Select, SelectItem, Switch, Tab, Tabs } from '@nextui-org/react'
|
||||
|
@ -7,7 +7,6 @@ import useSWR from 'swr'
|
|||
import {
|
||||
checkAutoRun,
|
||||
copyEnv,
|
||||
createShortcut,
|
||||
disableAutoRun,
|
||||
enableAutoRun,
|
||||
isPortable,
|
||||
|
@ -23,7 +22,6 @@ const GeneralConfig: React.FC = () => {
|
|||
const { data: enable, mutate: mutateEnable } = useSWR('checkAutoRun', checkAutoRun)
|
||||
const { data: portable, mutate: mutatePortable } = useSWR('isPortable', isPortable)
|
||||
const { appConfig, patchAppConfig } = useAppConfig()
|
||||
const [creating, setCreating] = useState(false)
|
||||
const { setTheme } = useTheme()
|
||||
const {
|
||||
silentStart = false,
|
||||
|
@ -166,46 +164,25 @@ const GeneralConfig: React.FC = () => {
|
|||
</>
|
||||
)}
|
||||
{platform === 'win32' && (
|
||||
<>
|
||||
<SettingItem title="创建无UAC弹窗快捷方式" divider>
|
||||
<Button
|
||||
size="sm"
|
||||
color="primary"
|
||||
isLoading={creating}
|
||||
onClick={async () => {
|
||||
try {
|
||||
setCreating(true)
|
||||
await createShortcut()
|
||||
} catch (e) {
|
||||
alert(e)
|
||||
} finally {
|
||||
setCreating(false)
|
||||
}
|
||||
}}
|
||||
>
|
||||
创建快捷方式
|
||||
</Button>
|
||||
</SettingItem>
|
||||
<SettingItem title="数据存储路径" divider>
|
||||
<Select
|
||||
className="w-[150px]"
|
||||
size="sm"
|
||||
selectedKeys={new Set([portable ? 'portable' : 'data'])}
|
||||
onSelectionChange={async (v) => {
|
||||
try {
|
||||
await setPortable(v.currentKey === 'portable')
|
||||
} catch (e) {
|
||||
alert(e)
|
||||
} finally {
|
||||
mutatePortable()
|
||||
}
|
||||
}}
|
||||
>
|
||||
<SelectItem key="data">AppData</SelectItem>
|
||||
<SelectItem key="portable">安装目录</SelectItem>
|
||||
</Select>
|
||||
</SettingItem>
|
||||
</>
|
||||
<SettingItem title="数据存储路径" divider>
|
||||
<Select
|
||||
className="w-[150px]"
|
||||
size="sm"
|
||||
selectedKeys={new Set([portable ? 'portable' : 'data'])}
|
||||
onSelectionChange={async (v) => {
|
||||
try {
|
||||
await setPortable(v.currentKey === 'portable')
|
||||
} catch (e) {
|
||||
alert(e)
|
||||
} finally {
|
||||
mutatePortable()
|
||||
}
|
||||
}}
|
||||
>
|
||||
<SelectItem key="data">AppData</SelectItem>
|
||||
<SelectItem key="portable">安装目录</SelectItem>
|
||||
</Select>
|
||||
</SettingItem>
|
||||
)}
|
||||
<SettingItem title="背景色" divider={appTheme !== 'system'}>
|
||||
<Tabs
|
||||
|
|
|
@ -291,10 +291,6 @@ export async function quitApp(): Promise<void> {
|
|||
return ipcErrorWrapper(await window.electron.ipcRenderer.invoke('quitApp'))
|
||||
}
|
||||
|
||||
export async function createShortcut(): Promise<void> {
|
||||
return ipcErrorWrapper(await window.electron.ipcRenderer.invoke('createShortcut'))
|
||||
}
|
||||
|
||||
export async function setNativeTheme(theme: 'system' | 'light' | 'dark'): Promise<void> {
|
||||
return ipcErrorWrapper(await window.electron.ipcRenderer.invoke('setNativeTheme', theme))
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user