我在批处理文件中有以下代码,想要移动使用屏幕左侧下面代码打开的应用程序或浏览器,这样打开的窗口即应用程序和浏览器应并排放置并且没有重叠。
<!-- // batch / HTA hybrid script
@echo off
start saplogon.exe
rem // invoke HTA chimera for VBScript
mshta "%~f0"
rem // end main runtime
goto :EOF
// HTA chimera -->
<script language="VBscript">
Set IE = CreateObject("InternetExplorer.Application")
IE.navigate2 "https://www.google.com"
IE.width = 700
IE.height = 600
IE.visible = true
close()
</script>