简介
之前写了个快捷远程桌面的 在输入框输入对应的裙编 就会自动打开对应的远程桌面 但由于是用易语言写的 传输的过程中容易被安全软件杀掉 且不是很好看,与是就把他搬到了浏览器上 同事直接打开网页就行了
难题
但在开发的过程中发现 由于浏览器无法直接执行CMD命令,导致卡了一段时间,网上查阅了很多资料也没有太好的解决方案,不过看到说可以通过注册表的方式来执行 说干就干
注意 先在C盘下创建htmlurl 目录 ,目录下 创建a.rdp和xixi.reg文件 并双击xixi.reg文件
代码如下:
xixi.reg文件
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\leimou1]
@="URL:leimou1 Protocol"
"URL Protocol"=""
[HKEY_CLASSES_ROOT\leimou1\DefaultIcon]
@="cmd.exe,1"
[HKEY_CLASSES_ROOT\leimou1\shell]
[HKEY_CLASSES_ROOT\leimou1\shell\open]
[HKEY_CLASSES_ROOT\leimou1\shell\open\command]
@="mstsc C:/htmlurl/a.rdp /v:43.138.230.188 /admin /f"
a.rdp文件
screen mode id:i:2
use multimon:i:0
desktopwidth:i:1920
desktopheight:i:1080
session bpp:i:32
winposstr:s:0,1,138,0,1573,1040
compression:i:1
keyboardhook:i:2
audiocapturemode:i:0
videoplaybackmode:i:1
connection type:i:7
networkautodetect:i:1
bandwidthautodetect:i:1
displayconnectionbar:i:1
enableworkspacereconnect:i:0
disable wallpaper:i:0
allow font smoothing:i:0
allow desktop composition:i:0
disable full window drag:i:1
disable menu anims:i:1
disable themes:i:0
disable cursor setting:i:0
bitmapcachepersistenable:i:1
full address:s:192.168.88.14
audiomode:i:0
redirectprinters:i:1
redirectcomports:i:0
redirectsmartcards:i:1
redirectwebauthn:i:1
redirectclipboard:i:1
redirectposdevices:i:0
autoreconnection enabled:i:1
authentication level:i:2
prompt for credentials:i:0
negotiate security layer:i:1
remoteapplicationmode:i:0
alternate shell:s:
shell working directory:s:
gatewayhostname:s:
gatewayusagemethod:i:4
gatewaycredentialssource:i:4
gatewayprofileusagemethod:i:0
promptcredentialonce:i:0
gatewaybrokeringtype:i:0
use redirection server name:i:0
rdgiskdcproxy:i:0
kdcproxyname:s:
enablerdsaadauth:i:0
drivestoredirect:s:
vue
handleClick(row) {
let reg = ""
for (let i = 0; i < this.regS.length; i++) {
if (row.tst2 == this.regS[i].id) {
reg = this.regS[i].code
break;
}
}
if ("" == reg) {
this.$notify.error({
title: '失败',
message: '链接建立失败,请联系管理员或稍后再试!'
});
return;
} else {
this.$notify({
title: '成功',
message: '连接建立成功!',
type: 'success'
});
// 通过以下代码调用注册表中的文件 'leimou1://'
window.location.href = reg + '://';
}
}
通过以上操作 即可实现在浏览器中调用cmd命令的效果,如果有多个远程 则在注册表文件中在额外创建